mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
43 lines
1.4 KiB
Text
43 lines
1.4 KiB
Text
|
process BUSCO {
|
||
|
tag "$meta.id"
|
||
|
label 'process_medium'
|
||
|
|
||
|
conda (params.enable_conda ? "bioconda::busco=5.2.2" : null)
|
||
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
||
|
'https://depot.galaxyproject.org/singularity/busco:5.2.2--pyhdfd78af_0':
|
||
|
'quay.io/biocontainers/busco:5.2.2--pyhdfd78af_0' }"
|
||
|
|
||
|
input:
|
||
|
tuple val(meta), path(fasta)
|
||
|
path(augustus_config)
|
||
|
val(lineage)
|
||
|
|
||
|
output:
|
||
|
tuple val(meta), path("${meta.id}/run_*/full_table.tsv"), emit: tsv
|
||
|
tuple val(meta), path("${meta.id}/run_*/short_summary.txt"), emit: txt
|
||
|
path "versions.yml" , emit: versions
|
||
|
|
||
|
script:
|
||
|
def args = task.ext.args ?: ''
|
||
|
def prefix = task.ext.prefix ?: "${meta.id}"
|
||
|
if (lineage) args += " --lineage_dataset $lineage"
|
||
|
"""
|
||
|
# Ensure the input is uncompressed
|
||
|
gzip -cdf $fasta > __UNCOMPRESSED_FASTA_FILE__
|
||
|
# Copy the image's AUGUSTUS config directory if it was not provided to the module
|
||
|
[ ! -e augustus_config ] && cp -a /usr/local/config augustus_config
|
||
|
AUGUSTUS_CONFIG_PATH=augustus_config \\
|
||
|
busco \\
|
||
|
$args \\
|
||
|
--augustus \\
|
||
|
--cpu $task.cpus \\
|
||
|
--in __UNCOMPRESSED_FASTA_FILE__ \\
|
||
|
--out $meta.id
|
||
|
|
||
|
cat <<-END_VERSIONS > versions.yml
|
||
|
"${task.process}":
|
||
|
busco: \$( busco --version 2>&1 | sed 's/^BUSCO //' )
|
||
|
END_VERSIONS
|
||
|
"""
|
||
|
}
|