Skip to content
Open
Show file tree
Hide file tree
Changes from 4 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
3 changes: 2 additions & 1 deletion src/vivarium_gates_mncnh/components/observers.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ def register_stratifications(self, builder: Builder) -> None:
PREGNANCY_OUTCOMES.STILLBIRTH_OUTCOME,
PREGNANCY_OUTCOMES.LIVE_BIRTH_OUTCOME,
PREGNANCY_OUTCOMES.PARTIAL_TERM_OUTCOME,
PREGNANCY_OUTCOMES.FULL_TERM_OUTCOME,
]
),
requires_columns=[COLUMNS.PREGNANCY_OUTCOME],
Expand Down Expand Up @@ -534,7 +535,7 @@ def configuration_defaults(self) -> dict[str, Any]:
"stratification": {
self.get_configuration_name(): {
"exclude": [],
"include": ["age_group"],
"include": ["age_group", "pregnancy_outcome"],
},
},
}
Expand Down
2 changes: 1 addition & 1 deletion src/vivarium_gates_mncnh/constants/paths.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@

# Update for new model results directory after model changes and runs
# This should match the directory after /mnt/team/simulation_sicence/pub/models/vivarium_gates_mncnh/results/
MODEL_RESULTS_DIR = "model26.0"
MODEL_RESULTS_DIR = "model29.1"
MODEL_NOTEBOOKS_DIR = BASE_DIR.parent.parent / "tests" / "model_notebooks"
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ components:
- InterventionRiskEffect('azithromycin')
- InterventionRiskEffect('misoprostol')
- OralIronInterventionExposure() # IFA and MMS
- OralIronEffectOnHemoglobin()
# - OralIronEffectOnHemoglobin()
- OralIronEffectOnStillbirth()
- AdditiveRiskEffect('risk_factor.iron_folic_acid_supplementation', 'risk_factor.birth_weight.birth_exposure')
- AdditiveRiskEffect('risk_factor.multiple_micronutrient_supplementation', 'risk_factor.birth_weight.birth_exposure')
Expand Down
Loading