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
9f02ca5a
Commit
9f02ca5a
authored
6 years ago
by
ffinfo
Browse files
Options
Downloads
Patches
Plain Diff
Fixing validate issues
parent
0d3ab44c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!61
Switch to structs
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
htseq.wdl
+3
-2
3 additions, 2 deletions
htseq.wdl
macs2.wdl
+3
-2
3 additions, 2 deletions
macs2.wdl
manta.wdl
+3
-1
3 additions, 1 deletion
manta.wdl
vardict.wdl
+3
-1
3 additions, 1 deletion
vardict.wdl
with
12 additions
and
6 deletions
htseq.wdl
+
3
−
2
View file @
9f02ca5a
...
...
@@ -5,7 +5,8 @@ import "common.wdl"
task HTSeqCount {
input {
String? preCommand
Array[IndexedBamFile] inputBamFiles
Array[File]+ inputBams
Array[File]+ inputBamsIndex
File gtfFile
String outputTable
String format = "bam"
...
...
@@ -23,7 +24,7 @@ task HTSeqCount {
-f ~{format} \
-r ~{order} \
-s ~{stranded} \
~{sep=" " inputBam
Files.file
} \
~{sep=" " inputBam
s
} \
~{gtfFile} \
> ~{outputTable}
}
...
...
This diff is collapsed.
Click to expand it.
macs2.wdl
+
3
−
2
View file @
9f02ca5a
...
...
@@ -5,7 +5,8 @@ import "common.wdl"
task PeakCalling {
input {
String? preCommand
Array[IndexedBamFile] bamFiles
Array[File]+ inputBams
Array[File]+ inputBamsIndex
String outDir
String sampleName
Int threads = 1
...
...
@@ -17,7 +18,7 @@ task PeakCalling {
set -e -o pipefail
~{preCommand}
macs2 callpeak \
--treatment ~{sep = ' '
bamFiles.file
} \
--treatment ~{sep = ' '
inputBams
} \
--outdir ~{outDir} \
--name ~{sampleName} \
~{true='--nomodel' false='' nomodel}
...
...
This diff is collapsed.
Click to expand it.
manta.wdl
+
3
−
1
View file @
9f02ca5a
...
...
@@ -19,11 +19,13 @@ task ConfigureSomatic {
then installDir + "bin/configMata.py"
else "configManta.py"
String normalArg = if (defined(normalBam)) then "--normalBam " + select_first([normalBam]).file else ""
command {
set -e -o pipefail
~{preCommand}
~{toolCommand} \
~{
"--
normal
Bam " + normalBam.file
} \
~{normal
Arg
} \
~{"--tumorBam " + tumorBam.file} \
--referenceFasta ~{reference.fasta} \
~{"--callRegions " + callRegions} \
...
...
This diff is collapsed.
Click to expand it.
vardict.wdl
+
3
−
1
View file @
9f02ca5a
...
...
@@ -25,6 +25,8 @@ task VarDict {
Float memoryMultiplier = 2.0
}
String normalArg = if (defined(normalBam)) then "|" + select_first([normalBam]).file else ""
String toolCommand = if defined(installDir)
then installDir + "/VarDict"
else if useJavaVersion
...
...
@@ -38,7 +40,7 @@ task VarDict {
~{toolCommand} \
-G ~{reference.fasta} \
-N ~{tumorSampleName} \
-b "~{tumorBam.file}~{
"|" + normalBam.file
}" \
-b "~{tumorBam.file}~{
normalArg
}" \
~{true="" false="-z" defined(normalBam)} \
-c ~{chromosomeColumn} \
-S ~{startColumn} \
...
...
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