mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
37 lines
999 B
Text
37 lines
999 B
Text
|
process MSISENSOR2_SCAN {
|
||
|
tag '$fasta'
|
||
|
label 'process_medium'
|
||
|
|
||
|
conda (params.enable_conda ? "bioconda::msisensor2=0.1" : null)
|
||
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
||
|
'https://depot.galaxyproject.org/singularity/msisensor2:0.1--hd03093a_0':
|
||
|
'quay.io/biocontainers/msisensor2:0.1--hd03093a_0' }"
|
||
|
|
||
|
input:
|
||
|
path fasta
|
||
|
val output
|
||
|
|
||
|
output:
|
||
|
path output_path , emit: scan
|
||
|
path "versions.yml", emit: versions
|
||
|
|
||
|
when:
|
||
|
task.ext.when == null || task.ext.when
|
||
|
|
||
|
script:
|
||
|
def args = task.ext.args ?: ''
|
||
|
def inputs = fasta.collect{ "-d $it"}.join(" ")
|
||
|
output_path = output ?: "output.scan"
|
||
|
"""
|
||
|
msisensor2 scan \\
|
||
|
$args \\
|
||
|
$inputs \\
|
||
|
-o $output_path
|
||
|
|
||
|
cat <<-END_VERSIONS > versions.yml
|
||
|
"${task.process}":
|
||
|
msisensor2: \$(echo \$(msisensor2 2> >(grep Version) | sed 's/Version: v//g'))
|
||
|
END_VERSIONS
|
||
|
"""
|
||
|
}
|