-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #157 from uclahs-cds/nwiltsie-add-plantuml
Add PlantUML flow diagram
- Loading branch information
Showing
6 changed files
with
188 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
@startuml | ||
|
||
skinparam ConditionEndStyle hline | ||
|
||
start | ||
|
||
if (Explicit intervals?) is (Yes) then | ||
:==run_SplitIntervals_GATK | ||
---- | ||
Split reference genome into up | ||
to **scatter_count** interval lists, | ||
without subdividing any of the | ||
input intervals; | ||
else (No) | ||
:==run_SplitIntervals_GATK | ||
---- | ||
Split reference genome into | ||
**scatter_count** interval lists; | ||
endif | ||
|
||
split | ||
|
||
:==run_HaplotypeCallerVCF_GATK | ||
---- | ||
Generate VCFs for each split interval | ||
using HaplotypeCaller; | ||
|
||
:==run_MergeVcfs_Picard_VCF | ||
---- | ||
Merge raw variants into whole VCF file; | ||
|
||
#palegreen:Per-sample raw VCF + index files> | ||
|
||
partition "Recalibrate Variants" { | ||
|
||
:==run_VariantRecalibratorSNP_GATK | ||
---- | ||
Generate Variant Quality Score Recalibration | ||
(VQSR) table for SNPs; | ||
|
||
:==run_ApplyVQSR_GATK_SNP | ||
---- | ||
Filter SNPs based on VQSR table; | ||
|
||
:==run_VariantRecalibratorINDEL_GATK | ||
---- | ||
Generate VQSR table for INDELs; | ||
|
||
:==run_ApplyVQSR_GATK_INDEL | ||
---- | ||
Filter INDELs based on VQSR table; | ||
|
||
} | ||
|
||
#palegreen:SNP and INDEL recalibrated | ||
variants + index files> | ||
|
||
:==filter_gSNP_GATK | ||
---- | ||
Filter ambiguous variants with | ||
customized Perl script; | ||
|
||
#palegreen:Filtered germline | ||
variants + index files> | ||
|
||
detach | ||
|
||
split again | ||
|
||
:==run_HaplotypeCallerGVCF_GATK | ||
---- | ||
Generate GVCFs for each split interval | ||
using HaplotypeCaller; | ||
|
||
:==run_MergeVcfs_Picard_GVCF | ||
---- | ||
Merge raw variants into whole GVCF file; | ||
|
||
#palegreen:Per-sample GVCF + index files> | ||
|
||
detach | ||
|
||
endsplit | ||
|
||
|
||
@enduml | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.