diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-01-12 15:28:17 +0100 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-01-12 15:28:17 +0100 |
commit | 94865648210a69544b049acf54991eba35d92c18 (patch) | |
tree | b343d1e88b1eedf66f0fe1fdfa54360114aaddbf /lib/cli.py | |
parent | 5d6f965c656466b99457fd3fea80183f2e81fa43 (diff) |
add --filter-observations
Diffstat (limited to 'lib/cli.py')
-rw-r--r-- | lib/cli.py | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -523,6 +523,12 @@ def add_standard_arguments(parser): "Note that this may remove entire function calls from the model.", ) parser.add_argument( + "--filter-observation", + metavar="<key>:<attribute>[,<key>:<attribute>...]", + type=str, + help="Only consider measurements of <key> <attribute>", + ) + parser.add_argument( "--ignore-param", metavar="<parameter name>[,<parameter name>,...]", type=str, |