mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
938387d10d
* feat: add hmmsearch module and tests * chore: set medium resource requirements * tests: look for correct output * fix: add when condition * Apply suggestions to meta.yml Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> * refactor: create gzip compressed output * docs: describe compressed in-/output Co-authored-by: James A. Fellows Yates <jfy133@gmail.com>
51 lines
1.7 KiB
Text
51 lines
1.7 KiB
Text
process HMMER_HMMSEARCH {
|
|
tag "$meta.id"
|
|
label 'process_medium'
|
|
|
|
conda (params.enable_conda ? "bioconda::hmmer=3.3.2" : null)
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
|
'https://depot.galaxyproject.org/singularity/hmmer:3.3.2--h1b792b2_1' :
|
|
'quay.io/biocontainers/hmmer:3.3.2--h1b792b2_1' }"
|
|
|
|
input:
|
|
tuple val(meta), path(hmmfile), path(seqdb), val(write_align), val(write_target), val(write_domain)
|
|
|
|
output:
|
|
tuple val(meta), path('*.txt.gz') , emit: output
|
|
tuple val(meta), path('*.sto.gz') , emit: alignments , optional: true
|
|
tuple val(meta), path('*.tbl.gz') , emit: target_summary, optional: true
|
|
tuple val(meta), path('*.domtbl.gz'), emit: domain_summary, optional: true
|
|
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}"
|
|
output = "${prefix}.txt"
|
|
alignment = write_align ? "-A ${prefix}.sto" : ''
|
|
target_summary = write_target ? "--tblout ${prefix}.tbl" : ''
|
|
domain_summary = write_domain ? "--domtblout ${prefix}.domtbl" : ''
|
|
"""
|
|
hmmsearch \\
|
|
$args \\
|
|
--cpu $task.cpus \\
|
|
-o $output \\
|
|
$alignment \\
|
|
$target_summary \\
|
|
$domain_summary \\
|
|
$hmmfile \\
|
|
$seqdb
|
|
|
|
gzip --no-name *.txt \\
|
|
${write_align ? '*.sto' : ''} \\
|
|
${write_target ? '*.tbl' : ''} \\
|
|
${write_domain ? '*.domtbl' : ''}
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
"${task.process}":
|
|
hmmer: \$(hmmsearch -h | grep -o '^# HMMER [0-9.]*' | sed 's/^# HMMER *//')
|
|
END_VERSIONS
|
|
"""
|
|
}
|