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
0f6459f2
Commit
0f6459f2
authored
5 years ago
by
Ruben Vorderman
Browse files
Options
Downloads
Patches
Plain Diff
addressed review comments
parent
9ffaa72d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
biopet/biopet.wdl
+39
-1
39 additions, 1 deletion
biopet/biopet.wdl
bwa.wdl
+1
-1
1 addition, 1 deletion
bwa.wdl
picard.wdl
+2
-2
2 additions, 2 deletions
picard.wdl
with
42 additions
and
4 deletions
biopet/biopet.wdl
+
39
−
1
View file @
0f6459f2
...
...
@@ -452,7 +452,45 @@ task VcfStats {
"/sample_compare/genotype.non_ref.abs.tsv"
File? sampleCompareGenotypeRefAbs = outputDir + "/sample_compare/genotype.ref.abs.tsv"
File? sampleCompareGenotypeRel = outputDir + "/sample_compare/genotype.rel.tsv"
Array[File] allStats = glob(outputDir + "/*")
# A glob is easier, but duplicates all the outputs
Array[File] allStats = select_all([
general,
genotype,
sampleDistributionAvailableAggregate,
sampleDistributionAvailable,
sampleDistributionCalledAggregate,
sampleDistributionCalled,
sampleDistributionFilteredAggregate,
sampleDistributionFiltered,
sampleDistributionHetAggregate,
sampleDistributionHetNoNRefAggregate,
sampleDistributionHetNonRef,
sampleDistributionHet,
sampleDistributionHomAggregate,
sampleDistributionHomRefAggregate,
sampleDistributionHomRef,
sampleDistributionHom,
sampleDistributionHomVarAggregate,
sampleDistributionHomVar,
sampleDistributionMixedAggregate,
sampleDistributionMixed,
sampleDistributionNoCallAggregate,
sampleDistributionNoCall,
sampleDistributionNonInformativeAggregate,
sampleDistributionNonInformative,
sampleDistributionToalAggregate,
sampleDistributionTotal,
sampleDistributionVariantAggregate,
sampleDistributionVariant,
sampleCompareAlleleAbs,
sampleCompareAlleleNonRefAbs,
sampleCompareAlleleRefAbs,
sampleCompareAlleleRel,
sampleCompareGenotypeAbs,
sampleCompareGenotypeNonRefAbs,
sampleCompareGenotypeRefAbs,
sampleCompareGenotypeRel
])
}
runtime {
...
...
This diff is collapsed.
Click to expand it.
bwa.wdl
+
1
−
1
View file @
0f6459f2
...
...
@@ -34,7 +34,7 @@ task Mem {
output {
File outputBam = outputPath
File outputBamIndex = sub(outputPath, ".bam$", ".bai")
File outputBamIndex = sub(outputPath, "
\
.bam$", ".bai")
}
runtime{
...
...
This diff is collapsed.
Click to expand it.
picard.wdl
+
2
−
2
View file @
0f6459f2
...
...
@@ -230,7 +230,7 @@ task GatherBamFiles {
output {
File outputBam = outputBamPath
File outputBamIndex = sub(outputBamPath, ".bam$", ".bai")
File outputBamIndex = sub(outputBamPath, "
\
.bam$", ".bai")
File outputBamMd5 = outputBamPath + ".md5"
}
...
...
@@ -313,7 +313,7 @@ task MarkDuplicates {
output {
File outputBam = outputBamPath
File outputBamIndex = sub(outputBamPath, ".bam$", ".bai")
File outputBamIndex = sub(outputBamPath, "
\
.bam$", ".bai")
File outputBamMd5 = outputBamPath + ".md5"
File metricsFile = metricsPath
}
...
...
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