-
Notifications
You must be signed in to change notification settings - Fork 7
Subworkflows
Young edited this page Apr 25, 2023
·
5 revisions
Donut Falls is divided into several sub-workflows
flowchart TB
subgraph Nanopore assembly
A[nanopore fastq]-->B[filter]
B --> C[assembly with assembler]
C --> D[polishing with medaka]
end
subgraph With Illumina polishing
F[illumina fastq] --> B
D --> G[additional polishing]
F --> G
end
subgraph Hybrid assembly
H[illumina fastq] --> I[assembly]
J[nanopore fastq] --> I
end
A --> E[metrics]
C --> E
D --> E
G --> E
I --> E