You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 8 Next »

TODO Marc-Danie Nazaire please fill in this section


Custom breakdowns can be added to the breakdownResultOutputTypes property in shrine.conf. A new custom breakdown can be added by creating a new property inside breakdownResultOutputTypes and providing a description and category for the new breakdown. Each property name must match a breakdown name available in i2b2's QT_BREAKDOWN_PATH table. Below is an example of three custom breakdown configurations, PATIENT_TOP20MEDS_XML, PATIENT_LOS_XML, and PATIENT_INOUT_XML.


Example Custom Breakdowns
breakdownResultOutputTypes {
    PATIENT_TOP20MEDS_XML {
      description = "Top 20 Medications"
      category = "Medications"
    }
 
    PATIENT_LOS_XML {
      description = "Length of stay breakdown"
      category = "Visits"
    }
 
    PATIENT_INOUT_XML {
      description = "Inpatient and outpatient breakdown"
      category = "Visits"
    }
}//breakdownResultOutputTypes
  • No labels