We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When providing inputs for WDL pipelines, we expect the inputs.json format instead on the wdl.config file currently provided.
inputs.json
wdl.config
Notice the differences with the "", commas (,) at the end of each line, and the '=' in the wdl.config is swapped out for the ':' in the inputs.json
Example of current file config.wdl:
config.wdl
params { test.hello.name = aasdajdad test.bye.nameTwo = asijdadads test.number.x = 2 test.greeter.morning = true test.wf_hello_in = bomba test.arrayTest = ["lala"] test.mapTest = {"some": "props"} }
Example of expected inputs.json:
{ "test.hello.name": "aasdajdad", "test.bye.nameTwo": "asijdadads", "test.number.x": 2, "test.greeter.morning": true, "test.wf_hello_in": "bomba", "test.arrayTest": ["lala"], "test.mapTest": {"some": "props"} }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When providing inputs for WDL pipelines, we expect the
inputs.json
format instead on thewdl.config
file currently provided.Notice the differences with the "", commas (,) at the end of each line, and the '=' in the
wdl.config
is swapped out for the ':' in theinputs.json
Example of current file
config.wdl
:Example of expected
inputs.json
:The text was updated successfully, but these errors were encountered: