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
22933762
Commit
22933762
authored
4 years ago
by
Cats
Browse files
Options
Downloads
Patches
Plain Diff
add germline options to purple
parent
0862eab3
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
hmftools.wdl
+7
-1
7 additions, 1 deletion
hmftools.wdl
with
7 additions
and
1 deletion
hmftools.wdl
+
7
−
1
View file @
22933762
...
...
@@ -452,6 +452,7 @@ task Purple {
Array[File]+ cobaltOutput
File gcProfile
File somaticVcf
File germlineVcf
File filteredSvVcf
File fullSvVcf
File fullSvVcfIndex
...
...
@@ -460,6 +461,7 @@ task Purple {
File referenceFastaDict
File driverGenePanel
File somaticHotspots
File germlineHotspots
Int threads = 1
Int timeMinutes = 60
...
...
@@ -477,6 +479,7 @@ task Purple {
-cobalt ~{sub(cobaltOutput[0], basename(cobaltOutput[0]), "")} \
-gc_profile ~{gcProfile} \
-somatic_vcf ~{somaticVcf} \
-germline_vcf ~{germlineVcf} \
-structural_vcf ~{filteredSvVcf} \
-sv_recovery_vcf ~{fullSvVcf} \
-circos /usr/local/bin/circos \
...
...
@@ -484,6 +487,7 @@ task Purple {
-driver_catalog \
-driver_gene_panel ~{driverGenePanel} \
-somatic_hotspots ~{somaticHotspots} \
-germline_hotspots ~{germlineHotspots} \
-threads ~{threads}
}
...
...
@@ -550,6 +554,7 @@ task Purple {
cobaltOutput: {description: "The output files of hmftools cobalt", category: "required"}
gcProfile: {description: "A file describing the GC profile of the reference genome.", category: "required"}
somaticVcf: {description: "The somatic variant calling results.", category: "required"}
germlineVcf: {description: "The germline variant calling results.", category: "required"}
filteredSvVcf: {description: "The filtered structural variant calling results.", category: "required"}
fullSvVcf: {description: "The unfiltered structural variant calling results.", category: "required"}
referenceFasta: {description: "The reference fasta file.", category: "required"}
...
...
@@ -557,7 +562,8 @@ task Purple {
category: "required"}
referenceFastaFai: {description: "The index for the reference fasta file.", category: "required"}
driverGenePanel: {description: "A TSV file describing the driver gene panel.", category: "required"}
somaticHotspots: {description: "A vcf file with hotspot variant sites.", category: "required"}
somaticHotspots: {description: "A vcf file with hotspot somatic variant sites.", category: "required"}
germlineHotspots: {description: "A vcf file with hotspot germline variant sites.", category: "required"}
threads: {description: "The number of threads the program will use.", category: "advanced"}
memory: {description: "The amount of memory this job will use.", 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