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
b92acedc
Commit
b92acedc
authored
6 years ago
by
Peter van 't Hof
Browse files
Options
Downloads
Patches
Plain Diff
switch flash to structs
parent
f6b12ca4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!61
Switch to structs
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
flash.wdl
+8
-3
8 additions, 3 deletions
flash.wdl
with
8 additions
and
3 deletions
flash.wdl
+
8
−
3
View file @
b92acedc
version 1.0
import "common.wdl" as common
task Flash {
input {
String? preCommand
File inputR1
File inputR2
FastqPair inputFastq
String outdirPath
String outPrefix = "flash"
Int? minOverlap
...
...
@@ -25,13 +26,17 @@ task Flash {
~{true="--compress " false="" compress} \
~{"--min-overlap=" + minOverlap} \
~{"--max-overlap=" + maxOverlap} \
~{inputR1} ~{inputR2}
~{input
Fastq.
R1} ~{input
Fastq.
R2}
}
output {
File extendedFrags = outdirPath + "/" + outPrefix + ".extendedFrags.fastq.gz"
File notCombined1 = outdirPath + "/" + outPrefix + ".notCombined_1.fastq.gz"
File notCombined2 = outdirPath + "/" + outPrefix + ".notCombined_2.fastq.gz"
FastqPair notCombined = object {
R1: notCombined1,
R2: notCombined2
}
File hist = outdirPath + "/" + outPrefix + ".hist"
File histogram = outdirPath + "/" + outPrefix + ".histogram"
}
...
...
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