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
59915292
Commit
59915292
authored
6 years ago
by
Cats
Browse files
Options
Downloads
Plain Diff
Merge branch 'develop' into BIOWDL-120
parents
5939f705
6acca318
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!70
Some new tasks and memory setting changes
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
biopet/sampleconfig.wdl
+5
-4
5 additions, 4 deletions
biopet/sampleconfig.wdl
macs2.wdl
+3
-0
3 additions, 0 deletions
macs2.wdl
with
8 additions
and
4 deletions
biopet/sampleconfig.wdl
+
5
−
4
View file @
59915292
...
@@ -85,12 +85,13 @@ task CaseControl {
...
@@ -85,12 +85,13 @@ task CaseControl {
File? toolJar
File? toolJar
String? preCommand
String? preCommand
Array[File]+ inputFiles
Array[File]+ inputFiles
Array[File]+ inputIndexFiles
Array[File]+ sampleConfigs
Array[File]+ sampleConfigs
String outputPath
String outputPath
String controlTag = "control"
String controlTag = "control"
Int memory = 4
Int memory = 4
Float memoryMultiplier =
1.5
Float memoryMultiplier =
2.0
}
}
String toolCommand = if defined(toolJar)
String toolCommand = if defined(toolJar)
...
@@ -101,9 +102,9 @@ task CaseControl {
...
@@ -101,9 +102,9 @@ task CaseControl {
set -e -o pipefail
set -e -o pipefail
~{preCommand}
~{preCommand}
mkdir -p $(dirname ~{outputPath})
mkdir -p $(dirname ~{outputPath})
~{toolCommand} C
romwellArrays
\
~{toolCommand} C
aseControl
\
-i ~{sep="-i " inputFiles} \
-i ~{sep="
-i " inputFiles} \
-s ~{sep="-s " sampleConfigs} \
-s ~{sep="
-s " sampleConfigs} \
~{"-o " + outputPath} \
~{"-o " + outputPath} \
~{"--controlTag " + controlTag}
~{"--controlTag " + controlTag}
}
}
...
...
This diff is collapsed.
Click to expand it.
macs2.wdl
+
3
−
0
View file @
59915292
...
@@ -7,6 +7,8 @@ task PeakCalling {
...
@@ -7,6 +7,8 @@ task PeakCalling {
String? preCommand
String? preCommand
Array[File]+ inputBams
Array[File]+ inputBams
Array[File]+ inputBamsIndex
Array[File]+ inputBamsIndex
Array[File]+? controlBams
Array[File]+? controlBamsIndex
String outDir
String outDir
String sampleName
String sampleName
Int threads = 1
Int threads = 1
...
@@ -19,6 +21,7 @@ task PeakCalling {
...
@@ -19,6 +21,7 @@ task PeakCalling {
~{preCommand}
~{preCommand}
macs2 callpeak \
macs2 callpeak \
--treatment ~{sep = ' ' inputBams} \
--treatment ~{sep = ' ' inputBams} \
~{true="--control" false="" defined(controlBams)} ~{sep = ' ' controlBams} \
--outdir ~{outDir} \
--outdir ~{outDir} \
--name ~{sampleName} \
--name ~{sampleName} \
~{true='--nomodel' false='' nomodel}
~{true='--nomodel' false='' nomodel}
...
...
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