Is there a way to suppress DALY and QALY observations?
nikhilrowland opened this issue · 2 comments
nikhilrowland commented
After combing through the observations csv for my model I found that the vast majority of observations are DALY and QALY observations. I assume Synthea generates these automatically because they do not have an enounter ID associated with them. I was wondering if there was anyway to not generate these observations to reduce the file size.
jawalonoski commented
There is no command line option to do that.
Your choices are (1) filter out the data after export, or (2) change some code.
String[] gbdMetrics = { QualityOfLifeModule.QALY, QualityOfLifeModule.DALY,
QualityOfLifeModule.QOLS };
Change the two lines above to be:
String[] gbdMetrics = {};
Then recompile and rerun and there will be no quality or disability adjusted life year data.
nikhilrowland commented
Thanks!