Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tasks
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
biowdl
tasks
Commits
c0bbdd8c
Commit
c0bbdd8c
authored
6 years ago
by
pjvan_thof
Browse files
Options
Downloads
Patches
Plain Diff
Added gatk as a non jar command
parent
ad685f61
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gatk.wdl
+42
-12
42 additions, 12 deletions
gatk.wdl
with
42 additions
and
12 deletions
gatk.wdl
+
42
−
12
View file @
c0bbdd8c
# Apply Base Quality Score Recalibration (BQSR) model
task ApplyBQSR {
String? preCommand
File gatkJar
File
?
gatkJar
File inputBam
File inputBamIndex
String outputBamPath
...
...
@@ -16,10 +16,15 @@ task ApplyBQSR {
Float? memoryMultiplier
Int mem = ceil(select_first([memory, 4.0]))
String toolCommand = if defined(gatkJar)
then "java -Xmx" + mem + "G -jar " + gatkJar
else "gatk -Xmx" + mem + "G"
command {
set -e -o pipefail
${preCommand}
java ${"-Dsamjdk.compression_level=" + compressionLevel
} \
${toolCommand
} \
-Xms${mem}G -jar ${gatkJar} \
ApplyBQSR \
--create-output-bam-md5 \
...
...
@@ -46,7 +51,7 @@ task ApplyBQSR {
# Generate Base Quality Score Recalibration (BQSR) model
task BaseRecalibrator {
String? preCommand
File gatkJar
File
?
gatkJar
File inputBam
File inputBamIndex
String recalibrationReportPath
...
...
@@ -61,10 +66,15 @@ task BaseRecalibrator {
Float? memoryMultiplier
Int mem = ceil(select_first([memory, 4.0]))
String toolCommand = if defined(gatkJar)
then "java -Xmx" + mem + "G -jar " + gatkJar
else "gatk -Xmx" + mem + "G"
command {
set -e -o pipefail
${preCommand}
java -Xms${mem}G -jar ${gatkJar
} \
${toolCommand
} \
BaseRecalibrator \
-R ${refFasta} \
-I ${inputBam} \
...
...
@@ -91,7 +101,7 @@ task CombineGVCFs {
String outputPath
String gatkJar
String
?
gatkJar
File refFasta
File refFastaIndex
...
...
@@ -102,12 +112,17 @@ task CombineGVCFs {
Float? memoryMultiplier
Int mem = ceil(select_first([memory, 4.0]))
String toolCommand = if defined(gatkJar)
then "java -Xmx" + mem + "G -jar " + gatkJar
else "gatk -Xmx" + mem + "G"
command {
set -e -o pipefail
${preCommand}
if [ ${length(gvcfFiles)} -gt 1 ]; then
java ${"-Dsamjdk.compression_level=" + compressionLevel
} \
${toolCommand
} \
-Xmx${mem}G -jar ${gatkJar} \
CombineGVCFs \
-R ${refFasta} \
...
...
@@ -133,7 +148,7 @@ task CombineGVCFs {
# Combine multiple recalibration tables from scattered BaseRecalibrator runs
task GatherBqsrReports {
String? preCommand
String gatkJar
String
?
gatkJar
Array[File] inputBQSRreports
String outputReportPath
...
...
@@ -141,10 +156,15 @@ task GatherBqsrReports {
Float? memoryMultiplier
Int mem = ceil(select_first([memory, 4.0]))
String toolCommand = if defined(gatkJar)
then "java -Xmx" + mem + "G -jar " + gatkJar
else "gatk -Xmx" + mem + "G"
command {
set -e -o pipefail
${preCommand}
java -Xms${mem}G -jar ${gatkJar
} \
${toolCommand
} \
GatherBQSRReports \
-I ${sep=' -I ' inputBQSRreports} \
-O ${outputReportPath}
...
...
@@ -167,7 +187,7 @@ task GenotypeGVCFs {
String outputPath
String gatkJar
String
?
gatkJar
File refFasta
File refFastaIndex
...
...
@@ -181,11 +201,16 @@ task GenotypeGVCFs {
Float? memoryMultiplier
Int mem = ceil(select_first([memory, 4.0]))
String toolCommand = if defined(gatkJar)
then "java -Xmx" + mem + "G -jar " + gatkJar
else "gatk -Xmx" + mem + "G"
command {
set -e -o pipefail
${preCommand}
java ${"-Dsamjdk.compression_level=" + compressionLevel
} \
${toolCommand
} \
-Xmx${mem}G -jar ${gatkJar} \
GenotypeGVCFs \
-R ${refFasta} \
...
...
@@ -220,16 +245,21 @@ task HaplotypeCallerGvcf {
File refFastaIndex
Float? contamination
Int? compressionLevel
String gatkJar
String
?
gatkJar
Float? memory
Float? memoryMultiplier
Int mem = ceil(select_first([memory, 4.0]))
String toolCommand = if defined(gatkJar)
then "java -Xmx" + mem + "G -jar " + gatkJar
else "gatk -Xmx" + mem + "G"
command {
set -e -o pipefail
${preCommand}
java ${"-Dsamjdk.compression_level=" + compressionLevel
} \
${toolCommand
} \
-Xmx${mem}G -jar ${gatkJar} \
HaplotypeCaller \
-R ${refFasta} \
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment