blob: f43649a77bccfb5bb9f0e4b82d0190fa1e67b2b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#!/usr/bin/env -S sh -c '( printf "%s\n" "digraph SomeGraph {"; cat $0; printf "}" ) | dot -v -Tx11 # ikiwiki graphviz.pm sucks'
//digraph Nutrients {
rankdir=LR
newrank=true
node [shape=box, style=filled, fillcolor=white]
subgraph cluster_input_distribution {
label="Current Input Distribution: Selection Effects"
subgraph cluster_receptors {
label="Regulatory\nsensing"
style=filled
fillcolor=lightcoral
node [shape=circle]
ENaC
}
subgraph cluster_elements {
label="Essential\nElements"
style=filled
fillcolor=lightgrey
Sodium
Chlorine
}
// Receptors
ENaC -> "Na+" -> {
"Table salt"
} -> {
Sodium
Chlorine
}
}
//}
|