Changed schema and config_example.json to do N number of simulations

This commit is contained in:
Alberto Soutullo Rendo 2022-11-29 13:21:31 +01:00
parent 65065f3f1e
commit a46630a45d
2 changed files with 9 additions and 2 deletions

View File

@ -1,7 +1,9 @@
{
"arguments": {
"output-format": "csv",
"output-file": "test"
"output-file": "test",
"output-folder": "folder",
"number-of-simulations": 3
},
"simulation": {
"consensus_settings": {

View File

@ -12,6 +12,11 @@
},
"output-file": {
"type": "string"
},
"number-of-simulations" : {
"type": "number"
}
}
},
"required": ["output-format", "output-file", "number-of-simulations"],
"aditionalProperties": false
}