nf-core_modules/modules/bedtools/getfasta/main.nf
2022-02-04 09:53:32 +01:00

37 lines
975 B
Text

process BEDTOOLS_GETFASTA {
tag "$bed"
label 'process_medium'
conda (params.enable_conda ? "bioconda::bedtools=2.30.0" : null)
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/bedtools:2.30.0--hc088bd4_0' :
'quay.io/biocontainers/bedtools:2.30.0--hc088bd4_0' }"
input:
path bed
path fasta
output:
path "*.fa" , emit: fasta
path "versions.yml" , emit: versions
when:
task.ext.when == null || task.ext.when
script:
def args = task.ext.args ?: ''
def prefix = task.ext.prefix ?: "${bed.baseName}"
"""
bedtools \\
getfasta \\
$args \\
-fi $fasta \\
-bed $bed \\
-fo ${prefix}.fa
cat <<-END_VERSIONS > versions.yml
"${task.process}":
bedtools: \$(bedtools --version | sed -e "s/bedtools v//g")
END_VERSIONS
"""
}