mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
19035c99d1
* add thread option to samtools modules * fix tests * fix tests * fix tests * Fix naming to fix tests * cpus-1 to account for mainthread * remove thread in ampliconclip, docu doesn't report this param * add -1 to all other applicable samtools modules * Update samtools version * Update checksums * retrigger GHA after update * Update modules/samtools/fastq/main.nf Co-authored-by: Patrick Hüther <patrick.huether@gmail.com> * Update modules/samtools/fixmate/main.nf Co-authored-by: Patrick Hüther <patrick.huether@gmail.com> * Update modules/samtools/flagstat/main.nf Co-authored-by: Patrick Hüther <patrick.huether@gmail.com> * Update modules/samtools/index/main.nf Co-authored-by: Patrick Hüther <patrick.huether@gmail.com> * Update modules/samtools/merge/main.nf Co-authored-by: Patrick Hüther <patrick.huether@gmail.com> * Update modules/samtools/stats/main.nf Co-authored-by: Patrick Hüther <patrick.huether@gmail.com> * Update modules/samtools/view/main.nf Co-authored-by: Patrick Hüther <patrick.huether@gmail.com> * Fix md5sum fixmate * Fix md5sums * sth funny with the fixmate checksums * more md5sums updates Co-authored-by: Patrick Hüther <patrick.huether@gmail.com>
39 lines
1.4 KiB
Text
39 lines
1.4 KiB
Text
// Import generic module functions
|
|
include { initOptions; saveFiles; getSoftwareName; getProcessName } from './functions'
|
|
|
|
params.options = [:]
|
|
options = initOptions(params.options)
|
|
|
|
process SAMTOOLS_STATS {
|
|
tag "$meta.id"
|
|
label 'process_low'
|
|
publishDir "${params.outdir}",
|
|
mode: params.publish_dir_mode,
|
|
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), meta:meta, publish_by_meta:['id']) }
|
|
|
|
conda (params.enable_conda ? "bioconda::samtools=1.14" : null)
|
|
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
|
|
container "https://depot.galaxyproject.org/singularity/samtools:1.14--hb421002_0"
|
|
} else {
|
|
container "quay.io/biocontainers/samtools:1.14--hb421002_0"
|
|
}
|
|
|
|
input:
|
|
tuple val(meta), path(input), path(input_index)
|
|
path fasta
|
|
|
|
output:
|
|
tuple val(meta), path("*.stats"), emit: stats
|
|
path "versions.yml" , emit: versions
|
|
|
|
script:
|
|
def reference = fasta ? "--reference ${fasta}" : ""
|
|
"""
|
|
samtools stats --threads ${task.cpus-1} ${reference} ${input} > ${input}.stats
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
${getProcessName(task.process)}:
|
|
${getSoftwareName(task.process)}: \$(echo \$(samtools --version 2>&1) | sed 's/^.*samtools //; s/Using.*\$//')
|
|
END_VERSIONS
|
|
"""
|
|
}
|