mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-14 13:43:09 +00:00
1023a98b51
* first commit, added template files for new module * created getpileupsummaries script, tests and both yml files * fixed typo in meta.yml * Update modules/gatk4/getpileupsummaries/meta.yml changed gz_tbi to gz.tbi as suggested Co-authored-by: Maxime U. Garcia <maxime.garcia@scilifelab.se> Co-authored-by: GCJMackenzie <gavin.mackenzie@nibsc.org> Co-authored-by: Maxime U. Garcia <max.u.garcia@gmail.com> Co-authored-by: Maxime U. Garcia <maxime.garcia@scilifelab.se>
48 lines
1.5 KiB
Text
48 lines
1.5 KiB
Text
// Import generic module functions
|
|
include { initOptions; saveFiles; getSoftwareName } from './functions'
|
|
|
|
params.options = [:]
|
|
options = initOptions(params.options)
|
|
|
|
process GATK4_GETPILEUPSUMMARIES {
|
|
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::gatk4=4.2.0.0" : null)
|
|
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
|
|
container "https://depot.galaxyproject.org/singularity/gatk4:4.2.0.0--0"
|
|
} else {
|
|
container "quay.io/biocontainers/gatk4:4.2.0.0--0"
|
|
}
|
|
|
|
input:
|
|
tuple val(meta), path(bam), path(bai)
|
|
path variants
|
|
path variants_idx
|
|
path sites
|
|
|
|
output:
|
|
tuple val(meta), path('*.pileups.table'), emit: table
|
|
path '*.version.txt' , emit: version
|
|
|
|
script:
|
|
def software = getSoftwareName(task.process)
|
|
def prefix = options.suffix ? "${meta.id}${options.suffix}" : "${meta.id}"
|
|
def sitesCommand = ''
|
|
|
|
sitesCommand = sites ? " -L ${sites} " : " -L ${variants} "
|
|
|
|
"""
|
|
gatk GetPileupSummaries \\
|
|
-I $bam \\
|
|
-V $variants \\
|
|
$sitesCommand \\
|
|
-O ${prefix}.pileups.table \\
|
|
$options.args
|
|
|
|
echo \$(gatk --version 2>&1) | sed 's/^.*(GATK) v//; s/ .*\$//' > ${software}.version.txt
|
|
"""
|
|
}
|