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
2fe5710c
Commit
2fe5710c
authored
5 years ago
by
Cats
Browse files
Options
Downloads
Patches
Plain Diff
add parameter_meta to fastqc
parent
1034cd0f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
bwa.wdl
+2
-2
2 additions, 2 deletions
bwa.wdl
collect-columns.wdl
+1
-1
1 addition, 1 deletion
collect-columns.wdl
cutadapt.wdl
+2
-2
2 additions, 2 deletions
cutadapt.wdl
fastqc.wdl
+80
-0
80 additions, 0 deletions
fastqc.wdl
htseq.wdl
+1
-1
1 addition, 1 deletion
htseq.wdl
stringtie.wdl
+2
-2
2 additions, 2 deletions
stringtie.wdl
with
88 additions
and
8 deletions
bwa.wdl
+
2
−
2
View file @
2fe5710c
...
...
@@ -104,7 +104,7 @@ task Kit {
category: "required"
}
outputPrefix: {
description: "The prefix of the output files, including any parent directories",
description: "The prefix of the output files, including any parent directories
.
",
category: "required"
}
readgroup: {
...
...
@@ -128,7 +128,7 @@ task Kit {
category: "advanced"
}
dockerImage: {
description: "The docker image used for this task. Changing this may result in errors which the developers may chose not to address.",
description: "The docker image used for this task. Changing this may result in errors which the developers may cho
o
se not to address.",
category: "advanced"
}
...
...
This diff is collapsed.
Click to expand it.
collect-columns.wdl
+
1
−
1
View file @
2fe5710c
...
...
@@ -85,7 +85,7 @@ task CollectColumns {
category: "advanced"
}
dockerImage: {
description: "The docker image used for this task. Changing this may result in errors which the developers may chose not to address.",
description: "The docker image used for this task. Changing this may result in errors which the developers may cho
o
se not to address.",
category: "advanced"
}
}
...
...
This diff is collapsed.
Click to expand it.
cutadapt.wdl
+
2
−
2
View file @
2fe5710c
...
...
@@ -374,7 +374,7 @@ task Cutadapt {
catgeory: "advanced"
}
cores: {
description: "The number of cores to use",
description: "The number of cores to use
.
",
catgeory: "advanced"
}
memory: {
...
...
@@ -382,7 +382,7 @@ task Cutadapt {
category: "advanced"
}
dockerImage: {
description: "The docker image used for this task. Changing this may result in errors which the developers may chose not to address.",
description: "The docker image used for this task. Changing this may result in errors which the developers may cho
o
se not to address.",
category: "advanced"
}
}
...
...
This diff is collapsed.
Click to expand it.
fastqc.wdl
+
80
−
0
View file @
2fe5710c
...
...
@@ -63,6 +63,79 @@ task Fastqc {
cpu: threads
docker: dockerImage
}
parameter_meta {
seqFile: {
description: "A FastQ file.",
category: "required"
}
outdirPath: {
description: "The path to write the output to",
catgory: "required"
}
casava: {
description: "Equivalent to fastqc's --casava flag.",
catgeory: "advanced"
}
nano: {
description: "Equivalent to fastqc's --nano flag.",
catgeory: "advanced"
}
noFilter: {
description: "Equivalent to fastqc's --nofilter flag.",
catgeory: "advanced"
}
extract: {
description: "Equivalent to fastqc's --extract flag.",
catgeory: "advanced"
}
nogroup: {
description: "Equivalent to fastqc's --nogroup flag.",
catgeory: "advanced"
}
minLength: {
description: "Equivalent to fastqc's --min_length option.",
catgeory: "advanced"
}
format: {
description: "Equivalent to fastqc's --format option.",
catgeory: "advanced"
}
contaminants: {
description: "Equivalent to fastqc's --contaminants option.",
catgeory: "advanced"
}
adapters: {
description: "Equivalent to fastqc's --adapters option.",
catgeory: "advanced"
}
limits: {
description: "Equivalent to fastqc's --limits option.",
catgeory: "advanced"
}
kmers: {
description: "Equivalent to fastqc's --kmers option.",
catgeory: "advanced"
}
dir: {
description: "Equivalent to fastqc's --dir option.",
catgeory: "advanced"
}
threads: {
description: "The number of cores to use.",
catgeory: "advanced"
}
dockerImage: {
description: "The docker image used for this task. Changing this may result in errors which the developers may choose not to address.",
category: "advanced"
}
}
meta {
WDL_AID: {
exclude: ["NoneFile", "NoneArray"]
}
}
}
task GetConfiguration {
...
...
@@ -89,4 +162,11 @@ task GetConfiguration {
memory: "2G" # Needs more than 1 to pull the docker image
docker: dockerImage
}
parameter_meta {
dockerImage: {
description: "The docker image used for this task. Changing this may result in errors which the developers may choose not to address.",
category: "advanced"
}
}
}
This diff is collapsed.
Click to expand it.
htseq.wdl
+
1
−
1
View file @
2fe5710c
...
...
@@ -82,7 +82,7 @@ task HTSeqCount {
category: "advanced"
}
dockerImage: {
description: "The docker image used for this task. Changing this may result in errors which the developers may chose not to address.",
description: "The docker image used for this task. Changing this may result in errors which the developers may cho
o
se not to address.",
category: "advanced"
}
}
...
...
This diff is collapsed.
Click to expand it.
stringtie.wdl
+
2
−
2
View file @
2fe5710c
...
...
@@ -83,7 +83,7 @@ task Stringtie {
category: "advanced"
}
dockerImage: {
description: "The docker image used for this task. Changing this may result in errors which the developers may chose not to address.",
description: "The docker image used for this task. Changing this may result in errors which the developers may cho
o
se not to address.",
category: "advanced"
}
}
...
...
@@ -177,7 +177,7 @@ task Merge {
category: "advanced"
}
dockerImage: {
description: "The docker image used for this task. Changing this may result in errors which the developers may chose not to address.",
description: "The docker image used for this task. Changing this may result in errors which the developers may cho
o
se not to address.",
category: "advanced"
}
}
...
...
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