Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

LIB-213 Updated for NCD and Mental health diagnoses #432

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ private List<Concept> getNcdDiagnoses() {
addProgramConceptToList(concepts, "ASTHMA", "PIH");
addProgramConceptToList(concepts, "CHRONIC OBSTRUCTIVE PULMONARY DISEASE", "PIH");
addProgramConceptToList(concepts, "Sickle-Cell Anemia", "PIH");
addProgramConceptToList(concepts, "SPLENOMEGALY", "PIH");

return concepts;
}
Expand All @@ -57,6 +58,8 @@ private List<Concept> getMentalHealthDiagnoses() {
List<Concept> concepts = new ArrayList<Concept>();
addProgramConceptToList(concepts, "PSYCHOSIS", "PIH");
addProgramConceptToList(concepts, "Bipolar disorder", "PIH");
addProgramConceptToList(concepts, "115924", "CIEL"); // Bipolar mania
addProgramConceptToList(concepts, "119541", "CIEL"); // Bipolar depression
addProgramConceptToList(concepts, "SCHIZOPHRENIA", "PIH");
addProgramConceptToList(concepts, "Psychosomatic problems", "PIH");
addProgramConceptToList(concepts, "Hyperkinetic Behavior", "PIH");
Expand All @@ -66,10 +69,19 @@ private List<Concept> getMentalHealthDiagnoses() {
addProgramConceptToList(concepts, "EPILEPSY", "PIH");
addProgramConceptToList(concepts, "ANXIETY DISORDER", "PIH");
addProgramConceptToList(concepts, "Post traumatic stress disorder", "PIH");
addProgramConceptToList(concepts, "130967", "CIEL");
addProgramConceptToList(concepts, "DEPRESSION", "PIH");
addProgramConceptToList(concepts, "Manic episode", "PIH");
addProgramConceptToList(concepts, "Mood disorder", "PIH");
addProgramConceptToList(concepts, "121725", "CIEL"); // Alcohol abuse
addProgramConceptToList(concepts, "112603", "CIEL"); // Drug abuse
addProgramConceptToList(concepts, "137668", "CIEL"); // behaviornal disorder
addProgramConceptToList(concepts, "14629", "PIH"); // emotional disorder
addProgramConceptToList(concepts, "121303", "CIEL"); // autism
addProgramConceptToList(concepts, "156923", "CIEL"); // intellectual
addProgramConceptToList(concepts, "160197", "CIEL"); // psychosomatic
addProgramConceptToList(concepts, "139545", "CIEL"); // GAD
addProgramConceptToList(concepts, "130966", "CIEL"); // Panic disorder
addProgramConceptToList(concepts, "113517", "CIEL"); // Psychosis

return concepts;
}
Expand Down