-
Notifications
You must be signed in to change notification settings - Fork 3
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
1 parent
3f12b47
commit cf4e9e9
Showing
3 changed files
with
36 additions
and
37 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
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 |
---|---|---|
@@ -1,38 +1,37 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema", | ||
"$id": "https://raw.githubusercontent.com/./master/nextflow_schema.json", | ||
"title": ". pipeline parameters", | ||
"description": "", | ||
"type": "object", | ||
"definitions": { | ||
"parameters": { | ||
"title": "Parameters", | ||
"type": "object", | ||
"description": "", | ||
"default": "", | ||
"properties": { | ||
"skip": { | ||
"type": "string", | ||
"description": "Tests to skip as comma delimited values.", | ||
"help_text": "Tests to skip as comma delimited values. E.g. --skip TEST_SUCCESS,TEST_INPUT. Case insensitive." | ||
}, | ||
"remoteFile": { | ||
"type": "string", | ||
"description": "Path to remote file to download and use.", | ||
"help_text": "Path to a remote file to use within the pipeline. This mimics a remote set of files such as reference data that may need to be retrieved prior to analysis. By default this is not specified and the test is not ran, add a remote file using standard Nextflow filenaming to pull a file from your storage (e.g. an S3 bucket or shared storage).", | ||
"format": "path" | ||
}, | ||
"outdir": { | ||
"type": "string", | ||
"description": "Path to use for publishing output files.", | ||
"help_text": "Path to a remote folder to publish files to. If not specified, this is a subfolder within the working directory but if specified it will publish files to the path specified in this parameter." | ||
"$schema": "http://json-schema.org/draft-07/schema", | ||
"$id": "https://raw.githubusercontent.com/./master/nextflow_schema.json", | ||
"title": ". pipeline parameters", | ||
"description": "", | ||
"type": "object", | ||
"definitions": { | ||
"parameters": { | ||
"title": "Parameters", | ||
"type": "object", | ||
"description": "", | ||
"default": "", | ||
"properties": { | ||
"skip": { "type": "string", | ||
"description": "Tests to skip as comma delimited values.", | ||
"help_text": "Tests to skip as comma delimited values. E.g. --skip TEST_SUCCESS,TEST_INPUT. Case insensitive." | ||
}, | ||
"remoteFile": { | ||
"type": "string", | ||
"description": "Path to remote file to download and use.", | ||
"help_text": "Path to a remote file to use within the pipeline. This mimics a remote set of files such as reference data that may need to be retrieved prior to analysis. By default this is not specified and the test is not ran, add a remote file using standard Nextflow filenaming to pull a file from your storage (e.g. an S3 bucket or shared storage).", | ||
"format": "path" | ||
}, | ||
"outdir": { | ||
"type": "string", | ||
"description": "Path to use for publishing output files.", | ||
"help_text": "Path to a remote folder to publish files to. If not specified, this is a subfolder within the working directory but if specified it will publish files to the path specified in this parameter." | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"allOf": [ | ||
{ | ||
"$ref": "#/definitions/parameters" | ||
} | ||
] | ||
}, | ||
"allOf": [ | ||
{ | ||
"$ref": "#/definitions/parameters" | ||
} | ||
] | ||
} |