diff --git a/docs/execution_json.rst b/docs/execution_json.rst index cd0c87d4a..126c834ef 100644 --- a/docs/execution_json.rst +++ b/docs/execution_json.rst @@ -125,6 +125,12 @@ Shell command-specific :command: - + - a pair of nested double quotes are allowed + - (e.g. + + :: + + "command": "echo \"haha\" > outfile" Snakemake-specific @@ -138,6 +144,23 @@ Snakemake-specific - It is highly recommended to use the official Snakemake Docker image (``quay.io/snakemake/snakemake``) +:command: + - This is a required field. + - Most likely it will be ``snakemake`` but it can be run with other ``snakemake`` otions. + - (e.g. + + :: + + "command": "snakemake --use-conda" + + - a pair of nested double quotes are allowed + - (e.g. + + :: + + "command": "snakemake --config=region=\"22:30000000-40000000\" + + :snakemake_main_filename: - This is a required field. - Most likely it will be ``Snakefile`` (do not include directory name).