-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Labels
cliRelating to command line interfacesRelating to command line interfacesconfigRelating to configuration files or their framework.Relating to configuration files or their framework.enhancementRequest for improvement or addition of new feature(s).Request for improvement or addition of new feature(s).medium priorityMedium priority.Medium priority.
Description
Label
cli, config, enhancement
Priority Label
medium priority
Is your feature request related to a problem? Please describe.
It would be helpful if there was a way to provide templated variables to flepimop patch, either directly as key value pairs or by importing from a YAML file (or similar). Could use jinja2 templates since that is already a dependency of gempyor.
Is your feature request related to a new application, scenario round, pathogen? Please describe.
Would have been extremely helpful with the Flu SMH 2025/26 round.
Describe the solution you'd like
Suppose input.yaml is:
name: 'Example'
start_date: '{{ year }}-01-01'
end_date: '{{ year }}-12-31'Then calling
flepimop patch --data="year=2025" input.yaml > output.yamlWould produce a output.yaml file of:
name: 'Example'
start_date: '2025-01-01'
end_date: '2025-12-31'CLI interface could use some polishing/thinking before implmenting.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
cliRelating to command line interfacesRelating to command line interfacesconfigRelating to configuration files or their framework.Relating to configuration files or their framework.enhancementRequest for improvement or addition of new feature(s).Request for improvement or addition of new feature(s).medium priorityMedium priority.Medium priority.