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
fb1a2c68
Commit
fb1a2c68
authored
6 years ago
by
Cats
Browse files
Options
Downloads
Patches
Plain Diff
requested changes and memory settings
parent
9af789ca
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!15
Biowdl 25
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
biopet.wdl
+5
-4
5 additions, 4 deletions
biopet.wdl
gatk.wdl
+7
-7
7 additions, 7 deletions
gatk.wdl
picard.wdl
+5
-5
5 additions, 5 deletions
picard.wdl
samtools.wdl
+3
-8
3 additions, 8 deletions
samtools.wdl
stringtie.wdl
+1
-1
1 addition, 1 deletion
stringtie.wdl
with
21 additions
and
25 deletions
biopet.wdl
+
5
−
4
View file @
fb1a2c68
# PLEASE ADD TASKS IN ALPHABETIC ORDER.
# This makes searching a lot easier.
task BaseCounter {
String? preCommand
String
tool
_j
ar
File
tool
J
ar
File bam
File bamIndex
File refFlat
...
...
@@ -17,7 +18,7 @@ task BaseCounter {
set -e -o pipefail
mkdir -p ${outputDir}
${preCommand}
java -Xmx${mem}G -jar ${tool
_j
ar} \
java -Xmx${mem}G -jar ${tool
J
ar} \
-b ${bam} \
-r ${refFlat} \
-o ${outputDir} \
...
...
@@ -62,7 +63,7 @@ task BaseCounter {
}
runtime {
memory: ceil(mem * select_first([memoryMultiplier,
1.5
]))
memory: ceil(mem * select_first([memoryMultiplier,
3.0
]))
}
}
...
...
@@ -187,7 +188,7 @@ task ScatterRegions {
}
runtime {
memory: ceil(mem * select_first([memoryMultiplier,
2
.0]))
memory: ceil(mem * select_first([memoryMultiplier,
3
.0]))
}
}
This diff is collapsed.
Click to expand it.
gatk.wdl
+
7
−
7
View file @
fb1a2c68
...
...
@@ -34,7 +34,7 @@ task BaseRecalibrator {
}
runtime {
memory: ceil(mem * select_first([memoryMultiplier,
1.5
]))
memory: ceil(mem * select_first([memoryMultiplier,
3.0
]))
}
}
...
...
@@ -78,7 +78,7 @@ task ApplyBQSR {
}
runtime {
memory: ceil(mem * select_first([memoryMultiplier,
1.5
]))
memory: ceil(mem * select_first([memoryMultiplier,
3.0
]))
}
}
...
...
@@ -107,7 +107,7 @@ task GatherBqsrReports {
}
runtime {
memory: ceil(mem * select_first([memoryMultiplier,
1.5
]))
memory: ceil(mem * select_first([memoryMultiplier,
3.0
]))
}
}
...
...
@@ -149,7 +149,7 @@ task HaplotypeCallerGvcf {
}
runtime {
memory: ceil(mem * select_first([memoryMultiplier,
1.5
]))
memory: ceil(mem * select_first([memoryMultiplier,
3.0
]))
}
}
...
...
@@ -198,7 +198,7 @@ task GenotypeGVCFs {
}
runtime{
memory: ceil(mem * select_first([memoryMultiplier,
1.5
]))
memory: ceil(mem * select_first([memoryMultiplier,
3.0
]))
}
}
...
...
@@ -245,7 +245,7 @@ task CombineGVCFs {
}
runtime {
memory: ceil(mem * select_first([memoryMultiplier,
1.5
]))
memory: ceil(mem * select_first([memoryMultiplier,
3.0
]))
}
}
...
...
@@ -282,6 +282,6 @@ task SplitNCigarReads {
}
runtime {
memory: ceil(mem * select_first([memoryMultiplier,
1.5
]))
memory: ceil(mem * select_first([memoryMultiplier,
3.0
]))
}
}
This diff is collapsed.
Click to expand it.
picard.wdl
+
5
−
5
View file @
fb1a2c68
...
...
@@ -28,7 +28,7 @@ task ScatterIntervalList {
}
runtime {
memory: ceil(mem * select_first([memoryMultiplier,
1.5
]))
memory: ceil(mem * select_first([memoryMultiplier,
3.0
]))
}
}
...
...
@@ -63,7 +63,7 @@ task GatherBamFiles {
}
runtime {
memory: ceil(mem * select_first([memoryMultiplier,
1.5
]))
memory: ceil(mem * select_first([memoryMultiplier,
3.0
]))
}
}
...
...
@@ -113,7 +113,7 @@ task MarkDuplicates {
}
runtime {
memory: ceil(mem * select_first([memoryMultiplier,
1.5
]))
memory: ceil(mem * select_first([memoryMultiplier,
3.0
]))
}
}
...
...
@@ -148,7 +148,7 @@ task MergeVCFs {
}
runtime {
memory: ceil(mem * select_first([memoryMultiplier,
1.5
]))
memory: ceil(mem * select_first([memoryMultiplier,
3.0
]))
}
}
...
...
@@ -183,6 +183,6 @@ task SamToFastq {
}
runtime {
memory: ceil(mem * select_first([memoryMultiplier,
1.5
]))
memory: ceil(mem * select_first([memoryMultiplier,
3.0
]))
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
samtools.wdl
+
3
−
8
View file @
fb1a2c68
task Index {
String? preCommand
File bamFilePath
String bamIndexPath
String
?
bamIndexPath
command {
set -e -o pipefail
...
...
@@ -10,7 +10,7 @@ task Index {
}
output {
File indexFile = bamIndexPath
File indexFile =
if defined(
bamIndexPath
) then select_first([bamIndexPath]) else bamFilePath + ".bai"
}
}
...
...
@@ -22,12 +22,7 @@ task Merge {
command {
set -e -o pipefail
${preCommand}
if [ ${length(bamFiles)} -gt 1 ]
then
samtools merge ${outputBamPath} ${sep=' ' bamFiles}
else
ln -sf ${sep=' ' bamFiles} ${outputBamPath}
fi
samtools merge ${outputBamPath} ${sep=' ' bamFiles}
}
output {
...
...
This diff is collapsed.
Click to expand it.
stringtie.wdl
+
1
−
1
View file @
fb1a2c68
...
...
@@ -10,7 +10,7 @@ task Stringtie {
command {
set -e -o pipefail
mkdir -p $
{sub(assembledTranscriptsFile, base
name
(
assembledTranscriptsFile
), "")
}
mkdir -p $
(dir
name
${
assembledTranscriptsFile}
)
${preCommand}
stringtie \
${"-p " + threads} \
...
...
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