mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2025-01-02 20:52:07 -05:00
update version
This commit is contained in:
parent
99880654bf
commit
e3a17b699e
1 changed files with 3 additions and 5 deletions
|
@ -2,10 +2,10 @@ process GATK4_MARKDUPLICATES_SPARK {
|
||||||
tag "$meta.id"
|
tag "$meta.id"
|
||||||
label 'process_high'
|
label 'process_high'
|
||||||
|
|
||||||
conda (params.enable_conda ? "bioconda::gatk4=4.2.3.0" : null)
|
conda (params.enable_conda ? "bioconda::gatk4=4.2.6.1" : null)
|
||||||
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
||||||
'https://depot.galaxyproject.org/singularity/gatk4:4.2.3.0--hdfd78af_0' :
|
'https://depot.galaxyproject.org/singularity/gatk4:4.2.6.1--hdfd78af_0':
|
||||||
'broadinstitute/gatk:4.2.3.0' }"
|
'quay.io/biocontainers/gatk4:4.2.6.1--hdfd78af_0' }"
|
||||||
|
|
||||||
input:
|
input:
|
||||||
tuple val(meta), path(bam)
|
tuple val(meta), path(bam)
|
||||||
|
@ -32,8 +32,6 @@ process GATK4_MARKDUPLICATES_SPARK {
|
||||||
avail_mem = task.memory.giga
|
avail_mem = task.memory.giga
|
||||||
}
|
}
|
||||||
"""
|
"""
|
||||||
export SPARK_USER=spark3
|
|
||||||
|
|
||||||
gatk --java-options "-Xmx${avail_mem}g" MarkDuplicatesSpark \\
|
gatk --java-options "-Xmx${avail_mem}g" MarkDuplicatesSpark \\
|
||||||
$input_list \\
|
$input_list \\
|
||||||
--output $prefix \\
|
--output $prefix \\
|
||||||
|
|
Loading…
Reference in a new issue