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
801f813a
Commit
801f813a
authored
6 years ago
by
Pappas
Browse files
Options
Downloads
Patches
Plain Diff
Remove capturing log as output
parent
cd7e49ee
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!12
Adding flash task for combining overlapping reads
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
flash.wdl
+1
-3
1 addition, 3 deletions
flash.wdl
with
1 addition
and
3 deletions
flash.wdl
+
1
−
3
View file @
801f813a
...
...
@@ -4,7 +4,6 @@ task flash {
File inputR2
String outdirPath
String? outPrefix = "flash"
String? logPath = outdirPath + "/" + outPrefix + ".log"
Int? minOverlap
Int? maxOverlap
Boolean? compress = true
...
...
@@ -22,7 +21,7 @@ task flash {
${true="--compress " false="" defined(compress)} \
${"--min-overlap=" + minOverlap} \
${"--max-overlap=" + maxOverlap} \
${inputR1} ${inputR2}
2>&1 | tee ${logPath}
${inputR1} ${inputR2}
}
output {
...
...
@@ -31,7 +30,6 @@ task flash {
File notCombined2 = outdirPath + "/" + outPrefix + ".notCombined_2.fastq.gz"
File hist = outdirPath + "/" + outPrefix + ".hist"
File histogram = outdirPath + "/" + outPrefix + ".histogram"
String log = select_first([logPath])
}
runtime {
...
...
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