emodpy_malaria.reporters.builtin module#
- class emodpy_malaria.reporters.builtin.VectorState(value)[source]#
Bases:
Enum
An enumeration.
- STATE_INFECTIOUS = 'STATE_INFECTIOUS'#
- STATE_INFECTED = 'STATE_INFECTED'#
- STATE_ADULT = 'STATE_ADULT'#
- STATE_MALE = 'STATE_MALE'#
- STATE_IMMATURE = 'STATE_IMMATURE'#
- STATE_LARVA = 'STATE_LARVA'#
- STATE_EGG = 'STATE_EGG'#
- class emodpy_malaria.reporters.builtin.DrugResistantAndHRPStatisticType(value)[source]#
Bases:
Enum
An enumeration.
- NUM_PEOPLE_WITH_RESISTANT_INFECTION = 'NUM_PEOPLE_WITH_RESISTANT_INFECTION'#
- NUM_INFECTIONS = 'NUM_INFECTIONS'#
- emodpy_malaria.reporters.builtin.check_vectors(task)[source]#
Checks that there are species defined for the simulation
- Parameters:
task – task to which to add the reporter, which also contains the config file
- Returns:
Nothing
- Raises:
ValueError – No Vector_Species_Params defined. You need to define at least one to use ReportVectorGenetics.
- emodpy_malaria.reporters.builtin.all_vectors_if_none(task)[source]#
Creates a list of all species names available in the tasks’s config and returns a list of all species defined for the simulation
- Parameters:
task – task to which to add the reporter, which also contains the config file
- Returns:
A list of all species’ names defined in the config
- emodpy_malaria.reporters.builtin.add_visualizations(task)[source]#
Adds pointer files that create visualization for reports relevant to malaria. Currently, “AllInsets”, “BinnedReport”, “MalariaInterventions”, “MalariaSummaryReport”
- Parameters:
task – task to which to add the pointer files as assets
- Returns:
Nothing
- emodpy_malaria.reporters.builtin.add_report_vector_genetics(task, manifest, start_day: int = 0, end_day: int = 365000, node_ids: list | None = None, species: str | None = None, gender: str = 'VECTOR_FEMALE', include_vector_state: bool = True, include_death_state: bool = False, stratify_by: str = 'GENOME', combine_similar_genomes: bool = False, specific_genome_combinations_for_stratification: list | None = None, allele_combinations_for_stratification: list | None = None, alleles_for_stratification: list | None = None, filename_suffix: str = '')[source]#
Adds ReportVectorGenetics to the simulation. See class definition for description of the report.
- Parameters:
task – task to which to add the reporter, if left as None, reporter is returned (used for unittests)
manifest – schema path file
start_day – the day of the simulation to start reporting data
end_day – the day of the simulation to stop reporting data
node_ids – the list of nodes in which to collect data, empty or None means all nodes
species – the species to include information on
gender – gender of species to include information on. Default: “VECTOR_FEMALE”, other options: “VECTOR_MALE”, “VECTOR_BOTH_GENDERS”
include_vector_state – if True(1), adds the columns for vectors in the different states (i.e Eggs, Larva, etc)
include_death_state – if True(1), adds columns for the number of vectors that died in this state during this time step as well as the average age. It adds two columns for each of the following states: ADULT, INFECTED, INFECTIOUS, and MALE
stratify_by – the way to stratify data. Default: “GENOME”, other options: “SPECIFIC_GENOME”, “ALLELE”, “ALLELE_FREQ”
combine_similar_genomes –
if True(1), genomes are combined if for each locus (ignoring gender) the set of allele of the two genomes are the same (i.e. 1-0 is similar to 0-1). Depends on: “GENOME”, “SPECIFIC_GENOME” specific_genome_combinations_for_stratification: if stratifying by “SPECIFIC_GENOME”, then use these genomes to stratify by. Example:
[{"Allele_Combination": [[ "a0", "*" ], [ "b1", "b0" ]]}, {"Allele_Combination": [[ "a1", "a0" ], [ "b0", "*" ]]}]
specific_genome_combinations_for_stratification – ff stratifying by “SPECIFIC_GENOME”, then use these genomes to stratify by. ‘*’ = list all entries at that location, ‘?’ = combine all entries at that location
allele_combinations_for_stratification –
if stratifying by “ALLELE”, then also add these allele name combos to the stratification, Example:
[[ "a0", "b0" ], [ "a1", "b1" ]]
alleles_for_stratification –
For example:
[ "a0", "a1", "b0", "b1" ]
filename_suffix – augments the filename of the report. If multiple reports are being generated, this allows you to distinguish among the multiple reports
- Returns:
if task is not set, returns the configured reporter, otherwise returns nothing
- emodpy_malaria.reporters.builtin.add_report_vector_stats(task, manifest, species_list: list | None = None, stratify_by_species: bool = False, include_death_state: bool = False, include_wolbachia: bool = False, include_gestation: bool = False, include_microsporidia: bool = False)[source]#
Adds ReportVectorStats report to the simulation. See class definition for description of the report.
- Parameters:
task – task to which to add the reporter, if left as None, reporter is returned (used for unittests)
manifest – schema path file
species_list – a list of species to include information on, default of None or [] means “all species”
stratify_by_species – if True(1), data will break out each the species for each node
include_death_state – if True(1), adds columns for the number of vectors that died in this state during this time step as well as the average age. It adds two columns for each of the following states: ADULT, INFECTED, INFECTIOUS, and MALE
include_wolbachia – if True(1), add a column for each type of Wolbachia
include_gestation – if True(1), adds columns for feeding and gestation
include_microsporidia – if True(1), adds columns for the number of vectors that have microsporidia in each state during this time step
- Returns:
if task is not set, returns the configured reporter, otherwise returns nothing
- emodpy_malaria.reporters.builtin.add_malaria_summary_report(task, manifest, start_day: int = 0, end_day: int = 365000, node_ids: list | None = None, reporting_interval: float = 365, must_have_ip_key_value: str = '', must_have_intervention: str = '', age_bins: list | None = None, infectiousness_bins: list | None = None, max_number_reports: int = 100, parasitemia_bins: list | None = None, pretty_format: bool = False, filename_suffix: str = '')[source]#
Adds MalariaSummaryReport to the simulation. See class definition for description of the report.
- Parameters:
task – task to which to add the reporter, if left as None, reporter is returned (used for unittests)
manifest – schema path file
start_day – the day of the simulation to starts collecting data for the report
end_day – the day of the simulation to stop reporting data
node_ids – a list of nodes from which to collect data for the report
reporting_interval – Defines the cadence of the report by specifying how many time steps to collect data before writing to the file
must_have_ip_key_value – a “Key:Value” pair that the individual must have in order to be included. Empty string means don’t look at IPs (individual properties)
must_have_intervention – the name of the an intervention that the person must have in order to be included. Empty string means don’t look at the interventions
age_bins – The max age in years per bin, listed in ascending order. Use a large value for the last bin, to collect all remaining individuals
infectiousness_bins – infectiousness Bins to aggregate within for the report
max_number_reports – the maximum number of report output files that will be produced for a given simulation
parasitemia_bins – Parasitemia bins on which to aggregate. A value <= 0 in the first bin indicates that uninfected individuals are added to this bin. You must sort your input data from low to high.
pretty_format – if True(1) sets pretty JSON formatting, which includes carriage returns, line feeds, and spaces for easier readability. The default, 0 (false), saves space where everything is on one line.
filename_suffix – augments the filename of the report. If multiple reports are being generated, this allows you to distinguish among the multiple reports
- Returns:
if task is not set, returns the configured reporter, otherwise returns nothing
- emodpy_malaria.reporters.builtin.add_malaria_patient_json_report(task, manifest, start_day: int = 0, end_day: int = 365000, node_ids: list | None = None, min_age_years: float = 0, max_age_years: float = 125, must_have_ip_key_value: str = '', must_have_intervention: str = '', filename_suffix: str = '')[source]#
Adds MalariaPatientJSONReport report to the simulation. See class definition for description of the report.
- Parameters:
task – task to which to add the reporter, if left as None, reporter is returned (used for unittests)
manifest – schema path file
start_day – the day of the simulation to starts collecting data for the report
end_day – the day of the simulation to stop reporting data
node_ids – a list of nodes from which to collect data for the report
min_age_years – minimum age in years of people to collect data on
max_age_years – maximum age in years of people to collect data on
must_have_ip_key_value – a “Key:Value” pair that the individual must have in order to be included. Empty string means don’t look at IPs (individual properties)
must_have_intervention – the name of the intervention that the person must have in order to be included. Empty string means don’t look at the interventions
filename_suffix – augments the filename of the report. If multiple reports are being generated, this allows you to distinguish among the multiple reports
- Returns:
if task is not set, returns the configured reporter, otherwise returns nothing
- emodpy_malaria.reporters.builtin.add_malaria_cotransmission_report(task, manifest, start_day: int = 0, end_day: int = 365000, node_ids: list | None = None, min_age_years: float = 0, max_age_years: float = 125, must_have_ip_key_value: str = '', must_have_intervention: str = '', include_human_to_vector: int = 0, filename_suffix: str = '')[source]#
Adds ReportSimpleMalariaTransmission report to the simulation. See class definition for description of the report. This is the report used to track malaria CoTransmission (co_transmission)
- Parameters:
task – task to which to add the reporter, if left as None, reporter is returned (used for unittests)
manifest – schema path file
start_day – the day to start collecting data for the report.
end_day – the day of the simulation to stop reporting data
node_ids – list of nodes for which to collect data for the report
min_age_years – minimum age in years of people to collect data on
max_age_years – maximum age in years of people to collect data on
include_human_to_vector – ff set to 1, Human-to-Vector transmission events will be included. One can identify these events because the ‘acquireIndividualId’=0 and transmitTime=acquireTime. WARNING: This can make the file size quite large
must_have_ip_key_value – a “Key:Value” pair that the individual must have in order to be included. Empty string means don’t look at IPs (individual properties)
must_have_intervention – the name of the intervention that the person must have in order to be included. Empty string means don’t look at the interventions
filename_suffix – augments the filename of the report. If multiple reports are being generated, this allows you to distinguish among the multiple reports
- Returns:
if task is not set, returns the configured reporter, otherwise returns nothing
- emodpy_malaria.reporters.builtin.add_report_malaria_filtered(task, manifest, start_day: int = 0, end_day: int = 365000, node_ids: list | None = None, min_age_years: float = 0, max_age_years: float = 125, must_have_ip_key_value: str = '', must_have_intervention: str = '', has_interventions: list | None = None, include_30day_avg_infection_duration: bool = True, filename_suffix: str = '')[source]#
Adds ReportMalariaFiltered report to the simulation. See class definition for description of the report.
- Parameters:
task – task to which to add the reporter, if left as None, reporter is returned (used for unittests)
manifest – schema path file
start_day – the day of the simulation to start collecting data
end_day – the day of simulation to stop collecting data
node_ids – list of nodes for which to collect the data, None or [] collects all the nodes
min_age_years – Minimum age in years of people to collect data on
max_age_years – Maximum age in years of people to collect data on
must_have_ip_key_value – a “Key:Value” pair that the individual must have in order to be included. Empty string means don’t look at IPs (individual properties)
must_have_intervention – the name of the an intervention that the person must have in order to be included. Empty string means don’t look at the interventions
has_interventions – a list of intervention names, a channel is added to the report for each InterventionName provided. The channel name will be Has_<InterventionName> and will be the fraction of the population that has that intervention. The Intervention_Name in the campaign should be the values in this parameter
include_30day_avg_infection_duration – if True(1) the ‘30-Day Avg Infection Duration’ channel is included in the report
filename_suffix – augments the filename of the report. If multiple reports are being generated, this allows you to distinguish among the multiple reports
- Returns:
if task is not set, returns the configured reporter, otherwise returns nothing
- emodpy_malaria.reporters.builtin.add_report_malaria_filtered_intrahost(task, manifest, start_day: int = 0, end_day: int = 365000, node_ids: list | None = None, min_age_years: float = 0, max_age_years: float = 125, must_have_ip_key_value: str = '', must_have_intervention: str = '', has_interventions: list | None = None, include_30day_avg_infection_duration: bool = True, filename_suffix: str = '')[source]#
Adds ReportMalariaFilteredIntraHost report to the simulation. See class definition for description of the report.
- Parameters:
task – task to which to add the reporter, if left as None, reporter is returned (used for unittests)
manifest – schema path file
start_day – the day of the simulation to start collecting data
end_day – the day of simulation to stop collecting data
node_ids – list of nodes for which to collect the data, None or [] collects all the nodes
min_age_years – Minimum age in years of people to collect data on
max_age_years – Maximum age in years of people to collect data on
must_have_ip_key_value – a “Key:Value” pair that the individual must have in order to be included. Empty string means don’t look at IPs (individual properties)
must_have_intervention – the name of the an intervention that the person must have in order to be included. Empty string means don’t look at the interventions
has_interventions – a list of intervention names, a channel is added to the report for each InterventionName provided. The channel name will be Has_<InterventionName> and will be the fraction of the population that has that intervention. The Intervention_Name in the campaign should be the values in this parameter
include_30day_avg_infection_duration – if True(1) the ‘30-Day Avg Infection Duration’ channel is included in the report
filename_suffix – augments the filename of the report. If multiple reports are being generated, this allows you to distinguish among the multiple reports
- Returns:
if task is not set, returns the configured reporter, otherwise returns nothing
- emodpy_malaria.reporters.builtin.add_spatial_report_malaria_filtered(task, manifest, start_day: int = 0, end_day: int = 365000, reporting_interval: int = 1, node_ids: list | None = None, min_age_years: float = 0, max_age_years: float = 125, must_have_ip_key_value: str = '', must_have_intervention: str = '', spatial_output_channels: list | None = None, filename_suffix: str = '')[source]#
Adds SpatialReportMalariaFiltered report to the simulation. See class definition for description of the report.
- Parameters:
task – task to which to add the reporter, if left as None, reporter is returned (used for unittests)
manifest – schema path file
start_day – the day of the simulation to start collecting data
end_day – the day of simulation to stop collecting data
reporting_interval – defines the cadence of the report by specifying how many time steps to collect data before writing to the file.
node_ids – list of nodes for which to collect the data, None or [] collects all the nodes
min_age_years – Minimum age in years of people to collect data on
max_age_years – Maximum age in years of people to collect data on
must_have_ip_key_value – a “Key:Value” pair that the individual must have in order to be included. Empty string means don’t look at IPs (individual properties)
must_have_intervention – the name of the an intervention that the person must have in order to be included. Empty string means don’t look at the interventions
spatial_output_channels – list of names of channels you want to have output for. Available channels are: “Adult_Vectors”, “Air_Temperature”, “Births”, “Blood_Smear_Gametocyte_Prevalence”, “Blood_Smear_Parasite_Prevalence”, “Campaign_Cost”, “Daily_Bites_Per_Human”, “Daily_EIR”, “Disease_Deaths”, “Fever_Prevalence”, “Human_Infectious_Reservoir”, “Infected”, “Infectious_Vectors”, “Land_Temperature”, “Mean_Parasitemia”, “New_Clinical_Cases”, “New_Infections”, “New_Reported_Infections”, “New_Severe_Cases”, “PCR_Gametocyte_Prevalence”, “PCR_Parasite_Prevalence”, “PfHRP2_Prevalence”, “Population”, “Prevalence”, “Rainfall”, “Relative_Humidity”, “True_Prevalence” Defaults: [“Blood_Smear_Parasite_Prevalence”, “New_Clinical_Cases”, “Population”]
filename_suffix – augments the filename of the report. If multiple reports are being generated, this allows you to distinguish among the multiple reports
- Returns:
if task is not set, returns the configured reporter, otherwise returns nothing
- emodpy_malaria.reporters.builtin.add_report_event_counter(task, manifest, start_day: int = 0, end_day: int = 365000, node_ids: list | None = None, event_trigger_list: list | None = None, min_age_years: float = 0, max_age_years: float = 125, must_have_ip_key_value: str = '', must_have_intervention: str = '', filename_suffix: str = '')[source]#
Adds ReportEventCounter report to the simulation. See class definition for description of the report.
- Parameters:
task – task to which to add the reporter, if left as None, reporter is returned (used for unittests)
manifest – schema path file
start_day – the day of the simulation to start counting events
end_day – the day of simulation to stop collecting data
node_ids – list of nodes in which to count the events
event_trigger_list – list of events which to count
min_age_years – Minimum age in years of people to collect data on
max_age_years – Maximum age in years of people to collect data on
must_have_ip_key_value – a “Key:Value” pair that the individual must have in order to be included. Empty string means don’t look at IPs (individual properties)
must_have_intervention – the name of the an intervention that the person must have in order to be included. Empty string means don’t look at the interventions
filename_suffix – augments the filename of the report. If multiple reports are being generated, this allows you to distinguish among the multiple reports
- Returns:
if task is not set, returns the configured reporter, otherwise returns nothing
- emodpy_malaria.reporters.builtin.add_sql_report_malaria(task, manifest, start_day: int = 0, end_day: int = 365000, include_infection_table: bool = True, include_health_table: bool = True, include_drug_table: bool = False, include_individual_properties: bool = False)[source]#
Adds SqlReportMalaria report to the simulation. See class definition for description of the report.
- Parameters:
task – task to which to add the reporter, if left as None, reporter is returned (used for unittests)
manifest – schema path file
start_day – the day of the simulation to start collecting data
end_day – the day of the simulation to stop collecting data
include_infection_table – if True(1), include the table that provides data at each time step for each active infection
include_health_table – if True(1), include the table that provides data at each time step for a person’s health
include_drug_table – if True(1), include the table that provides data at each time step for each drug used
include_individual_properties – if True(1), add columns to the Health table for each Property(key). The values in the columns are integers that are the primary key in a new IndividualProperties table that contains the strings.
- Returns:
if task is not set, returns the configured reporter, otherwise returns nothing
- emodpy_malaria.reporters.builtin.add_sql_report_malaria_genetics(task, manifest, start_day: int = 0, end_day: int = 365000, include_infection_table: bool = True, include_health_table: bool = True, include_drug_table: bool = False, include_individual_properties: bool = False)[source]#
Adds SqlReportMalariaGenetics report to the simulation. See class definition for description of the report.
- Parameters:
task – task to which to add the reporter, if left as None, reporter is returned (used for unittests)
manifest – schema path file
start_day – the day of the simulation to start collecting data
end_day – the day of the simulation to stop collecting data
include_infection_table – if True(1), include the table that provides data at each time step for each active infection
include_health_table – if True(1), include the table that provides data at each time step for a person’s health
include_drug_table – if True(1), include the table that provides data at each time step for each drug used
include_individual_properties – if True(1), add columns to the Health table for each Property(key). The values in the columns are integers that are the primary key in a new IndividualProperties table that contains the strings.
- Returns:
if task is not set, returns the configured reporter, otherwise returns nothing
- emodpy_malaria.reporters.builtin.add_vector_habitat_report(task, manifest)[source]#
Adds VectorHabitatReport report to the simulation. See class definition for description of the report. You do not need to configure any data parameters to generate this report.
- Parameters:
task – task to which to add the reporter, if left as None, reporter is returned (used for unittests)
manifest – schema path file
- Returns:
if task is not set, returns the configured reporter, otherwise returns nothing
- emodpy_malaria.reporters.builtin.add_malaria_immunity_report(task, manifest, start_day: int = 0, end_day: int = 365000, node_ids: list | None = None, reporting_interval: int = 1, max_number_reports: int = 365000, age_bins: list | None = None, must_have_ip_key_value: str = '', must_have_intervention: str = '', pretty_format: bool = False, filename_suffix: str = '')[source]#
Adds MalariaImmunityReport report to the simulation. See class definition for description of the report.
- Parameters:
task – task to which to add the reporter, if left as None, reporter is returned (used for unittests)
manifest – schema path file
start_day – the day of the simulation to start collecting data
end_day – the day of simulation to stop collecting data
node_ids – list of nodes for which to collect data
reporting_interval – defines the cadence of the report by specifying how many time steps to collect data before writing to the file.
max_number_reports – the maximum number of report output files that will be produced for a given simulation
age_bins – The max age in years per bin, listed in ascending order. Use a large value for the last bin, to collect all remaining individuals
must_have_ip_key_value – a “Key:Value” pair that the individual must have in order to be included. Empty string means don’t look at IPs (individual properties)
must_have_intervention – the name of the an intervention that the person must have in order to be included. Empty string means don’t look at the interventions
pretty_format – if True(1), sets pretty JSON formatting, which includes carriage returns, line feeds, and spaces for easier readability. The default, 0 (false), saves space where everything is on one line.
filename_suffix – augments the filename of the report. If multiple reports are being generated, this allows you to distinguish among the multiple reports
- Returns:
if task is not set, returns the configured reporter, otherwise returns nothing
- emodpy_malaria.reporters.builtin.add_malaria_survey_analyzer(task, manifest, start_day: int = 0, end_day: int = 365000, node_ids: list | None = None, event_trigger_list: list | None = None, reporting_interval: float = 1, max_number_reports: int = 365000, ip_key_to_collect: str = '', must_have_ip_key_value: str = '', must_have_intervention: str = '', pretty_format: int = 0, filename_suffix: str = '')[source]#
Adds MalariaSurveyJSONAnalyzer report to the simulation. See class definition for description of the report.
- Parameters:
task – task to which to add the reporter, if left as None, reporter is returned (used for unittests)
manifest – schema path file
start_day – the day of the simulation to start collecting data
end_day – the day of simulation to stop collecting data
reporting_interval – defines the cadence of the report by specifying how many time steps to collect data before writing to the file
event_trigger_list – list of individual events to include into the report
max_number_reports – the maximum number of report output files that will be produced for a given simulation
node_ids – list of nodes for which to collect data
ip_key_to_collect – name of the Individual Property Key whose value to collect. Empty string means collect values for all Individual Properties
must_have_ip_key_value – a “Key:Value” pair that the individual must have in order to be included. Empty string means don’t look at IPs (individual properties)
must_have_intervention – the name of the an intervention that the person must have in order to be included. Empty string means don’t look at the interventions
pretty_format – if True(1), sets pretty JSON formatting, which includes carriage returns, line feeds, and spaces for easier readability. The default, 0 (false), saves space where everything is on one line.
filename_suffix – augments the filename of the report. If multiple reports are being generated, this allows you to distinguish among the multiple reports
- Returns:
if task is not set, returns the configured reporter, otherwise returns nothing
- emodpy_malaria.reporters.builtin.add_drug_status_report(task, manifest, start_day: int = 0, end_day: int = 365000)[source]#
Adds ReportDrugStatus report to the simulation. See class definition for description of the report.
- Parameters:
task – task to which to add the reporter, if left as None, reporter is returned (used for unittests)
manifest – schema path file
start_day – the day of the simulation to start collecting data
end_day – the day of the simulation to stop collecting data
- Returns:
if task is not set, returns the configured reporter, otherwise returns nothing
- emodpy_malaria.reporters.builtin.add_report_infection_stats_malaria(task, manifest, start_day: int = 0, end_day: int = 365000, reporting_interval: int = 30, include_hepatocyte: bool = True, hepatocyte_threshold: int = 0, include_irbc: bool = True, irbc_threshold: int = 0, include_gametocyte: bool = True, gametocyte_threshold: int = 0)[source]#
Adds ReportInfectionStatsMalaria report to the simulation. See class definition for description of the report.
- Parameters:
task – task to which to add the reporter, if left as None, reporter is returned (used for unittests)
manifest – schema path file
start_day – the day of the simulation to start collecting data
end_day – the day of the simulation to stop collecting data
reporting_interval – defines the cadence of the report by specifying how many time steps to collect data before writing to the file
include_hepatocyte – If set to True, then a column will be added to the report providing the count of the infected hepatocytes. Default is True.
hepatocyte_threshold – If the column is included and the number of hepatocytes related to this infection are greater than or equal to this value, then the row of data will be included. Default is 0, so any/all counts of hepatocytes will be included.
include_irbc – If set to True, then a column will be added to the report with the number of Infected Red Blood Cells from this infection. Default is True.
irbc_threshold – If the column is included and the number of IRBCs related to this infection are greater than or equal to this value, then the row of data will be included. Default is 0, so any/all counts of IRBCs will be included.
include_gametocyte – If set to True, then a column will be added to the report that contains the number of gametocytes (male & female) from this infection. Default is True.
gametocyte_threshold – “If the column is included and the number of gametocytes related to this infection are greater than or equal to this value, then the row of data will be included. Default is 0, so any/all counts of gametocytes will be included.
- Returns:
if task is not set, returns the configured reporter, otherwise returns nothing
- emodpy_malaria.reporters.builtin.add_human_migration_tracking(task, manifest)[source]#
Adds ReportHumanMigrationTracking report to the simulation. There are no special parameter that need to be configured to generate the report. However, the simulation must have migration enabled.
- Parameters:
task – task to which to add the reporter, if left as None, reporter is returned (used for unittests)
manifest – schema path file
- Returns:
if task is not set, returns the configured reporter, otherwise returns nothing
- emodpy_malaria.reporters.builtin.add_report_node_demographics(task, manifest, age_bins: list | None = None, ip_key_to_collect: str = '', stratify_by_gender: bool = True)[source]#
Adds ReportNodeDemographics report to the simulation. See class definition for description of the report.
- Parameters:
task – task to which to add the reporter, if left as None, reporter is returned (used for unittests)
manifest – schema path file
age_bins – the age bins (in years) to aggregate within and report. An empty array does not stratify by age. You must sort your input data from low to high.
ip_key_to_collect – The name of the Individual Properties Key by which to stratify the report. An empty string does not stratify by Individual Properties
stratify_by_gender – if True(1), to stratify by gender. Set to False (0) to not stratify by gender.
- Returns:
if task is not set, returns the configured reporter, otherwise returns nothing
- emodpy_malaria.reporters.builtin.add_report_node_demographics_malaria(task, manifest, age_bins: list | None = None, ip_key_to_collect: str = '', stratify_by_gender: bool = True, stratify_by_clinical_symptoms: bool = False)[source]#
Adds ReportNodeDemographicsMalaria report to the simulation. See class definition for description of the report.
- Parameters:
task – task to which to add the reporter, if left as None, reporter is returned (used for unittests)
manifest – schema path file
age_bins – the age bins (in years) to aggregate within and report. An empty array does not stratify by age. You must sort your input data from low to high.
ip_key_to_collect – The name of theIndividualProperties key by which to stratify the report. An empty string does not stratify by Individual Properties
stratify_by_gender – if True(1), to stratify by gender. Set to False (0) to not stratify by gender.
stratify_by_clinical_symptoms – if set to True(1), the data will have an extra stratification for people who have clinical symptoms and those that do not. Default is 0 or no extra stratification
- Returns:
if task is not set, returns the configured reporter, otherwise returns nothing
- emodpy_malaria.reporters.builtin.add_report_node_demographics_malaria_genetics(task, manifest, barcodes: list | None = None, drug_resistant_strings: list | None = None, drug_resistant_and_hrp_statistic_type: DrugResistantAndHRPStatisticType = DrugResistantAndHRPStatisticType.NUM_PEOPLE_WITH_RESISTANT_INFECTION, hrp_strings: list | None = None, age_bins: list | None = None, ip_key_to_collect: str = '', stratify_by_gender: bool = True, include_identity_by_xxx: bool = False)[source]#
Adds ReportNodeDemographicsMalariaGenetics report to the simulation. See class definition for description of the report.
- Parameters:
task – task to which to add the reporter, if left as None, reporter is returned (used for unittests)
manifest – schema path file
barcodes – a list of barcode strings. The report contains the number of human infections with each barcode. Use ‘*’ for a wild card at a loci to include all values at that loci. For example, “A*T” includes AAT, ACT, AGT, and ATT. The report contains a BarcodeOther column for barcodes that are not defined. Note: There is no validation that the barcode strings are valid barcodes for the scenario.
drug_resistant_strings – a list of strings representing the set of drug resistant markers. A column will be created with the number of humans infections with that barcode. One can use ‘*’ for a wild card. A ‘BarcodeOther’ column will be created for barcodes not define
hrp_strings – A list of strings representing the set of HRP markers. A column will be created with the number of humans infections with that HRP string. One can use ‘*’ for a wild card. A ‘OtherHRP’ column will be created for HRP strings not defined.
drug_resistant_and_hrp_statistic_type – indicates the statistic in the Drug Resistant & HRP columns: NUM_PEOPLE_WITH_RESISTANT_INFECTION = A person is counted if they have one infection with that drug resistant marker; NUM_INFECTIONS = The total number of infections with that marker.
age_bins – the age bins (in years) to aggregate within and report. An empty array does not stratify by age. You must sort your input data from low to high.
ip_key_to_collect – The name of theIndividualProperties key by which to stratify the report. An empty string does not stratify by Individual Properties
stratify_by_gender – if True(1), to stratify by gender. Set to False(0) to not stratify by gender.
include_identity_by_xxx – if True(1), include columns about the average Identity By State (IBS) and Identity By Descent (IBD) for all new infections with unique barcodes in the last year.
- Returns:
if task is not set, returns the configured reporter, otherwise returns nothing
- emodpy_malaria.reporters.builtin.add_report_vector_migration(task, manifest, start_day: int = 0, end_day: int | None = None, species_list: list[str] | None = None, must_be_in_state: list[VectorState] | None = None, must_be_from_node: list[int] | None = None, must_be_to_node: list[int] | None = None, include_genome_data: bool = False, filename_suffix: str = '')[source]#
Adds ReportVectorMigration report to the simulation. See class definition for description of the report.
- Parameters:
task – task to which to add the reporter, if left as None, reporter is returned (used for unittests)
manifest – schema path file
start_day – the day of the simulation to start collecting data
end_day – the day of the simulation to stop collecting data
species_list – a list of species to include information on, default of None or [] means “all species”.
must_be_in_state – A list of vector states for which you want to record the migration. Only STATE_MALE, STATE_ADULT, STATE_INFECTED, STATE_INFECTIOUS migrate.
must_be_from_node – A list of node IDs. A vector must be travelling FROM one of these nodes to be recorded into the report. Empty list means vectors traveling from any/all nodes will be recorded.
must_be_to_node – A list of node IDs. A vector must be travelling TO one of these nodes to be recorded into the report. Empty list means vectors traveling to any/all nodes will be recorded.
include_genome_data – If set to True, adds a Genome column for migrating vectors. Vectors with no custom alleles will still have their sex alleles listed.
filename_suffix – Augments the filename of the report. If multiple reports are being generated, this allows you to distinguish among the multiple reports.
- Returns:
if task is not set, returns the configured reporter, otherwise returns nothing
- emodpy_malaria.reporters.builtin.add_report_vector_stats_malaria_genetics(task, manifest, species_list: list | None = None, stratify_by_species: bool = False, include_death_state: bool = False, include_wolbachia: bool = False, include_gestation: bool = False, include_microsporidia: bool = False, barcodes: list | None = None)[source]#
Adds ReportVectorStatsMalariaGenetics report to the simulation. See class definition for description of the report.
- Parameters:
task – task to which to add the reporter, if left as None, reporter is returned (used for unittests)
manifest – schema path file
species_list – a list of species to include information on, default of None or [] means “all species”
stratify_by_species – if True(1), data will break out each the species for each node
include_death_state – if True(1), adds columns for the number of vectors that died in this state during this time step as well as the average age. It adds two columns for each of the following states: ADULT, INFECTED, INFECTIOUS, and MALE
include_wolbachia – if True(1), add a column for each type of Wolbachia
include_gestation – if True(1), adds columns for feeding and gestation
include_microsporidia – if True(1), adds columns for the number of vectors that have microsporidia in each state during this time step
barcodes – a list of barcode strings. The report contains the number of human infections with each barcode. Use ‘*’ for a wild card at a loci to include all values at that loci. For example, “A*T” includes AAT, ACT, AGT, and ATT. The report contains a BarcodeOther column for barcodes that are not defined. Note: There is no validation that the barcode strings are valid barcodes for the scenario.
- Returns:
if task is not set, returns the configured reporter, otherwise returns nothing
- emodpy_malaria.reporters.builtin.add_event_recorder(task, event_list: list | None = None, only_include_events_in_list: bool = True, ips_to_record: list | None = None, start_day: int = 0, end_day: int = 365000, node_ids: list | None = None, min_age_years: float = 0, max_age_years: float = 365000, must_have_ip_key_value: str = '', must_have_intervention: str = '', property_change_ip_to_record: str = '')[source]#
Adds ReportEventRecorder report to the simulation. See class definition for description of the report.
- Parameters:
task – task to which to add the reporter
event_list – a list of events to record or exclude, depending on value of only_include_events_in_list
only_include_events_in_list – if True, only record events listed. if False, record ALL events EXCEPT for the ones listed
ips_to_record – list of individual properties to include in report
start_day – The day of the simulation to start collecting data
end_day – The day of the simulation to stop collecting data.
node_ids – Data will be collected for the nodes in this list, if None - all nodes have data collected.
min_age_years – Minimum age in years of people to collect data on
max_age_years – Maximum age in years of people to collect data on
must_have_ip_key_value – A Key:Value pair that the individual must have in order to be included. Empty string means don’t look at IndividualProperties
must_have_intervention – The name of the intervention that the person must have in order to be included. Empty string means don’t look at the interventions
property_change_ip_to_record – If the string is not empty, then the recorder will add the PropertyChange event to the list of events that the report is listening to. However, it will only record the events where the property changed the value of the given key
- Returns:
Nothing
- emodpy_malaria.reporters.builtin.add_node_event_recorder(task, event_list: list | None = None, only_include_events_in_list: bool = True, stats_by_node_properties: list | None = None, stats_by_individual_properties: str = '')[source]#
Adds ReportEventRecorderNode report to the simulation.
- Parameters:
task – task to which to add the reporter
event_list – A list of node-level events to record or exclude, depending on value of only_include_node_events_in_list
only_include_events_in_list – If True, only record node-level events listed. if False, record ALL node-level events EXCEPT for the ones listed
stats_by_node_properties – Specifies an array of (optional) node property keys, as defined in NodeProperties in the demographics file, to be added as additional columns to the ReportNodeEventRecorder.csv output report. An empty array equals no additional columns added.
stats_by_individual_properties – Specifies an array of (optional) individual property keys, as defined in IndividualProperties in the demographics file, to be added to the ReportNodeEventRecorder.csv output report. An empty array equals no additional columns added
- Returns:
Nothing
- emodpy_malaria.reporters.builtin.add_coordinator_event_recorder(task, event_list: list | None = None, only_include_events_in_list: bool = True)[source]#
Adds ReportEventRecorderCoordinator report to the simulation.
- Parameters:
task – task to which to add the reporter
event_list – A list of coordinator-level events to record or exclude, depending on value of only_include_coordinator_events_in_list
only_include_events_in_list – If True, only record node-level events listed. if False, record ALL node-level events EXCEPT for the ones listed
- Returns:
Nothing
- emodpy_malaria.reporters.builtin.add_report_intervention_pop_avg(task, manifest, start_day: int = 0, end_day: int = 365000, node_ids: list | None = None, min_age_years: float = 0, max_age_years: float = 125, must_have_ip_key_value: str = '', must_have_intervention: str = '', filename_suffix: str = '')[source]#
Adds ReportInterventionPopAvg reporter. See class definition for description of the report.
- Parameters:
task – Task to which to add the reporter, if left as None, reporter is returned (used for unittests)
manifest – Schema path file
start_day – the day of the simulation to start collecting data
end_day – the day of the simulation to stop collecting data
node_ids – List of nodes for which to collect data
min_age_years – Minimum age in years of people to collect data on
max_age_years – Maximum age in years of people to collect data on
must_have_ip_key_value – a “Key:Value” pair that the individual must have in order to be included. Empty string means don’t look at IPs (individual properties)
must_have_intervention – the name of the an intervention that the person must have in order to be included. Empty string means don’t look at the interventions
filename_suffix – augments the filename of the report. If multiple reports are being generated, this allows you to distinguish among the multiple reports
- Returns:
if task is not set, returns the configured reporter, otherwise returns nothing
- emodpy_malaria.reporters.builtin.add_report_microsporidia(task, manifest)[source]#
Adds ReportMicrosporidia reporter. See class definition for description of the report. There are no special parameter that need to be configured to generate the report.
- Parameters:
task – Task to which to add the reporter, if left as None, reporter is returned (used for unittests)
manifest – Schema path file
- Returns:
if task is not set, returns the configured reporter, otherwise returns nothing
- emodpy_malaria.reporters.builtin.add_report_fpg_output(task, manifest, start_day: int = 0, end_day: int = 365000, node_ids: list | None = None, min_age_years: float = 0, max_age_years: float = 125, must_have_ip_key_value: str = '', must_have_intervention: str = '', filename_suffix: str = '', include_genome_ids: bool = False, minimum_parasite_density: float = 1, sampling_period: float = 1)[source]#
Adds ReportFpgOutputForObservationalModel reporter. See class definition for description of the report.
- Parameters:
task – Task to which to add the reporter, if left as None, reporter is returned (used for unittests)
manifest – Schema path file
start_day – the day of the simulation to start collecting data
end_day – the day of the simulation to stop collecting data
node_ids – List of nodes for which to collect data
min_age_years – Minimum age in years of people to collect data on
max_age_years – Maximum age in years of people to collect data on
must_have_ip_key_value – a “Key:Value” pair that the individual must have in order to be included. Empty string means don’t look at IPs (individual properties)
must_have_intervention – the name of the an intervention that the person must have in order to be included. Empty string means don’t look at the interventions
filename_suffix – NOT USED
include_genome_ids – Add a column that has a list of Genome IDs (hashcode) for the person.
minimum_parasite_density – The minimum density that the infection must have to be included in the list of infections. A value of zero implies include all infections. Number of asexual parasites per micro liter of blood.
sampling_period – The number of days between sampling the population. This implies one should get data on days Start_Day, Start_Day+Sampling_Period, Start_Day+2*Sampling_Period, and so on.
- Returns:
if task is not set, returns the configured reporter, otherwise returns nothing
- emodpy_malaria.reporters.builtin.add_report_simulation_stats(task, manifest)[source]#
Adds ReportSimulationStats to collect data on the computational performance of the model (duration, memory, number of persisted interventions, etc).
There are no special parameter that need to be configured to generate the report.
- Parameters:
task – task to which to add the reporter, if left as None, reporter is returned (used for unittests)
manifest – schema path file
- Returns:
if task is not set, returns the configured reporter, otherwise returns nothing
- class emodpy_malaria.reporters.builtin.ReportVectorGenetics(class_name: str | None = None, parameters: dict = <factory>, Enabled: bool = True, Pretty_Format: bool = True)[source]#
Bases:
BuiltInReporter
The vector genetics report is a CSV-formatted report (ReportVectorGenetics.csv) that collects information on how many vectors of each genome/allele combination exist at each time, node, and vector state. Information can only be collected on one species per report.
- class emodpy_malaria.reporters.builtin.ReportInfectionStatsMalaria(class_name: str | None = None, parameters: dict = <factory>, Enabled: bool = True, Pretty_Format: bool = True)[source]#
Bases:
BuiltInReporter
- class emodpy_malaria.reporters.builtin.ReportVectorStats(class_name: str | None = None, parameters: dict = <factory>, Enabled: bool = True, Pretty_Format: bool = True)[source]#
Bases:
BuiltInReporter
The vector statistics report is a CSV-formatted report (ReportVectorStats.csv) that provides detailed life-cycle data on the vectors in the simulation. The report is stratified by time, node ID, and (optionally) species.
- class emodpy_malaria.reporters.builtin.MalariaSummaryReport(class_name: str | None = None, parameters: dict = <factory>, Enabled: bool = True, Pretty_Format: bool = True)[source]#
Bases:
BuiltInReporter
The population-level malaria summary report is a JSON-formatted report (MalariaSummaryReport.json) that provides a summary of malaria data across the population. The data are grouped into different bins such as age, parasitemia, and infectiousness.
- class emodpy_malaria.reporters.builtin.MalariaPatientJSONReport(class_name: str | None = None, parameters: dict = <factory>, Enabled: bool = True, Pretty_Format: bool = True)[source]#
Bases:
BuiltInReporter
The malaria patient data report is a JSON-formatted report (MalariaPatientReport.json) that provides medical data for each individual on each day of the simulation. For example, for a specified number of time steps, each “patient” has information collected on the temperature of their fever, their parasite counts, treatments they received, and other relevant data.
- class emodpy_malaria.reporters.builtin.ReportSimpleMalariaTransmission(class_name: str | None = None, parameters: dict = <factory>, Enabled: bool = True, Pretty_Format: bool = True)[source]#
Bases:
BuiltInReporter
The simple malaria transmission report (ReportSimpleMalariaTransmission.csv) is a csv report that provides data on malaria transmission, by tracking who transmitted malaria to whom. The report can only be used when the simulation setup parameter Malaria_Model is set to MALARIA_MECHANISTIC_MODEL_WITH_CO_TRANSMISSION. This report is typically used as input to the GenEpi model.
- class emodpy_malaria.reporters.builtin.ReportMalariaFiltered(class_name: str | None = None, parameters: dict = <factory>, Enabled: bool = True, Pretty_Format: bool = True)[source]#
Bases:
BuiltInReporter
The malaria filtered report (ReportMalariaFiltered.json) is the same as the default InsetChart report, but provides filtering options to enable the user to select the data to be displayed for each time step or for each node. See InsetChart for more information about InsetChart.json.
- class emodpy_malaria.reporters.builtin.SpatialReportMalariaFiltered(class_name: str | None = None, parameters: dict = <factory>, Enabled: bool = True, Pretty_Format: bool = True)[source]#
Bases:
BuiltInReporter
The filtered malaria spatial report (SpatialReportMalariaFiltered.bin) provides spatial information on malaria simulations and allows for filtering the data and collection over different intervals. This report is similar to the Spatial output report but allows for data collection and filtering over different intervals using the Start_Day and a Reporting_Interval parameters
- class emodpy_malaria.reporters.builtin.ReportMalariaFilteredIntraHost(class_name: str | None = None, parameters: dict = <factory>, Enabled: bool = True, Pretty_Format: bool = True)[source]#
Bases:
BuiltInReporter
The filtered malaria spatial report (ReportMalariaFilteredIntraHost.bin) provides TBD
- class emodpy_malaria.reporters.builtin.ReportEventCounter(class_name: str | None = None, parameters: dict = <factory>, Enabled: bool = True, Pretty_Format: bool = True)[source]#
Bases:
BuiltInReporter
The event counter report is a JSON-formatted file (ReportEventCounter.json) that keeps track of how many of each event types occurs during a time step. The report produced is similar to the InsetChart.json channel report, where there is one channel for each event defined in the configuration file (config.json).
- class emodpy_malaria.reporters.builtin.SqlReportMalariaGenetics(class_name: str | None = None, parameters: dict = <factory>, Enabled: bool = True, Pretty_Format: bool = True)[source]#
Bases:
BuiltInReporter
The SqlReportMalariaGenetics outputs epidemiological and transmission data. Because of the quantity and complexity of the data, the report output is a multi-table SQLite relational database (see https://sqlitebrowser.org/). Use the configuration parameters to manage the size of the database.
- class emodpy_malaria.reporters.builtin.SqlReportMalaria(class_name: str | None = None, parameters: dict = <factory>, Enabled: bool = True, Pretty_Format: bool = True)[source]#
Bases:
BuiltInReporter
The SqlReportMalaria outputs epidemiological and transmission data. This report does not contain any genomics data. Because of the quantity and complexity of the data, the report output is a multi-table SQLite relational database (see https://sqlitebrowser.org/). Use the configuration parameters to manage the size of the database.
- class emodpy_malaria.reporters.builtin.VectorHabitatReport(class_name: str | None = None, parameters: dict = <factory>, Enabled: bool = True, Pretty_Format: bool = True)[source]#
Bases:
BuiltInReporter
The vector habitat report is a JSON-formatted file (VectorHabitatReport.json) containing habitat data for each vector species included in the simulation. It focuses on statistics relevant to mosquito developmental stages (e.g. eggs and larvae), such as egg capacity and larval crowding.
- class emodpy_malaria.reporters.builtin.MalariaImmunityReport(class_name: str | None = None, parameters: dict = <factory>, Enabled: bool = True, Pretty_Format: bool = True)[source]#
Bases:
BuiltInReporter
The malaria immunity report is a JSON-formatted file (MalariaImmunityReport.json) that provides statistics for several antibody types for specified age bins over a specified reporting duration. Specifically, the report tracks the average and standard deviation in the fraction of observed antibodies for merozoite surface protein ( MSP), Plasmodium falciparum erythrocyte membrane protein 1 (PfEMP1), and non-specific (and less immunogenic) minor surface epitopes. The total possible is determined by parameters Falciparum_MSP_Variants, Falciparum_PfEMP1_Variants, and Falciparum_Nonspecific_Types. The greater the fraction, the more antibodies the individual has against possible new infections. The smaller the fraction, the more naïve the individual’s immune system is to malaria.
- class emodpy_malaria.reporters.builtin.MalariaSurveyJSONAnalyzer(class_name: str = None, parameters: dict = <factory>, Enabled: bool = True, Pretty_Format: bool = True)[source]#
Bases:
BuiltInReporter
- class emodpy_malaria.reporters.builtin.ReportDrugStatus(class_name: str | None = None, parameters: dict = <factory>, Enabled: bool = True, Pretty_Format: bool = True)[source]#
Bases:
BuiltInReporter
The drug status report provides status information on the drugs that an individual has taken or is waiting to take. Because the report provides information for each drug, for each individual, and for each time step, you may want to use the Start_Day and End_Day parameters to limit the size the output file.
- class emodpy_malaria.reporters.builtin.ReportHumanMigrationTracking(class_name: str | None = None, parameters: dict = <factory>, Enabled: bool = True, Pretty_Format: bool = True)[source]#
Bases:
BuiltInReporter
The human migration tracking report is a CSV-formatted report (ReportHumanMigrationTracking.csv) that provides details about human travel during simulations. The report provides one line for each surviving individual who migrates during the simulation.
- class emodpy_malaria.reporters.builtin.ReportNodeDemographics(class_name: str | None = None, parameters: dict = <factory>, Enabled: bool = True, Pretty_Format: bool = True)[source]#
Bases:
BuiltInReporter
The node demographics report is a CSV-formatted report (ReportNodeDemographics.csv) that provides population information stratified by node. For each time step, the report collects data on each node and age bin.
- class emodpy_malaria.reporters.builtin.ReportNodeDemographicsMalaria(class_name: str | None = None, parameters: dict = <factory>, Enabled: bool = True, Pretty_Format: bool = True)[source]#
Bases:
BuiltInReporter
This report extends the data collected in the ReportNodeDemographics by adding data about the number of infections with specific barcodes. The malaria node demographics genetics report does not include columns for Genome_Markers because this report assumes that the simulation setup parameter Malaria_Model is set to MALARIA_MECHANISTIC_MODEL_WITH_PARASITE_GENETICS.
Note: If you need detailed data on the infections with different barcodes, use the SqlReportMalaria. That report contains data on all barcodes, without specifying what they are.
- class emodpy_malaria.reporters.builtin.ReportNodeDemographicsMalariaGenetics(class_name: str | None = None, parameters: dict = <factory>, Enabled: bool = True, Pretty_Format: bool = True)[source]#
Bases:
BuiltInReporter
This report extends the data collected in the ReportNodeDemographics by adding data about the number of infections with specific barcodes. The malaria node demographics genetics report does not include columns for Genome_Markers because this report assumes that the simulation setup parameter Malaria_Model is set to MALARIA_MECHANISTIC_MODEL_WITH_PARASITE_GENETICS.
Note: If you need detailed data on the infections with different barcodes, use the SqlReportMalaria. That report contains data on all barcodes, without specifying what they are.
- class emodpy_malaria.reporters.builtin.ReportVectorMigration(class_name: str | None = None, parameters: dict = <factory>, Enabled: bool = True, Pretty_Format: bool = True)[source]#
Bases:
BuiltInReporter
This report provides detailed information on where and when vectors are migrating. Because there can be one line for each migrating vector, you may want to use the Start_Day and End_Day parameters to limit the size the output file.
- class emodpy_malaria.reporters.builtin.ReportVectorStatsMalariaGenetics(class_name: str | None = None, parameters: dict = <factory>, Enabled: bool = True, Pretty_Format: bool = True)[source]#
Bases:
BuiltInReporter
This report extends the data collected in the ReportVectorStats by adding data about the number of infections with specific barcodes. The malaria node demographics genetics report does not include columns for Genome_Markers because this report assumes that the simulation setup parameter Malaria_Model is set to MALARIA_MECHANISTIC_MODEL_WITH_PARASITE_GENETICS.
- class emodpy_malaria.reporters.builtin.ReportInterventionPopAvg(class_name: str | None = None, parameters: dict = <factory>, Enabled: bool = True, Pretty_Format: bool = True)[source]#
Bases:
BuiltInReporter
ReportInterventionPopAvg is a CSV-formatted report that gives population average data on the usage of interventions. It provides data on the fraction of people or nodes that have an intervention as well as averages on the intervention’s efficacy. For each persistent intervention that has been distributed to a node or person, the report provides one line in the CSV for each intervention used in that node. Since node-level intervention (usually vector control) can only have one per node, the data will be for that one intervention. The individual-level interventions will have data for the people in that node.
- class emodpy_malaria.reporters.builtin.ReportFpgOutputForObservationalModel(class_name: str | None = None, parameters: dict = <factory>, Enabled: bool = True, Pretty_Format: bool = True)[source]#
Bases:
BuiltInReporter
ReportFpgOutputForObservationalModel generates two files: infIndexRecursive-genomes-df.csv - This file will be the list of infected people in each node at each time step where each row represents one person. variantsXXX_afFPG.npy - This file is a two dimensional numpy array. It is an array of genomes where each row is an genome and each column is a 0 or 1. The ‘XXX’ will indicate the number of genome locations found in a single genome (i.e. 24, 100, etc.).
- class emodpy_malaria.reporters.builtin.ReportSimulationStats(class_name: str | None = None, parameters: dict = <factory>, Enabled: bool = True, Pretty_Format: bool = True)[source]#
Bases:
BuiltInReporter
Adds ReportSimulationStats to collect data on the computational performance of the model (duration, memory, number of persisted interventions, etc).
- class emodpy_malaria.reporters.builtin.ReportMicrosporidia(class_name: str | None = None, parameters: dict = <factory>, Enabled: bool = True, Pretty_Format: bool = True)[source]#
Bases:
BuiltInReporter
ReportMicrosporidia generates a ReportMicrosporidia.csv. It is a stratified report where the data is stratified by time, node, species and microsporidia strain; with columns of counts of vectors in each state for that stratification.