2022-02-19 11:36:08 +00:00
|
|
|
process DATABASE_CHECK {
|
|
|
|
tag "$databasesheet"
|
2022-12-08 13:18:23 +00:00
|
|
|
label 'process_single'
|
2022-02-18 06:55:14 +00:00
|
|
|
|
|
|
|
conda (params.enable_conda ? "conda-forge::python=3.8.3" : null)
|
|
|
|
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:
|
2022-02-19 11:36:08 +00:00
|
|
|
path databasesheet
|
2022-02-18 06:55:14 +00:00
|
|
|
|
|
|
|
output:
|
|
|
|
path '*.csv' , emit: csv
|
|
|
|
path "versions.yml", emit: versions
|
|
|
|
|
2022-12-08 13:18:23 +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/
|
|
|
|
"""
|
2022-02-19 11:36:08 +00:00
|
|
|
cat $databasesheet >> database_sheet.valid.csv
|
2022-02-18 06:55:14 +00:00
|
|
|
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
|
|
"${task.process}":
|
|
|
|
python: \$(python --version | sed 's/Python //g')
|
|
|
|
END_VERSIONS
|
|
|
|
"""
|
|
|
|
}
|