Skip to content

Bottom Entry Same Row Boundary

A same-row, row-natural exit feeding a same-row target whose entry is forced to BOTTOM: the route dips into a clear channel below the target's box before rising into the port, rather than approaching along the box's own bottom edge.

Mermaid source
examples/topologies/bottom_entry_same_row_boundary.mmd
%%metro title: Example Pipeline
%%metro line: qc | QC | #2dd4bf
%%metro line: main | Main | #c792ea
graph LR
subgraph input [Input]
reads[Reads]
end
subgraph proc [Processing]
%%metro entry: bottom | qc, main
fastqc[FastQC]
trim[Trim]
align[Align]
fastqc -->|qc,main| trim
trim -->|main| align
end
subgraph results [Results]
bam[BAM]
end
reads -->|qc,main| fastqc
align -->|main| bam
CLI command
Terminal window
nf-metro render examples/topologies/bottom_entry_same_row_boundary.mmd -o bottom_entry_same_row_boundary.svg
Rendered map
Example Pipeline 1 2 3 FastQC Reads BAM Trim Align QC Main created with nf-metro v2.0.0+dev