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
d4219066
Unverified
Commit
d4219066
authored
6 years ago
by
Peter van 't Hof
Committed by
GitHub
6 years ago
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' into flash
parents
801f813a
61bba4a0
No related branches found
No related tags found
1 merge request
!12
Adding flash task for combining overlapping reads
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
biopet.wdl
+1
-2
1 addition, 2 deletions
biopet.wdl
gatk.wdl
+3
-2
3 additions, 2 deletions
gatk.wdl
star.wdl
+2
-0
2 additions, 0 deletions
star.wdl
with
6 additions
and
4 deletions
biopet.wdl
+
1
−
2
View file @
d4219066
...
...
@@ -84,10 +84,9 @@ task SampleConfig {
}
output {
Array[String] keys = read_lines(
stdout()
)
File keysFile =
stdout()
File? jsonOutput = jsonOutputPath
File? tsvOutput = tsvOutputPath
Object values = if (defined(tsvOutput) && size(tsvOutput) > 0) then read_map(tsvOutput) else { "": "" }
}
runtime {
...
...
This diff is collapsed.
Click to expand it.
gatk.wdl
+
3
−
2
View file @
d4219066
...
...
@@ -253,6 +253,7 @@ task SplitNCigarReads {
String? preCommand
File input_bam
File input_bam_index
File ref_fasta
File ref_fasta_index
File ref_dict
...
...
@@ -271,13 +272,13 @@ task SplitNCigarReads {
SplitNCigarReads \
-I ${input_bam} \
-R ${ref_fasta} \
-O ${output_bam}
# might have to be -o depending on GATK version
\
-O ${output_bam} \
-L ${sep=' -L ' intervals}
}
output {
File bam = output_bam
File bam_index = output_bam
+
".bai"
File bam_index =
sub(
output_bam
, "\\.bam$",
".bai"
)
}
runtime {
...
...
This diff is collapsed.
Click to expand it.
star.wdl
+
2
−
0
View file @
d4219066
...
...
@@ -12,6 +12,7 @@ task Star {
String? outStd
String? twopassMode
Array[String]? outSAMattrRGline
Int? limitBAMsortRAM
Int? memory
...
...
@@ -34,6 +35,7 @@ task Star {
${"--runThreadN " + runThreadN} \
${"--outStd " + outStd} \
${"--twopassMode " + twopassMode} \
${"--limitBAMsortRAM " + limitBAMsortRAM} \
${true="--outSAMattrRGline " false="" defined(outSAMattrRGline)} ${sep=" , " outSAMattrRGline}
}
...
...
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