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
2dca5f36
Commit
2dca5f36
authored
2 years ago
by
Moustakas
Browse files
Options
Downloads
Patches
Plain Diff
Address comments from Ruben
parent
ae937f28
Branches
BIOWDL-602
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
macs2.wdl
+15
-15
15 additions, 15 deletions
macs2.wdl
with
15 additions
and
15 deletions
macs2.wdl
+
15
−
15
View file @
2dca5f36
...
...
@@ -29,16 +29,16 @@ task PeakCalling {
String outDir = "macs2"
String sampleName
String format = "AUTO"
Boolean nomodel
= false
String gensz
= "hs"
Int extsize
Int shiftsize = -1*round(extsize/2)
Float pval_thres
= 0.01
Boolean bdg
= true
String keepdup
= "auto"
Boolean callsummits
= true
Boolean
?
nomodel
String
?
gensz
Int
?
extsize
Int
?
shiftsize = -1*round(extsize/2)
Float
?
pval_thres
Boolean
?
bdg
String
?
keepdup
Boolean
?
callsummits
Int timeMinutes = 600 # Default to 10 hours
String memory = "8G"
String memory = "8G
iB
"
String dockerImage = "quay.io/biocontainers/macs2:2.1.2--py27r351_0"
}
...
...
@@ -49,14 +49,14 @@ task PeakCalling {
~{true="--control" false="" length(controlBams) > 0} ~{sep = ' ' controlBams} \
--outdir ~{outDir} \
--name ~{sampleName} \
-f ~{
format} \
-g ~{
gensz} \
-p ~{
pval_thres} \
--shift
~{
shiftsize} \
--extsize
~{
extsize} \
~{"-f" +
format} \
~{"-g" +
gensz} \
~{"-p" +
pval_thres} \
~{"
--shift
" +
shiftsize} \
~{"
--extsize
" +
extsize} \
~{true='--nomodel' false='' nomodel} \
~{true='-B' false='' bdg} \
--keep-dup
~{
keepdup} \
~{"
--keep-dup
" +
keepdup} \
~{true='--call-summits' false='' callsummits}
}
...
...
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