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
af550dd0
Commit
af550dd0
authored
4 years ago
by
JasperBoom
Browse files
Options
Downloads
Patches
Plain Diff
Make some outputs optional.
parent
c0152eb1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
nanopack.wdl
+4
-4
4 additions, 4 deletions
nanopack.wdl
with
4 additions
and
4 deletions
nanopack.wdl
+
4
−
4
View file @
af550dd0
...
...
@@ -69,13 +69,13 @@ task NanoPlot {
output {
File dynamicHistogram = outputDir + outputPrefix + "Dynamic_Histogram_Read_length.html"
File readLengthHistogram = outputDir + outputPrefix + "HistogramReadlength.png"
File lengthVsQualityScatterPlotDot = outputDir + outputPrefix + "LengthvsQualityScatterPlot_dot.png"
File lengthVsQualityScatterPlotKde = outputDir + outputPrefix + "LengthvsQualityScatterPlot_kde.png"
File logScaleReadLengthHistogram = outputDir + outputPrefix + "LogTransformed_HistogramReadlength.png"
File report = outputDir + outputPrefix + "NanoPlot-report.html"
File weightedHistogram = outputDir + outputPrefix + "Weighted_HistogramReadlength.png"
File weightedLogScaleHistogram = outputDir + outputPrefix + "Weighted_LogTransformed_HistogramReadlength.png"
File yieldByLength = outputDir + outputPrefix + "Yield_By_Length.png"
File? lengthVsQualityScatterPlotDot = outputDir + outputPrefix + "LengthvsQualityScatterPlot_dot.png"
File? lengthVsQualityScatterPlotKde = outputDir + outputPrefix + "LengthvsQualityScatterPlot_kde.png"
File? stats = outputDir + outputPrefix + "NanoStats.txt"
}
...
...
@@ -110,13 +110,13 @@ task NanoPlot {
# outputs
dynamicHistogram: {description: "Dynamic histogram of read length."}
readLengthHistogram: {description: "Histogram of read length."}
lengthVsQualityScatterPlotDot: {description: "Read lengths vs average read quality plot."}
lengthVsQualityScatterPlotKde: {description: "Read lengths vs average read quality plot."}
logScaleReadLengthHistogram: {description: "Histogram of read lengths after log transformation."}
report: {description: "Html summary report."}
weightedHistogram: {description: "Weighted histogram of read lengths."}
weightedLogScaleHistogram: {description: "Weighted histogram of read lengths after log transformation."}
yieldByLength: {description: "Cumulative yield plot."}
lengthVsQualityScatterPlotDot: {description: "Read lengths vs average read quality plot."}
lengthVsQualityScatterPlotKde: {description: "Read lengths vs average read quality plot."}
stats: {description: "NanoStats report."}
}
}
...
...
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