vector_migration_data
VectorMigrationData
Bases: MigrationData
Vector migration rate container.
Extends MigrationData with vector-specific constraints: - No age-dependent migration (enforced by EMOD for vectors) - InterpolationType forced to PIECEWISE_CONSTANT - Supports genetics-based migration via VECTOR_MIGRATION_BY_GENETICS
Three GenderDataType modes: - SAME_FOR_BOTH_GENDERS: 1 layer, same rates for male and female vectors - ONE_FOR_EACH_GENDER: 2 layers (male, female) - VECTOR_MIGRATION_BY_GENETICS: N layers, one per allele combination. The AgesYears metadata field is repurposed to store indices [0, 1, ...] into the rate layers, one per allele combination in AlleleCombinations.
Source code in emodpy_malaria/migration/vector_migration_data.py
21 22 23 24 25 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 | |
allele_combinations
property
List of allele combinations for genetics-based migration, or None for standard modes.
Each entry is a list of allele pairs (list of [allele1, allele2] lists). Index 0 is always the default (empty list).
apply_modifier(ages, modifier_fn)
Not supported for vector migration — vectors do not have age-dependent rates.
Source code in emodpy_malaria/migration/vector_migration_data.py
from_genetics(allele_combos_rates, idref='')
classmethod
Create genetics-based vector migration data.
Each allele combination gets its own rate layer. EMOD matches a vector's genome against the allele combinations (most specific first) to select which rate layer to use.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
allele_combos_rates
|
dict
|
dict mapping allele combination tuples to rate dicts.
Keys are tuples of allele pairs. The empty tuple |
required |
idref
|
str
|
IdReference string |
''
|
Returns:
| Type | Description |
|---|---|
VectorMigrationData
|
VectorMigrationData with GenderDataType=VECTOR_MIGRATION_BY_GENETICS |
Source code in emodpy_malaria/migration/vector_migration_data.py
from_gravity_model(demographics, gravity_params, female_multiplier=None)
classmethod
Generate vector migration rates from a gravity model.
Uses node population and geodesic distance. Identical to human gravity model but restricted to vector migration constraints (no age layers).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
demographics
|
object
|
Demographics object with .nodes and .idref |
required |
gravity_params
|
list[float]
|
list of 4 floats [g0, g1, g2, g3]. rate = g0 * from_pop^g1 * to_pop^g2 * distance_km^g3, capped at 1.0 |
required |
female_multiplier
|
float
|
if provided, creates ONE_FOR_EACH_GENDER data where female_rate = male_rate * female_multiplier |
None
|
Returns:
| Type | Description |
|---|---|
VectorMigrationData
|
VectorMigrationData |
Source code in emodpy_malaria/migration/vector_migration_data.py
from_migration_file(binary_path, metafile=None)
classmethod
Load vector migration data from an existing EMOD binary + JSON metadata file.
Handles all three GenderDataType modes including VECTOR_MIGRATION_BY_GENETICS with AlleleCombinations in metadata.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
binary_path
|
Union[str, Path]
|
path to the binary migration file |
required |
metafile
|
Union[str, Path]
|
path to JSON metadata file (default: binary_path + ".json") |
None
|
Returns:
| Type | Description |
|---|---|
VectorMigrationData
|
VectorMigrationData |
Source code in emodpy_malaria/migration/vector_migration_data.py
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 | |
from_rates(rates, idref='', female_rates=None)
classmethod
Create vector migration data from explicit rate dictionaries.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
rates
|
dict
|
dict of {(from_node_id, to_node_id): rate} for male vectors (or all vectors if female_rates is None) |
required |
idref
|
str
|
IdReference string |
''
|
female_rates
|
dict
|
optional dict of {(from_node_id, to_node_id): rate} for female vectors. If provided, creates ONE_FOR_EACH_GENDER data. |
None
|
Returns:
| Type | Description |
|---|---|
VectorMigrationData
|
VectorMigrationData |
Source code in emodpy_malaria/migration/vector_migration_data.py
to_migration_file(path, migration_type=MigrationType.LOCAL, interpolation_type=None, value_limit=100)
Write vector migration data to EMOD binary format with JSON metadata sidecar.
InterpolationType is always PIECEWISE_CONSTANT for vector migration (the interpolation_type parameter is ignored).
For VECTOR_MIGRATION_BY_GENETICS mode, writes AlleleCombinations to metadata and uses AgesYears as allele combo indices.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
Union[str, Path]
|
output path for the binary file (metadata written to path + ".json") |
required |
migration_type
|
Union[MigrationType, str]
|
MigrationType enum or string. Default LOCAL. |
LOCAL
|
interpolation_type
|
object
|
ignored — always PIECEWISE_CONSTANT for vectors |
None
|
value_limit
|
int
|
max destinations per source node (default 100) |
100
|
Returns:
| Type | Description |
|---|---|
Path
|
Path to binary file |
Source code in emodpy_malaria/migration/vector_migration_data.py
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 | |