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
31384d64
Unverified
Commit
31384d64
authored
6 years ago
by
Ruben Vorderman
Committed by
GitHub
6 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #50 from biowdl/BIOWDL-6
Added sctruct for index files
parents
2f0b9b60
7d977a32
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
bwa.wdl
+6
-3
6 additions, 3 deletions
bwa.wdl
common.wdl
+6
-0
6 additions, 0 deletions
common.wdl
with
12 additions
and
3 deletions
bwa.wdl
+
6
−
3
View file @
31384d64
...
...
@@ -5,8 +5,7 @@ task Mem {
String? preCommand
File inputR1
File? inputR2
File referenceFasta
Array[File] indexFiles # These indexFiles need to be added, otherwise cromwell will not find them.
BwaIndex bwaIndex
String outputPath
String? readgroup
...
...
@@ -20,7 +19,7 @@ task Mem {
~{preCommand}
bwa mem ~{"-t " + threads} \
~{"-R '" + readgroup + "'"} \
~{
referenceFasta
} \
~{
bwaIndex.fastaFile
} \
~{inputR1} \
~{inputR2} \
| samtools sort --output-fmt BAM - > ~{outputPath}
...
...
@@ -75,3 +74,7 @@ task Index {
}
}
struct BwaIndex {
File fastaFile
Array[File] indexFiles
}
This diff is collapsed.
Click to expand it.
common.wdl
+
6
−
0
View file @
31384d64
...
...
@@ -134,3 +134,9 @@ task StringArrayMd5 {
memory: 1
}
}
struct Reference {
File fasta
File fai
File dict
}
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