-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
``miniwdl input_template`` | ||
=============== | ||
|
||
``miniwdl input_template`` generates a JSON skeleton for the inputs required to run a given WDL. Once the template is filled out, the JSON can be used with `miniwdl run ... -i INPUT.json`. | ||
|
||
.. code-block:: bash | ||
$ miniwdl input-template path/to/my.wdl > my_inputs.json | ||
$ vim my_inputs.json # edit template | ||
$ miniwdl run path/to/my.wdl -i my_inputs.json | ||
Currently, the template includes only the WDL's required inputs (not the optional ones). | ||
|
||
|
||
Command line | ||
------------ | ||
|
||
.. argparse:: | ||
:module: WDL.CLI | ||
:func: create_arg_parser | ||
:prog: miniwdl | ||
:path: input_template | ||
:nodescription: | ||
:nodefaultconst: |