Skip to content
Snippets Groups Projects
Commit dec8818b authored by Sander Bollen's avatar Sander Bollen
Browse files

graph

parent 9760cd58
No related branches found
No related tags found
No related merge requests found
......@@ -91,6 +91,24 @@ The following reference files **may** be provided:
# Graph
Below you can see the rulegraph of the pipeline. The main variant calling flow
is highlighted in red. This only shows dependencies
between rules, and not between jobs. The actual job graph is considerably
more complex, as nearly all rules are duplicated by sample and some
(the scatter jobs) additionally by chunk.
As a rough estimate of the total number of jobs in pipeline you can use
the followig formula:
```math
jobs = 4+(22*n_samples)+(1*n_samples*n_beds)+(1*n_samples*n_chunks)+(1*n_chunks)
```
This gives about 12,000 jobs for a 96-sample run with 2 bed files and 100 chunks.
NOTE: the graph will only render if your markdown viewer supports `plantuml`.
Having trouble viewing the graph? See [this](img/rulegraph.svg) static SVG in stead.
```plantuml
digraph snakemake_dag {
graph[bgcolor=white, margin=0];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment