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
a13a5420
Commit
a13a5420
authored
5 years ago
by
Ruben Vorderman
Browse files
Options
Downloads
Patches
Plain Diff
remove structs
parent
8df25f2c
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
somaticseq.wdl
+26
-22
26 additions, 22 deletions
somaticseq.wdl
with
26 additions
and
22 deletions
somaticseq.wdl
+
26
−
22
View file @
a13a5420
version 1.0
import "common.wdl" as common
task ParallelPaired {
input {
String installDir = "/opt/somaticseq" #the location in the docker image
...
...
@@ -9,11 +7,13 @@ task ParallelPaired {
File? classifierSNV
File? classifierIndel
String outputDir
Referenc
e reference
Fil
e reference
Fasta
File? inclusionRegion
File? exclusionRegion
IndexedBamFile tumorBam
IndexedBamFile normalBam
File tumorBam
File tumorBamIndex
File normalBam
File normalBamIndex
File? mutect2VCF
File? varscanSNV
File? varscanIndel
...
...
@@ -36,13 +36,13 @@ task ParallelPaired {
~{"--classifier-snv " + classifierSNV} \
~{"--classifier-indel " + classifierIndel} \
--output-directory ~{outputDir} \
--genome-reference ~{reference
.f
asta} \
--genome-reference ~{reference
F
asta} \
~{"--inclusion-region " + inclusionRegion} \
~{"--exclusion-region " + exclusionRegion} \
--threads ~{threads} \
paired \
--tumor-bam-file ~{tumorBam
.file
} \
--normal-bam-file ~{normalBam
.file
} \
--tumor-bam-file ~{tumorBam} \
--normal-bam-file ~{normalBam} \
~{"--mutect2-vcf " + mutect2VCF} \
~{"--varscan-snv " + varscanSNV} \
~{"--varscan-indel " + varscanIndel} \
...
...
@@ -81,11 +81,13 @@ task ParallelPairedTrain {
File truthSNV
File truthIndel
String outputDir
Referenc
e reference
Fil
e reference
Fasta
File? inclusionRegion
File? exclusionRegion
IndexedBamFile tumorBam
IndexedBamFile normalBam
File tumorBam
File tumorBamIndex
File normalBam
File normalBamIndex
File? mutect2VCF
File? varscanSNV
File? varscanIndel
...
...
@@ -109,13 +111,13 @@ task ParallelPairedTrain {
--truth-snv ~{truthSNV} \
--truth-indel ~{truthIndel} \
--output-directory ~{outputDir} \
--genome-reference ~{reference
.f
asta} \
--genome-reference ~{reference
F
asta} \
~{"--inclusion-region " + inclusionRegion} \
~{"--exclusion-region " + exclusionRegion} \
--threads ~{threads} \
paired \
--tumor-bam-file ~{tumorBam
.file
} \
--normal-bam-file ~{normalBam
.file
} \
--tumor-bam-file ~{tumorBam} \
--normal-bam-file ~{normalBam} \
~{"--mutect2-vcf " + mutect2VCF} \
~{"--varscan-snv " + varscanSNV} \
~{"--varscan-indel " + varscanIndel} \
...
...
@@ -152,10 +154,11 @@ task ParallelSingle {
File? classifierSNV
File? classifierIndel
String outputDir
Referenc
e reference
Fil
e reference
Fasta
File? inclusionRegion
File? exclusionRegion
IndexedBamFile bam
File bam
File bamIndex
File? mutect2VCF
File? varscanVCF
File? vardictVCF
...
...
@@ -172,12 +175,12 @@ task ParallelSingle {
~{"--classifier-snv " + classifierSNV} \
~{"--classifier-indel " + classifierIndel} \
--output-directory ~{outputDir} \
--genome-reference ~{reference
.f
asta} \
--genome-reference ~{reference
F
asta} \
~{"--inclusion-region " + inclusionRegion} \
~{"--exclusion-region " + exclusionRegion} \
--threads ~{threads} \
single \
--bam-file ~{bam
.file
} \
--bam-file ~{bam} \
~{"--mutect2-vcf " + mutect2VCF} \
~{"--varscan-vcf " + varscanVCF} \
~{"--vardict-vcf " + vardictVCF} \
...
...
@@ -210,10 +213,11 @@ task ParallelSingleTrain {
File truthSNV
File truthIndel
String outputDir
Referenc
e reference
Fil
e reference
Fasta
File? inclusionRegion
File? exclusionRegion
IndexedBamFile bam
File bam
File bamIndex
File? mutect2VCF
File? varscanVCF
File? vardictVCF
...
...
@@ -231,12 +235,12 @@ task ParallelSingleTrain {
--truth-snv ~{truthSNV} \
--truth-indel ~{truthIndel} \
--output-directory ~{outputDir} \
--genome-reference ~{reference
.f
asta} \
--genome-reference ~{reference
F
asta} \
~{"--inclusion-region " + inclusionRegion} \
~{"--exclusion-region " + exclusionRegion} \
--threads ~{threads} \
single \
--bam-file ~{bam
.file
} \
--bam-file ~{bam} \
~{"--mutect2-vcf " + mutect2VCF} \
~{"--varscan-vcf " + varscanVCF} \
~{"--vardict-vcf " + vardictVCF} \
...
...
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