Skip to content

Commit

Permalink
fixy 3
Browse files Browse the repository at this point in the history
  • Loading branch information
adamrtalbot authored Aug 15, 2023
1 parent 3f12b47 commit cf4e9e9
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 37 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"nextflow.nextflow",
"esbenp.prettier-vscode",
"redhat.vscode-yaml",
"GitHub.vscode-pull-request-github",
"GitHub.vscode-pull-request-github",
"github.vscode-github-actions"
]
}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Prettier Action
uses: creyD/prettier_action@v4.3
with:
prettier_options: '--write *'
prettier_options: "--write '*'"

- name: Run Prettier --check
run: prettier --check .
Expand Down
69 changes: 34 additions & 35 deletions nextflow_schema.json
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"
}
]
}

0 comments on commit cf4e9e9

Please sign in to comment.