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
b470abe9
Commit
b470abe9
authored
6 years ago
by
Ruben Vorderman
Browse files
Options
Downloads
Patches
Plain Diff
add multiqc task
parent
a6ff5181
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!75
Add multiqc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
multiqc.wdl
+32
-6
32 additions, 6 deletions
multiqc.wdl
with
32 additions
and
6 deletions
multiqc.wdl
+
32
−
6
View file @
b470abe9
...
...
@@ -3,6 +3,7 @@ version 1.0
task MultiQC {
input {
String? preCommand
File analysisDirectory
Boolean force = false
Boolean dirs = false
Int? dirsDepth
...
...
@@ -16,9 +17,10 @@ task MultiQC {
String? ignore
String? ignoreSamples
Boolean ignoreSymlinks = false
File? sampleNames
File? fileList
Array[String] exclude
Array[String] module
Array[String]
+?
exclude
Array[String]
+?
module
Boolean dataDir = false
Boolean noDataDir = false
String? dataFormat
...
...
@@ -28,12 +30,13 @@ task MultiQC {
Boolean interactive = false
Boolean lint = false
Boolean pdf = false
Boolean
noM
egaQCUpload =
true
Boolean
m
egaQCUpload =
false # This must be actively enabled in my opinion. The tools default is to upload.
File? config # A directory
String? clConfig
Boolean verbose = false
Boolean quiet = false
}
command {
set -e -o pipefail
~{preCommand}
...
...
@@ -42,10 +45,33 @@ task MultiQC {
~{true="--dirs" false="" dirs} \
~{"--dirs-depth " + dirsDepth} \
~{true="--fullnames" false="" fullNames} \
~{"--title " + title
} \
~{"--comment " + comment
} \
~{"--title " + title} \
~{"--comment " + comment} \
~{"--filename " + fileName} \
~{
~{"--outdir " + outDir} \
~{"--template " + template} \
~{"--tag " + tag} \
~{"--ignore " + ignore} \
~{"--ignore-samples" + ignoreSamples} \
~{true="--ignore-symlinks" false="" ignoreSymlinks} \
~{"--sample-names " + sampleNames} \
~{"--file-list " + fileList} \
~{true="--exclude " false="" defined(exclude)}~{sep=" --exclude " select_first([exclude])} \
~{true="--module " false="" defined(module)}~{sep=" --module " select_first([module])} \
~{true="--data-dir" false="" dataDir} \
~{true="--no-data-dir" false="" noDataDir} \
~{"--data-format " + dataFormat} \
~{true="--zip-data-dir" false="" zipDataDir} \
~{true="--export" false="" export} \
~{true="--flat" false="" flat} \
~{true="--interactive" false="" interactive} \
~{true="--lint" false="" lint} \
~{true="--pdf" false="" pdf} \
~{false="--no-megaqc-upload" true="" megaQCUpload} \
~{"--config " + config} \
~{"--cl-config " + clConfig } \
~{analysisDirectory}
}
output {}
}
\ No newline at end of file
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