Skip to content

Commit

Permalink
Merge pull request #1875 from drpatelh/boom
Browse files Browse the repository at this point in the history
Fix lint warnings for samplesheet_check.nf module
  • Loading branch information
ewels authored Oct 5, 2022
2 parents 2fa3af7 + bc670f2 commit 0d9099d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

### Template

- Fix lint warnings for `samplesheet_check.nf` module

### Linting

### General
Expand Down
4 changes: 4 additions & 0 deletions nf_core/pipeline-template/modules/local/samplesheet_check.nf
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
process SAMPLESHEET_CHECK {
tag "$samplesheet"
label 'process_single'

conda (params.enable_conda ? "conda-forge::python=3.8.3" : null)
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
Expand All @@ -13,6 +14,9 @@ process SAMPLESHEET_CHECK {
path '*.csv' , emit: csv
path "versions.yml", emit: versions

when:
task.ext.when == null || task.ext.when

script: // This script is bundled with the pipeline, in {{ name }}/bin/
"""
check_samplesheet.py \\
Expand Down

0 comments on commit 0d9099d

Please sign in to comment.