Skip to content

Commit

Permalink
add Regenotyping to DAG
Browse files Browse the repository at this point in the history
  • Loading branch information
Mootor authored and Mootor committed Mar 14, 2024
1 parent d0281ad commit 1f71314
Showing 1 changed file with 24 additions and 8 deletions.
32 changes: 24 additions & 8 deletions docs/call-gSV.puml
Original file line number Diff line number Diff line change
@@ -1,21 +1,25 @@
@startuml
skinparam SwimlaneTitleFontStyle bold

start

:==Normal BAM
---
Input Normal BAM;
:==Input Validation
---
Validate the input BAM and corresponding index file;
split
fork
if (run_discovery) is (true) then
split
:==DELLY gSV
---
Call germline SVs using DELLY;
Call germline SVs using DELLY
(BCF);
:==DELLY gCNV
---
Call germline CNVs using DELLY;
Call germline CNVs using DELLY
(BCF);
:==QC
---
Quality Check variant calls;
Expand All @@ -25,22 +29,34 @@ if (run_discovery) is (true) then
split again
:==Manta gSV
---
Call germline SVs using Manta;
Call germline SVs using Manta
(VCF);
end split
else (false)
endif
stop

split again
fork again
if (run_regenotyping) is (true) then
split
:==Regenotype gSV
---
Regenotype SVs using DELLY germline SV calls;
Regenotype SVs
using DELLY gSV calls
(BCF);
note right: input\nmerged\ngSV sites
split again
:==Regenotype gCNV
---
Regenotype CNVs using DELLY germline CNV calls;
Regenotype CNVs
using DELLY gCNV calls
(BCF);
note left: input\nmerged\ngCNV sites
end split

else (false)
endif
end split
stop

@enduml

Expand Down

0 comments on commit 1f71314

Please sign in to comment.