anvilproject / cmg-data-ingest

Ingest scripts for the CMG dataset to FHIR
0 stars 0 forks source link

Add system to the coding portion of the HPO code #5

Closed torstees closed 4 years ago

torstees commented 4 years ago

      "code": {
        "coding": [ {
          "code": "HP:0012638",
          "display": "Abnormal nervous system physiology"
        } ],
        "text": "Present: Abnormal nervous system physiology"
      },

Somehow, the system got left off and wouldn't be possible to validate once we have a real terminology server in place.

torstees commented 4 years ago

Completed

      "code": {
        "coding": [ {
          "system": "http://purl.obolibrary.org/obo/hp.owl",
          "code": "HP:0012638",
          "display": "Abnormal nervous system physiology"
        } ],
        "text": "Present: Abnormal nervous system physiology"
      },