Permalink
Please sign in to comment.
Browse files
Add IPython notebooks to docs.
- One demonstrating planemo basics. - One demonstrating experimental CWL support. Lots of documentation updates.
- Loading branch information...
Showing
with
4,847 additions
and 81 deletions.
- +14 −13 docs/_writing_intro.rst
- +2 −0 docs/commands.rst
- +68 −0 docs/commands/cwl_run.rst
- +25 −0 docs/commands/cwl_script.rst
- +2 −0 docs/commands/serve.rst
- +45 −42 docs/commands/shed_serve.rst
- +2 −0 docs/commands/shed_test.rst
- +2 −0 docs/commands/test.rst
- +2 −0 docs/commands/tool_factory.rst
- +1 −0 docs/commands/tool_init.rst
- +3,357 −0 docs/notebooks/basics.ipynb
- +1,183 −0 docs/notebooks/cwl.ipynb
- +16 −0 docs/planemo.commands.rst
- +22 −0 docs/planemo.cwl.rst
- +1 −0 docs/planemo.rst
- +30 −0 docs/planemo_ext.cwl2script.rst
- +1 −0 docs/planemo_ext.rst
- +2 −2 docs/writing/seqtk_seq_v1.xml
- +4 −4 docs/writing/seqtk_seq_v2.xml
- +16 −4 docs/writing/seqtk_seq_v3.xml
- +16 −4 docs/writing/seqtk_seq_v4.xml
- +17 −5 docs/writing/seqtk_seq_v5.xml
- +16 −4 docs/writing/seqtk_seq_v6.xml
- +3 −3 planemo/tool_builder.py
@@ -0,0 +1,68 @@ | |||
|
|||
``cwl_run`` command | |||
====================================== | |||
|
|||
This section is auto-generated from the help text for the planemo command | |||
``cwl_run``. This help message can be generated with ``planemo cwl_run | |||
--help``. | |||
|
|||
**Usage**:: | |||
|
|||
planemo cwl_run [OPTIONS] TOOL_PATH JOB_PATH | |||
|
|||
**Help** | |||
|
|||
Planemo command for running CWL tools and jobs. | |||
|
|||
:: | |||
|
|||
% planemo cwl_run cat1-tool.cwl cat-job.json | |||
|
|||
**Options**:: | |||
|
|||
|
|||
--galaxy_root DIRECTORY Root of development galaxy directory to | |||
execute command with. | |||
--galaxy_sqlite_database DIRECTORY | |||
Preseeded Galaxy sqlite database to target. | |||
--install_galaxy Download and configure a disposable copy of | |||
Galaxy from github. | |||
--no_cache_galaxy Skip caching of Galaxy source and | |||
dependencies obtained with --install_galaxy. | |||
Not caching this results in faster downloads | |||
(no git) - so is better on throw away | |||
instances such with TravisCI. | |||
--no_cleanup Do not cleanup temp files created for and by | |||
Galaxy. | |||
--job_config_file PATH Job configuration file for Galaxy to target. | |||
--port INTEGER Port to serve Galaxy on (default is 9090). | |||
--host TEXT Host to bind Galaxy to. Default is 127.0.0.1 | |||
that is restricted to localhost connections | |||
for security reasons set to 0.0.0.0 to bind | |||
Galaxy to all ports including potentially | |||
publicly accessible ones. | |||
--test_data DIRECTORY test-data directory to for specified | |||
tool(s). | |||
--tool_data_table PATH tool_data_table_conf.xml file to for | |||
specified tool(s). | |||
--dependency_resolvers_config_file PATH | |||
Dependency resolver configuration for Galaxy | |||
to target. | |||
--tool_dependency_dir DIRECTORY | |||
Tool dependency dir for Galaxy to target. | |||
--brew_dependency_resolution Configure Galaxy to use plain brew | |||
dependency resolution. | |||
--shed_dependency_resolution Configure Galaxy to use brewed Tool Shed | |||
dependency resolution. | |||
--cwl_galaxy_root DIRECTORY Root of development galaxy directory to | |||
execute command with (must be branch of | |||
Galaxy with CWL support, this option is | |||
experimental and will be replaced with | |||
--galaxy_root when and if CWL support is | |||
merged into Galaxy. | |||
--conformance-test Generate CWL conformance test object | |||
describing job. Required by CWL conformance | |||
test suite and implemented by cwltool | |||
reference implementation. | |||
--help Show this message and exit. | |||
@@ -0,0 +1,25 @@ | |||
|
|||
``cwl_script`` command | |||
====================================== | |||
|
|||
This section is auto-generated from the help text for the planemo command | |||
``cwl_script``. This help message can be generated with ``planemo cwl_script | |||
--help``. | |||
|
|||
**Usage**:: | |||
|
|||
planemo cwl_script [OPTIONS] TOOL_PATH JOB_PATH | |||
|
|||
**Help** | |||
|
|||
This compiles simple common workflow language workflows to a shell | |||
script. | |||
|
|||
**Options**:: | |||
|
|||
|
|||
--no_container | |||
--output_dir PATH | |||
--base_dir PATH | |||
--help Show this message and exit. | |||

Oops, something went wrong.
0 comments on commit
c8640b6