Skip to content

Cross Row Gap Wrap

A cross-row feed runs its horizontal in the inter-row gap and drops straight in, rather than diving under the return row counter to its flow.

Mermaid source
examples/topologies/cross_row_gap_wrap.mmd
%%metro title: Cross-Row Gap Wrap
%%metro style: dark
%%metro line: main | Main | #0570b0
%%metro line: feed | Feed | #e63946
%%metro fold_threshold: 8
graph LR
subgraph ingest [Ingest]
i1[Read]
i2[QC]
i1 -->|main,feed| i2
end
subgraph align [Align]
a1[Map]
a2[Sort]
a1 -->|main| a2
end
subgraph dedup [Dedup]
d1[Mark]
d2[Recal]
d1 -->|main| d2
end
subgraph merge_pt [Merge]
g1[Combine]
g2[Refine]
g1 -->|main,feed| g2
end
subgraph report [Report]
rp1[Summarise]
rp2[Publish]
rp1 -->|main| rp2
end
i2 -->|main| a1
a2 -->|main| d1
d2 -->|main| g1
i2 -->|main| g1
g2 -->|main| rp1
i2 -->|feed| g1
CLI command
Terminal window
nf-metro render examples/topologies/cross_row_gap_wrap.mmd -o cross_row_gap_wrap.svg
Rendered map
Cross-Row Gap Wrap 1 2 3 4 5 Read Map Mark Combine Summarise QC Sort Recal Refine Publish Main Feed created with nf-metro v1.1.0+dev