mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-14 05:43:08 +00:00
reverse again, why did tests pass before
This commit is contained in:
parent
e3a17b699e
commit
5f7b02189a
1 changed files with 8 additions and 4 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.6.1" : null)
|
conda (params.enable_conda ? "bioconda::gatk4=4.2.3.0" : 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.6.1--hdfd78af_0':
|
'https://depot.galaxyproject.org/singularity/gatk4:4.2.3.0--hdfd78af_0' :
|
||||||
'quay.io/biocontainers/gatk4:4.2.6.1--hdfd78af_0' }"
|
'broadinstitute/gatk:4.2.3.0' }"
|
||||||
|
|
||||||
input:
|
input:
|
||||||
tuple val(meta), path(bam)
|
tuple val(meta), path(bam)
|
||||||
|
@ -22,7 +22,7 @@ process GATK4_MARKDUPLICATES_SPARK {
|
||||||
|
|
||||||
script:
|
script:
|
||||||
def args = task.ext.args ?: ''
|
def args = task.ext.args ?: ''
|
||||||
prefix = task.ext.prefix ?: "${meta.id}.bam"
|
prefix = task.ext.prefix ?: "${meta.id}"
|
||||||
def input_list = bam.collect{"--input $it"}.join(' ')
|
def input_list = bam.collect{"--input $it"}.join(' ')
|
||||||
|
|
||||||
def avail_mem = 3
|
def avail_mem = 3
|
||||||
|
@ -32,6 +32,10 @@ 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