Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Re-enable schema linting #354

Merged
merged 2 commits into from
Aug 12, 2024
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
3 changes: 0 additions & 3 deletions .nf-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,3 @@ lint:
- .github/ISSUE_TEMPLATE/bug_report.yml
files_exist:
- lib/Utils.groovy
# TODO This is because of an issue with the monochromeLogs parameter
# See nextflow.config for details
schema_params: False
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- Re-enable linting check for nextflow schema ([#354](https://github.com/nf-core/scrnaseq/pull/354))
- Add support for 10XV4 chemistry ([#348](https://github.com/nf-core/scrnaseq/pull/348))
- Fix issues with predefined STAR index ([#350](https://github.com/nf-core/scrnaseq/pull/350))
- Update modules ([#351](https://github.com/nf-core/scrnaseq/pull/351))
Expand Down
7 changes: 2 additions & 5 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ params {
genome = null
transcript_fasta = null
txp2gene = null
fasta = null
gtf = null

// salmon alevin parameters (simpleaf)
simpleaf_rlen = 91
Expand Down Expand Up @@ -114,11 +116,6 @@ params {
validationShowHiddenParams = false
validate_params = true

// TODO temporary workaround a warning
// not used anywhere and should not be necessary anymore after a nf-validation plugin update
// TODO when removing this, also remove the ignored lint check from .nf-core.yml
monochromeLogs = null

}

// Load base.config by default for all pipelines
Expand Down
Loading