mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
884c4658b8
Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
46 lines
1.5 KiB
Text
46 lines
1.5 KiB
Text
// Import generic module functions
|
|
include { initOptions; saveFiles; getSoftwareName } from './functions'
|
|
|
|
params.options = [:]
|
|
def options = initOptions(params.options)
|
|
|
|
process IVAR_CONSENSUS {
|
|
tag "$meta.id"
|
|
label 'process_medium'
|
|
publishDir "${params.outdir}",
|
|
mode: params.publish_dir_mode,
|
|
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), publish_id:meta.id) }
|
|
|
|
conda (params.enable_conda ? "bioconda::ivar=1.3.1" : null)
|
|
|
|
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
|
|
container "https://depot.galaxyproject.org/singularity/ivar:1.3.1--h089eab3_0"
|
|
} else {
|
|
container "quay.io/biocontainers/ivar:1.3.1--h089eab3_0"
|
|
}
|
|
|
|
input:
|
|
tuple val(meta), path(bam)
|
|
|
|
output:
|
|
tuple val(meta), path("*.fa") , emit: cns_seq
|
|
tuple val(meta), path("*.qual.txt"), emit: cns_qual
|
|
tuple val(meta), path("*_mpileup.txt"), emit: mpileup
|
|
path "*.version.txt" , emit: version
|
|
|
|
script:
|
|
def software = getSoftwareName(task.process)
|
|
def prefix = options.suffix ? "${meta.id}${options.suffix}" : "${meta.id}"
|
|
"""
|
|
samtools mpileup \\
|
|
-aa -A -d 0 -Q 0 \\
|
|
$options.args2 \\
|
|
$bam | \\
|
|
$save_mpileup \\
|
|
ivar consensus \\
|
|
$options.args \\
|
|
-p $prefix
|
|
|
|
ivar version | head -n1 2>&1 | sed 's/^.*iVar version //g' > ${software}.version.txt
|
|
"""
|
|
}
|