malaria_demographics
MalariaDemographics
Bases: Demographics
Malaria-specific demographics, extending emodpy's Demographics.
Uses MalariaNode instead of plain Node so that malaria-only demographics distributions (risk, innate immune) are available.
Adds features:
set_fertility_distribution()— age-and-year pregnancy ratesset_risk_distribution()— heterogeneous biting risk via demographicsset_innate_immune_distribution()— heterogeneous innate immunityset_initial_prevalence_distribution()— initial infection prevalenceset_migration_heterogeneity()— per-individual migration rate heterogeneityadd_vector_migration()— per-species vector migrationadd_weather()— weather files with node/idref validation
Inherited from base (see DemographicsBase):
set_age_distribution()— initial age distribution (simple or complex)set_mortality_distribution()— gendered mortality (complex)set_susceptibility_distribution()— susceptibility (simple or complex)
Source code in emodpy_malaria/demographics/malaria_demographics.py
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 | |
__init__(nodes, idref=None, default_node=None, set_defaults=True)
Object representation of an EMOD Demographics input (json) file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
nodes
|
list[Node]
|
list(Node) nodes to include in the Demographics object. |
required |
idref
|
str
|
(string, optional) an identifier for the Demographics file. Used to co-identify sets of Demographics/overlay files as well as migration and weather files. No value will utilize a default (via inheritance). |
None
|
default_node
|
Node
|
(Node, optional) Represents default values for all nodes, unless overridden on a per-node basis. If not provided, one will be generated by the superclass. |
None
|
set_defaults
|
bool
|
(bool) Whether to set default node attributes on the default node. Defaults to True. Should always be True unless loading via Demographics.from_file() (to replicate in-file data fully). |
True
|
Source code in emodpy_malaria/demographics/malaria_demographics.py
add_vector_migration(data, species, *, vector_migration_filename_path=None, x_vector_migration=None, filename=None)
Add vector migration for a species.
Provide either data (a VectorMigrationData
object) or vector_migration_filename_path (path to an existing binary file),
not both. The migration file is registered for inclusion in task assets, and an
implicit config function is registered to set the per-species parameters at task
build time.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
object
|
VectorMigrationData object, or None if using vector_migration_filename_path. |
required |
species
|
str
|
Species Name to target. |
required |
vector_migration_filename_path
|
str
|
Path to a pre-existing binary migration file.
Mutually exclusive with |
None
|
x_vector_migration
|
float
|
Scale factor for the rate of vector migration to other nodes. |
None
|
filename
|
str
|
Output path for the binary file when using |
None
|
Source code in emodpy_malaria/demographics/malaria_demographics.py
add_weather(data, *, prefix='', update_resolution=ClimateUpdateResolution.CLIMATE_UPDATE_DAY, air_temperature_offset=0.0, air_temperature_variance=0.0, rainfall_scale_factor=1.0, relative_humidity_scale_factor=1.0, relative_humidity_variance=0.0, enable_rainfall_stochasticity=False)
Add weather data files and configure CLIMATE_BY_DATA mode.
Validates that weather data nodes match demographics nodes. Sets the
weather files' IdReference to the demographics idref. Writes
three .bin / .bin.json file pairs (air temperature, rainfall,
relative humidity), registers them as simulation assets, and sets
climate config parameters at task build time.
File names are generated automatically based on update_resolution
(e.g. airtemp_daily.bin, rainfall_monthly.bin). An optional
prefix is prepended to each file name
(e.g. prefix="era5_" produces era5_airtemp_daily.bin).
Land_Temperature_Filename is set to the air temperature file —
EMOD requires it but does not use it for malaria simulations.
Enable_Climate_Stochasticity is set automatically when any
variance is non-zero or rainfall stochasticity is enabled.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
WeatherSet
|
WeatherSet containing air temperature, rainfall, and relative humidity. |
required |
prefix
|
str
|
String prepended to each weather file name. Default
|
''
|
update_resolution
|
ClimateUpdateResolution
|
Climate update frequency. Default
|
CLIMATE_UPDATE_DAY
|
air_temperature_offset
|
float
|
Additive offset applied to all air temperature values (Celsius). |
0.0
|
air_temperature_variance
|
float
|
Standard deviation (Celsius) for Gaussian noise on daily air temperature. |
0.0
|
rainfall_scale_factor
|
float
|
Multiplicative factor applied to all rainfall values. |
1.0
|
relative_humidity_scale_factor
|
float
|
Multiplicative factor applied to all relative humidity values. |
1.0
|
relative_humidity_variance
|
float
|
Standard deviation (fraction) for Gaussian noise on daily relative humidity. |
0.0
|
enable_rainfall_stochasticity
|
bool
|
Draw daily rainfall from an exponential distribution with mean equal to the data value. |
False
|
Source code in emodpy_malaria/demographics/malaria_demographics.py
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 | |
from_file(path)
classmethod
Load a MalariaDemographics from an existing demographics JSON file.
Uses MalariaNode so that malaria-specific distributions (risk, innate immune) are preserved when loading from file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
str
|
Path to an EMOD demographics JSON file. |
required |
Returns:
| Type | Description |
|---|---|
MalariaDemographics
|
A MalariaDemographics instance. |
Source code in emodpy_malaria/demographics/malaria_demographics.py
from_template_node(lat=0, lon=0, pop=1000000, name='Erewhon', forced_id=1)
classmethod
Create a single-node MalariaDemographics using a MalariaNode.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
lat
|
float
|
Latitude of the node. Default 0. |
0
|
lon
|
float
|
Longitude of the node. Default 0. |
0
|
pop
|
int
|
Initial population. Default 1,000,000. |
1000000
|
name
|
str
|
Node name. Default |
'Erewhon'
|
forced_id
|
int
|
Node ID. Default 1. |
1
|
Returns:
| Type | Description |
|---|---|
MalariaDemographics
|
A new MalariaDemographics instance. |
Source code in emodpy_malaria/demographics/malaria_demographics.py
set_fertility_distribution(distribution, node_ids=None)
Set a fertility distribution for individual-pregnancy birth rates.
The fertility distribution defines age-and-year-specific pregnancy
rates for women of reproductive age. Automatically sets
Birth_Rate_Dependence = "INDIVIDUAL_PREGNANCIES_BY_AGE_AND_YEAR"
at task build time.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
distribution
|
FertilityDistribution
|
A FertilityDistribution defining age-and-year-specific pregnancy rates. |
required |
node_ids
|
list[int]
|
Node id(s) to apply to. |
None
|
Raises:
| Type | Description |
|---|---|
TypeError
|
If distribution is not a FertilityDistribution. |
Source code in emodpy_malaria/demographics/malaria_demographics.py
set_initial_prevalence_distribution(distribution, node_ids=None)
Set the initial infection prevalence distribution per simulation.
Each node starts with its own initial prevalence, a value drawn from this distribution at the start of the simulation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
distribution
|
BaseDistribution
|
A
BaseDistribution
defining the simple distribution for initial prevalence values.
Valid distributions: |
required |
node_ids
|
list[int]
|
Node id(s) to apply to. |
None
|
Raises:
| Type | Description |
|---|---|
TypeError
|
If distribution is not a BaseDistribution. |
Source code in emodpy_malaria/demographics/malaria_demographics.py
set_innate_immune_distribution(distribution, innate_immune_variation_type, node_ids=None)
Set the innate immune distribution for heterogeneous innate immunity.
Each individual is assigned an innate-immunity modifier drawn from distribution at initialization.
For EMOD parameter details, see Innate immune variation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
distribution
|
Optional[BaseDistribution]
|
A
BaseDistribution
defining the simple distribution for innate-immunity modifier values.
Must be |
required |
innate_immune_variation_type
|
Union[InnateImmuneVariationType, str]
|
How the drawn value modifies innate
immunity. Accepts a InnateImmuneVariationType
member or its string value.
|
required |
node_ids
|
list[int]
|
Node id(s) to apply to. |
None
|
Raises:
| Type | Description |
|---|---|
TypeError
|
If distribution is not a BaseDistribution for types other than
|
ValueError
|
If innate_immune_variation_type is |
Source code in emodpy_malaria/demographics/malaria_demographics.py
415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 | |
set_migration_heterogeneity(distribution, node_ids=None)
Set the migration heterogeneity distribution.
Each individual is assigned a migration rate multiplier drawn from this distribution at creation/birth. Values >1 increase migration frequency relative to the base rate; values <1 reduce it.
Human migration rates must be configured separately via add_migration().
Note: This method is not specific to malaria and would ideally live in
emodpy or emod-api so that downstream modules such as
emodpy-hiv can reuse it without duplicating the implementation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
distribution
|
BaseDistribution
|
A
BaseDistribution
defining the simple distribution for per-individual migration rate multipliers.
Valid distributions: |
required |
node_ids
|
list[int]
|
Node id(s) to apply to. |
None
|
Raises:
| Type | Description |
|---|---|
TypeError
|
If distribution is not a BaseDistribution. |
Source code in emodpy_malaria/demographics/malaria_demographics.py
set_risk_distribution(distribution, node_ids=None)
Set the risk distribution for demographics-based heterogeneous biting.
Each individual is assigned a risk multiplier drawn from this distribution at initialization/birth, scaling their probability of being bitten relative to others.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
distribution
|
BaseDistribution
|
A
BaseDistribution
defining the simple distribution for individual risk values.
Valid distributions: |
required |
node_ids
|
list[int]
|
Node id(s) to apply to. |
None
|
Raises:
| Type | Description |
|---|---|
TypeError
|
If distribution is not a BaseDistribution. |