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
765cf25f
Commit
765cf25f
authored
5 years ago
by
Cats
Browse files
Options
Downloads
Patches
Plain Diff
add parameter_meta to MarkDuplicates and MergeVCFs
parent
843f0bfd
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
picard.wdl
+26
-0
26 additions, 0 deletions
picard.wdl
scripts
+1
-1
1 addition, 1 deletion
scripts
with
27 additions
and
1 deletion
picard.wdl
+
26
−
0
View file @
765cf25f
...
...
@@ -430,6 +430,20 @@ task MarkDuplicates {
docker: dockerImage
memory: memory
}
parameter_meta {
inputBams: {description: "The BAM files for which the duplicate reads should be marked.", category: "required"}
inputBamIndexes: {description: "Th eindexes for the input BAM files.", category: "required"}
outputBamPath: {description: "The location where the ouptut BAM file should be written.", category: "required"}
metricsPath: {description: "The location where the output metrics file should be written.", category: "required"}
read_name_regex: {description: "Equivalent to the `READ_NAME_REGEX` option of MarkDuplicates.", category: "advanced"}
memory: {description: "The amount of memory this job will use.", category: "advanced"}
javaXmx: {description: "The maximum memory available to the program. Should be lower than `memory` to accommodate JVM overhead.",
category: "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"}
}
}
# Combine multiple VCFs or GVCFs from scattered HaplotypeCaller runs
...
...
@@ -465,6 +479,18 @@ task MergeVCFs {
docker: dockerImage
memory: memory
}
parameter_meta {
inputVCFs: {description: "The VCF files to be merged.", category: "required"}
inputVCFsIndexes: {description: "The indexes of the VCF files.", category: "required"}
outputVcfPath: {description: "The location the output VCf file should be written to.", category: "required"}
memory: {description: "The amount of memory this job will use.", category: "advanced"}
javaXmx: {description: "The maximum memory available to the program. Should be lower than `memory` to accommodate JVM overhead.",
category: "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"}
}
}
task SamToFastq {
...
...
This diff is collapsed.
Click to expand it.
scripts
@
fc603e5d
Compare
76d1e695
...
fc603e5d
Subproject commit
76d1e695812aecd55fdf0221dc08b25d3ac7dde1
Subproject commit
fc603e5d408b89b99297fb5737586c059c5f9df6
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