| 10 | |
| 11 | == Simplified Overview == |
| 12 | |
| 13 | This simplified overview hides intermediate sort and indexing steps. |
| 14 | |
| 15 | {{{#!graphviz |
| 16 | |
| 17 | digraph g { |
| 18 | size="5,5" |
| 19 | |
| 20 | subgraph cluster_0 { |
| 21 | style=filled; |
| 22 | color=lightgrey; |
| 23 | node [style=filled,color=white]; |
| 24 | "Reads.1fq.gz" -> align1 -> alignPE |
| 25 | "Reads.2.fq.gz" -> align2 -> alignPE -> MarkDuplicates -> RealignIndelsAndFixMates -> "Lane.aligned.bam" |
| 26 | label = "Per lane"; |
| 27 | } |
| 28 | |
| 29 | subgraph cluster_1 { |
| 30 | style=filled; |
| 31 | color=lightgrey; |
| 32 | node [style=filled,color=white]; |
| 33 | "Lane1.aligned.bam" -> RealignIndelsAndFixMates |
| 34 | "Lane2.aligned.bam" -> RealignIndelsAndFixMates |
| 35 | "Lane2.aligned.bam" -> RealignIndelsAndFixMates |
| 36 | RealignIndelsAndFixMates2 -> IndelGenotyperV2 -> FilterSingleCalls -> UnifiedGenotyper -> Filtration -> VariantEval |
| 37 | Filtration -> VCF |
| 38 | label = "Per Sample"; |
| 39 | } |
| 40 | |
| 41 | |
| 42 | |
| 43 | |
| 44 | } |
| 45 | |
| 46 | |
| 47 | }}} |
| 48 | |
| 49 | |