Specific Observations in Generated Data #1529
-
I need to make sure that every patient generated has specific observations (Creatinine, FBS, GTT, HbA1c, eGFR, UACR, Blood Pressure, Total Cholesterol, LDL, HDL, Triglycerides, and Vitamin B12). I'm modifying the 'Metabolic Syndrome Standards of Care' module to include states that generate these observations. Despite this, the observations are not appearing in the output as expected. When I run the command: the 'Observations' column is not seen. However, when I run: some observations are listed, but not all the required ones. How to ensure all specified results are consistently generated for each patient? Any suggestions on correctly modifying the module or additional steps to take would be greatly appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
https://github.com/synthetichealth/synthea/wiki/The--M-Feature With the second command, if you downloaded that jar file, it includes the original version of the module: hence not the observations you added. If you built the jar from source, you should be fine as long as you overwrote the original module file. So, you either need to rebuild the jar to include your changes, or use the |
Beta Was this translation helpful? Give feedback.
https://github.com/synthetichealth/synthea/wiki/The--M-Feature
With the second command, if you downloaded that jar file, it includes the original version of the module: hence not the observations you added. If you built the jar from source, you should be fine as long as you overwrote the original module file.
So, you either need to rebuild the jar to include your changes, or use the
-d localModulesDirPath
option to add a local set of modules to the defaults, but that may not replace the original metabolic syndrome care (if so, both would be running in parallel).