nf-core_modules/modules/epang/main.nf
Daniel Lundin 74b569b66a
Add epang/place (#2023)
* Created epang module from template

* Module seems to be working

* Namechange to epang_place

* Move model to meta map

* Fix linting problems

* Prettier

* Forgot --threads!

* Moved module to epang

* Move reference file params

* Directory output

* Make all args optional

* Added inputs for three other types of file arguments

* Update modules/epang/main.nf

Co-authored-by: James A. Fellows Yates <jfy133@gmail.com>

* Add directory to output doc, reorder the other

* Make model specification less hardcoded

Co-authored-by: James A. Fellows Yates <jfy133@gmail.com>
2022-09-08 10:05:57 +02:00

56 lines
2 KiB
Text

process EPANG {
tag "$meta.id"
label 'process_high'
conda (params.enable_conda ? "bioconda::epa-ng=0.3.8" : null)
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/epa-ng:0.3.8--h9a82719_1':
'quay.io/biocontainers/epa-ng:0.3.8--h9a82719_1' }"
input:
tuple val(meta), path(queryaln)
path referencealn
path referencetree
path bfastfile
path splitfile
path binaryfile
output:
tuple val(meta), path("./."), emit: epang , optional: true
path "*.epa_result.jplace" , emit: jplace , optional: true
path "*.epa_info.log" , emit: log
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}"
def queryarg = queryaln ? "--query $queryaln" : ""
def refalnarg = referencealn ? "--ref-msa $referencealn" : ""
def reftreearg = referencetree ? "--tree $referencetree" : ""
def bfastarg = bfastfile ? "--bfast $bfastfile" : ""
def splitarg = splitfile ? "--split $splitfile" : ""
def binaryarg = binaryfile ? "--binary $binaryfile" : ""
if ( binaryfile && ( referencealn || referencetree ) ) error "[EPANG] Cannot supply both binary and reference MSA or reference tree. Check input"
"""
epa-ng \\
$args \\
--threads $task.cpus \\
$queryarg \\
$refalnarg \\
$reftreearg \\
$bfastarg \\
$splitarg \\
$binaryarg
[ -e epa_result.jplace ] && mv epa_result.jplace ${prefix}.epa_result.jplace
[ -e epa_info.log ] && mv epa_info.log ${prefix}.epa_info.log
cat <<-END_VERSIONS > versions.yml
"${task.process}":
epang: \$(echo \$(epa-ng --version 2>&1) | sed 's/^EPA-ng v//')
END_VERSIONS
"""
}