2022-02-18 06:55:14 +00:00
|
|
|
process SAMPLESHEET_CHECK {
|
|
|
|
tag "$samplesheet"
|
2023-03-02 12:34:10 +00:00
|
|
|
label 'process_single'
|
2022-02-18 06:55:14 +00:00
|
|
|
|
2022-12-19 12:10:58 +00:00
|
|
|
conda "conda-forge::python=3.8.3"
|
2022-02-18 06:55:14 +00:00
|
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
|
|
|
'https://depot.galaxyproject.org/singularity/python:3.8.3' :
|
|
|
|
'quay.io/biocontainers/python:3.8.3' }"
|
|
|
|
|
|
|
|
input:
|
|
|
|
path samplesheet
|
|
|
|
|
|
|
|
output:
|
|
|
|
path '*.csv' , emit: csv
|
|
|
|
path "versions.yml", emit: versions
|
|
|
|
|
2023-03-02 12:34:10 +00:00
|
|
|
when:
|
|
|
|
task.ext.when == null || task.ext.when
|
|
|
|
|
2022-02-18 06:55:14 +00:00
|
|
|
script: // This script is bundled with the pipeline, in nf-core/taxprofiler/bin/
|
|
|
|
"""
|
|
|
|
check_samplesheet.py \\
|
|
|
|
$samplesheet \\
|
|
|
|
samplesheet.valid.csv
|
|
|
|
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
|
|
"${task.process}":
|
|
|
|
python: \$(python --version | sed 's/Python //g')
|
|
|
|
END_VERSIONS
|
|
|
|
"""
|
|
|
|
}
|