Skip to content

Commit

Permalink
Merge pull request #85 from answerdigital/feature/OXOMOP-153-gender-c…
Browse files Browse the repository at this point in the history
…oncept

Use concept 0 for genders other than male/female as it is the only ot…
  • Loading branch information
james-cockayne-ad authored Jan 9, 2025
2 parents 328ff44 + 82c6db8 commit 3f42354
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion DataQualityDashboard/known_errors.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
table_measurepersoncompleteness_observation
field_isstandardvalidconcept_death_cause_concept_id
field_isstandardvalidconcept_person_gender_concept_id
field_plausiblevaluelow_cdm_source_source_release_date
field_withinvisitdates_visit_detail_visit_detail_start_date
4 changes: 2 additions & 2 deletions OmopTransformer/Transformation/NhsGenderLookup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ internal class NhsGenderLookup : ILookup
"2", new ValueWithNote("8532", "Female")
},
{
"9", new ValueWithNote("8551", "Indeterminate (unable to be classified as either male or female)")
"9", new ValueWithNote("0", "Indeterminate (unable to be classified as either male or female)")
},
{
"X", new ValueWithNote("8551", "Not known")
"X", new ValueWithNote("0", "Not known")
},
};

Expand Down

0 comments on commit 3f42354

Please sign in to comment.