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
ee1c59a6
Commit
ee1c59a6
authored
5 years ago
by
cedrick
Browse files
Options
Downloads
Patches
Plain Diff
add parameter meta
parent
0ec5ac32
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
clever.wdl
+20
-1
20 additions, 1 deletion
clever.wdl
delly.wdl
+10
-0
10 additions, 0 deletions
delly.wdl
manta.wdl
+14
-0
14 additions, 0 deletions
manta.wdl
picard.wdl
+8
-0
8 additions, 0 deletions
picard.wdl
survivor.wdl
+8
-0
8 additions, 0 deletions
survivor.wdl
with
60 additions
and
1 deletion
clever.wdl
+
20
−
1
View file @
ee1c59a6
...
...
@@ -23,7 +23,7 @@ task Prediction {
~{bwaIndex.fastaFile} \
~{outputPath}
}
output {
File predictions = outputPath + "/predictions.vcf"
}
...
...
@@ -34,6 +34,15 @@ task Prediction {
docker: dockerImage
}
parameter_meta {
bamFile: {description: "The bam file to process.", category: "required"}
bamIndex: {description: "The index bam file.", category: "required"}
outputPath: {description: "The location the output VCF file should be written.", category: "common"}
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"}
bwaIndex: {description: "The BWA index files.", category: "required"}
}
}
task Mateclever {
...
...
@@ -76,4 +85,14 @@ task Mateclever {
memory: memory
docker: dockerImage
}
parameter_meta {
fiteredBam: {description: "The bam file where sequences less than 30bp were removed.", category: "required"}
indexedFiteredBam: {description: "The index of the filtered bam file.", category: "required"}
outputPath: {description: "The location the output VCF file should be written.", category: "common"}
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"}
bwaIndex: {description: "The BWA index files.", category: "required"}
predictions: {description: "The predicted deletions (VCF) from clever.", category: "required"}
}
}
This diff is collapsed.
Click to expand it.
delly.wdl
+
10
−
0
View file @
ee1c59a6
...
...
@@ -30,4 +30,14 @@ task CallSV {
docker: dockerImage
memory: memory
}
parameter_meta {
bamFile: {description: "The bam file to process.", category: "required"}
bamIndex: {description: "The index bam file.", category: "required"}
referenceFasta: referenceFasta: {description: "The reference fasta file also used for mapping.", category: "advanced"}
referenceFastaFai: { description: "Fasta index (.fai) file of the reference", category: "required" }
outputPath: {description: "The location the output VCF file should be written.", category: "common"}
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.
manta.wdl
+
14
−
0
View file @
ee1c59a6
...
...
@@ -116,5 +116,19 @@ task Germline {
memory: "~{memoryGb}G"
docker: dockerImage
}
parameter_meta {
runDir: {description: "The directory to use as run/output directory.", category: "common"}
bamFile: {description: "The bam file to process.", category: "required"}
bamIndex: {description: "The index bam file.", category: "required"}
referenceFasta: referenceFasta: {description: "The reference fasta file also used for mapping.", category: "advanced"}
referenceFastaFai: { description: "Fasta index (.fai) file of the reference", category: "required" }
outputPath: {description: "The location the output VCF file should be written.", category: "common"}
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"}
callRegions: {description: "The bed file which indicates the regions to operate on.", category: "common"}
callRegionsIndex: {description: "The index of the bed file which indicates the regions to operate on.", category: "common"}
exome: {description: "Whether or not the data is from exome sequencing.", category: "common"}
}
}
This diff is collapsed.
Click to expand it.
picard.wdl
+
8
−
0
View file @
ee1c59a6
...
...
@@ -640,5 +640,13 @@ task RenameSample {
docker: dockerImage
memory: memory
}
parameter_meta {
inputVcf: {description: "The VCF file to process.", category: "required"}
newSampleName: {description: "A string to replace the old sample name.", category: "required"}
outputPath: {description: "The location the output VCF file should be written.", category: "common"}
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.
survivor.wdl
+
8
−
0
View file @
ee1c59a6
...
...
@@ -40,4 +40,12 @@ task Merge {
docker: dockerImage
memory: memory
}
parameter_meta {
filePaths: {description: "An array of VCF files (predictions) to be merged by SURVIVOR", category: "required"}
sample: {description: "The name of the sample", category: "required"}
outputPath: {description: "The location the output VCF file should be written.", category: "common"}
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.
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