Skip to content
Snippets Groups Projects
Commit 4f9b8215 authored by Cats's avatar Cats
Browse files

fix gatk java options

parent 14d4dfb8
No related branches found
No related tags found
No related merge requests found
......@@ -171,7 +171,7 @@ task BaseRecalibrator {
command {
set -e
mkdir -p "$(dirname ~{recalibrationReportPath})"
gatk --java-options -Xmx~{javaXmx} -XX:ParallelGCThreads=1 \
gatk --java-options '-Xmx~{javaXmx} -XX:ParallelGCThreads=1' \
BaseRecalibrator \
-R ~{referenceFasta} \
-I ~{inputBam} \
......@@ -423,7 +423,7 @@ task CombineGVCFs {
command {
set -e
mkdir -p "$(dirname ~{outputPath})"
gatk --java-options -Xmx~{javaXmx} -XX:ParallelGCThreads=1 \
gatk --java-options '-Xmx~{javaXmx} -XX:ParallelGCThreads=1' \
CombineGVCFs \
-R ~{referenceFasta} \
-O ~{outputPath} \
......@@ -706,7 +706,7 @@ task GatherBqsrReports {
command {
set -e
mkdir -p "$(dirname ~{outputReportPath})"
gatk --java-options -Xmx~{javaXmx} -XX:ParallelGCThreads=1 \
gatk --java-options '-Xmx~{javaXmx} -XX:ParallelGCThreads=1' \
GatherBQSRReports \
-I ~{sep=' -I ' inputBQSRreports} \
-O ~{outputReportPath}
......@@ -808,7 +808,7 @@ task GenotypeGVCFs {
command {
set -e
mkdir -p "$(dirname ~{outputPath})"
gatk --java-options -Xmx~{javaXmx} -XX:ParallelGCThreads=1 \
gatk --java-options '-Xmx~{javaXmx} -XX:ParallelGCThreads=1' \
GenotypeGVCFs \
-R ~{referenceFasta} \
-O ~{outputPath} \
......@@ -935,7 +935,7 @@ task HaplotypeCaller {
command {
set -e
mkdir -p "$(dirname ~{outputPath})"
gatk --java-options -Xmx~{javaXmx} -XX:ParallelGCThreads=1 \
gatk --java-options '-Xmx~{javaXmx} -XX:ParallelGCThreads=1' \
HaplotypeCaller \
-R ~{referenceFasta} \
-O ~{outputPath} \
......@@ -1448,7 +1448,7 @@ task SplitNCigarReads {
command {
set -e
mkdir -p "$(dirname ~{outputBam})"
gatk --java-options -Xmx~{javaXmx} -XX:ParallelGCThreads=1 \
gatk --java-options '-Xmx~{javaXmx} -XX:ParallelGCThreads=1' \
SplitNCigarReads \
-I ~{inputBam} \
-R ~{referenceFasta} \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment