Skip to content

Commit

Permalink
updated linting
Browse files Browse the repository at this point in the history
  • Loading branch information
nvnieuwk committed Dec 12, 2022
1 parent db09c67 commit 2e4d5c9
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .nf-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ lint:
- .github/ISSUE_TEMPLATE/config.yml
- .github/workflows/awstest.yml
- .github/workflows/awsfulltest.yml
- lib/WorkflowNf-cmgg-germline.groovy
nextflow_config:
- manifest.name
- manifest.homePage
Expand All @@ -25,3 +26,4 @@ lint:
- lib/NfcoreTemplate.groovy
- .prettierignore
actions_ci: false
pipeline_name_conventions: false
21 changes: 17 additions & 4 deletions nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@
"type": "object",
"fa_icon": "fas fa-terminal",
"description": "Define where the pipeline should find input data and save output data.",
"required": ["input", "outdir"],
"required": [
"input",
"outdir"
],
"properties": {
"input": {
"type": "string",
Expand Down Expand Up @@ -157,7 +160,9 @@
"description": "Whether the samples should be converted to a gemini database"
}
},
"required": ["scatter_size"]
"required": [
"scatter_size"
]
},
"module_specific_parameters": {
"title": "Module specific parameters",
Expand Down Expand Up @@ -292,7 +297,14 @@
"description": "Method used to save pipeline results to output directory.",
"help_text": "The Nextflow `publishDir` option specifies which intermediate files should be saved to the output directory. This option tells the pipeline what method should be used to move these files. See [Nextflow docs](https://www.nextflow.io/docs/latest/process.html#publishdir) for details.",
"fa_icon": "fas fa-copy",
"enum": ["symlink", "rellink", "link", "copy", "copyNoFollow", "move"],
"enum": [
"symlink",
"rellink",
"link",
"copy",
"copyNoFollow",
"move"
],
"hidden": true
},
"email_on_fail": {
Expand Down Expand Up @@ -513,7 +525,8 @@
},
"vcfanno_lua": {
"type": "string",
"default": "None"
"default": "None",
"description": "[Annotate & VCFanno mode only] The path to a Lua script to be used in VCFanno"
},
"vcfanno_resources": {
"type": "string",
Expand Down

0 comments on commit 2e4d5c9

Please sign in to comment.