mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
d16f1ea4d7
* add module for panaroo * update pirate test yaml * update panaroo test yaml * update pirate test yaml md5s * Update main.nf * Update main.nf * pin bioperl version
36 lines
1.1 KiB
Text
36 lines
1.1 KiB
Text
process PIRATE {
|
|
tag "$meta.id"
|
|
label 'process_medium'
|
|
|
|
conda (params.enable_conda ? "bioconda::pirate=1.0.4 bioconda::perl-bioperl=1.7.2" : null)
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
|
'https://depot.galaxyproject.org/singularity/pirate:1.0.4--hdfd78af_2' :
|
|
'quay.io/biocontainers/pirate:1.0.4--hdfd78af_2' }"
|
|
|
|
input:
|
|
tuple val(meta), path(gff)
|
|
|
|
output:
|
|
tuple val(meta), path("results/*") , emit: results
|
|
tuple val(meta), path("results/core_alignment.fasta"), optional: true, emit: aln
|
|
path "versions.yml" , emit: versions
|
|
|
|
when:
|
|
task.ext.when == null || task.ext.when
|
|
|
|
script:
|
|
def args = task.ext.args ?: ''
|
|
def prefix = task.ext.prefix ?: "${meta.id}"
|
|
"""
|
|
PIRATE \\
|
|
$args \\
|
|
--threads $task.cpus \\
|
|
--input ./ \\
|
|
--output results/
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
"${task.process}":
|
|
pirate: \$( echo \$( PIRATE --version 2>&1) | sed 's/PIRATE //' )
|
|
END_VERSIONS
|
|
"""
|
|
}
|