Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
- Remove `aws_tower` profile ([#2287])(https://github.com/nf-core/tools/pull/2287)
- Fixed the Slack report to include the pipeline name ([#2291](https://github.com/nf-core/tools/pull/2291))
- Fix link in the MultiQC report to point to exact version of output docs ([#2298](https://github.com/nf-core/tools/pull/2298))
- Remove schema validation from `lib` folder and use Nextflow [nf-validation plugin](https://nextflow-io.github.io/nf-validation/) instead ([#1771](https://github.com/nf-core/tools/pull/1771/))

### Download

Expand Down
2 changes: 0 additions & 2 deletions nf_core/lint/files_exist.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ def files_exist(self):
docs/README.md
docs/usage.md
lib/nfcore_external_java_deps.jar
lib/NfcoreSchema.groovy
lib/NfcoreTemplate.groovy
lib/Utils.groovy
lib/WorkflowMain.groovy
Expand Down Expand Up @@ -161,7 +160,6 @@ def files_exist(self):
[os.path.join("docs", "README.md")],
[os.path.join("docs", "usage.md")],
[os.path.join("lib", "nfcore_external_java_deps.jar")],
[os.path.join("lib", "NfcoreSchema.groovy")],
[os.path.join("lib", "NfcoreTemplate.groovy")],
[os.path.join("lib", "Utils.groovy")],
[os.path.join("lib", "WorkflowMain.groovy")],
Expand Down
2 changes: 0 additions & 2 deletions nf_core/lint/files_unchanged.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ def files_unchanged(self):
docs/images/nf-core-PIPELINE_logo_dark.png
docs/README.md'
lib/nfcore_external_java_deps.jar
lib/NfcoreSchema.groovy
lib/NfcoreTemplate.groovy
['LICENSE', 'LICENSE.md', 'LICENCE', 'LICENCE.md'], # NB: British / American spelling

Expand Down Expand Up @@ -105,7 +104,6 @@ def files_unchanged(self):
[os.path.join("docs", "images", f"nf-core-{short_name}_logo_dark.png")],
[os.path.join("docs", "README.md")],
[os.path.join("lib", "nfcore_external_java_deps.jar")],
[os.path.join("lib", "NfcoreSchema.groovy")],
[os.path.join("lib", "NfcoreTemplate.groovy")],
]
files_partial = [
Expand Down
8 changes: 4 additions & 4 deletions nf_core/lint/nextflow_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,11 @@ def nextflow_config(self):
* Should always be set to default value:
``https://raw.githubusercontent.com/nf-core/configs/${params.custom_config_version}``

* ``params.show_hidden_params``
* ``params.validationShowHiddenParams``

* Determines whether boilerplate params are showed by schema. Set to ``false`` by default

* ``params.schema_ignore_params``
* ``params.validationSchemaIgnoreParams``

* A comma separated string of inputs the schema validation should ignore.

Expand Down Expand Up @@ -130,8 +130,8 @@ def nextflow_config(self):
["process.time"],
["params.outdir"],
["params.input"],
["params.show_hidden_params"],
["params.schema_ignore_params"],
["params.validationShowHiddenParams"],
["params.validationSchemaIgnoreParams"],
]
# Throw a warning if these are missing
config_warn = [
Expand Down
Loading