mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
c9dc0a82d0
* commit 08/07 * fixed formatting * atlas recal commit - corrected formatting * Fix tests * Fix meta.yml * Prettier * Delete nextflow * yaml > yml * Delete meta.yaml * Fix test * Forgot to run prettier? Co-authored-by: ltcrod <luca_traverso@kickseed.localdomain> Co-authored-by: James A. Fellows Yates <jfy133@gmail.com>
46 lines
1.4 KiB
Text
46 lines
1.4 KiB
Text
process ATLAS_RECAL {
|
|
tag "$meta.id"
|
|
label 'process_low'
|
|
|
|
conda (params.enable_conda ? "bioconda::atlas=0.9.9" : null)
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
|
'https://depot.galaxyproject.org/singularity/atlas:0.9.9--h082e891_0':
|
|
'quay.io/biocontainers/atlas:0.9.9--h082e891_0' }"
|
|
|
|
input:
|
|
tuple val(meta), path(bam), path(bai), path(empiric), path(readgroups)
|
|
path(alleles)
|
|
path(invariant_sites)
|
|
|
|
output:
|
|
tuple val(meta), path("*.txt"), emit:recal_patterns
|
|
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 PMD = empiric ? "pmdFile=${empiric}" : ""
|
|
def ALLELES = alleles ? "alleleFile=${alleles}" : ""
|
|
def INVARIANTS = invariant_sites ? "window=${invariant_sites}" : ""
|
|
def READGROUPS = readgroups ? "poolReadGroups=${readgroups}" : ""
|
|
|
|
"""
|
|
atlas \\
|
|
task=recal \\
|
|
bam=$bam \\
|
|
$PMD \\
|
|
$READGROUPS \\
|
|
$ALLELES \\
|
|
$INVARIANTS \\
|
|
out=$prefix \\
|
|
$args
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
"${task.process}":
|
|
atlas: \$((atlas 2>&1) | grep Atlas | head -n 1 | sed -e 's/^[ \t]*Atlas //')
|
|
END_VERSIONS
|
|
"""
|
|
}
|