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
d8d8af25
Commit
d8d8af25
authored
5 years ago
by
Ruben Vorderman
Browse files
Options
Downloads
Patches
Plain Diff
address strelka and manta changes
parent
f514e420
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
manta.wdl
+1
-3
1 addition, 3 deletions
manta.wdl
strelka.wdl
+2
-6
2 additions, 6 deletions
strelka.wdl
with
3 additions
and
9 deletions
manta.wdl
+
1
−
3
View file @
d8d8af25
...
@@ -10,7 +10,7 @@ task Somatic {
...
@@ -10,7 +10,7 @@ task Somatic {
File? normalBamIndex
File? normalBamIndex
File referenceFasta
File referenceFasta
File referenceFastaFai
File referenceFastaFai
String runDir = "."
String runDir = ".
/manta_run
"
File? callRegions
File? callRegions
File? callRegionsIndex
File? callRegionsIndex
Boolean exome = false
Boolean exome = false
...
@@ -22,8 +22,6 @@ task Somatic {
...
@@ -22,8 +22,6 @@ task Somatic {
}
}
command {
command {
mkdir -p ~{runDir}
set -e
configManta.py \
configManta.py \
~{"--normalBam " + normalBam} \
~{"--normalBam " + normalBam} \
~{"--tumorBam " + tumorBam} \
~{"--tumorBam " + tumorBam} \
...
...
This diff is collapsed.
Click to expand it.
strelka.wdl
+
2
−
6
View file @
d8d8af25
...
@@ -4,7 +4,7 @@ import "common.wdl" as common
...
@@ -4,7 +4,7 @@ import "common.wdl" as common
task Germline {
task Germline {
input {
input {
String runDir = "."
String runDir = ".
/strelka_run
"
Array[File]+ bams
Array[File]+ bams
Array[File]+ indexes
Array[File]+ indexes
File referenceFasta
File referenceFasta
...
@@ -20,8 +20,6 @@ task Germline {
...
@@ -20,8 +20,6 @@ task Germline {
}
}
command {
command {
set -e
mkdir -p ~{runDir}
configureStrelkaGermlineWorkflow.py \
configureStrelkaGermlineWorkflow.py \
--bam ~{sep=" --bam " bams} \
--bam ~{sep=" --bam " bams} \
--ref ~{referenceFasta} \
--ref ~{referenceFasta} \
...
@@ -50,7 +48,7 @@ task Germline {
...
@@ -50,7 +48,7 @@ task Germline {
task Somatic {
task Somatic {
input {
input {
String runDir = "."
String runDir = ".
/strelka_run
"
File normalBam
File normalBam
File normalBamIndex
File normalBamIndex
File tumorBam
File tumorBam
...
@@ -71,8 +69,6 @@ task Somatic {
...
@@ -71,8 +69,6 @@ task Somatic {
}
}
command {
command {
set -e
mkdir -p ~{runDir}
configureStrelkaSomaticWorkflow.py \
configureStrelkaSomaticWorkflow.py \
--normalBam ~{normalBam} \
--normalBam ~{normalBam} \
--tumorBam ~{tumorBam} \
--tumorBam ~{tumorBam} \
...
...
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