summaryrefslogtreecommitdiff
path: root/nutrition/gv/nutrient-sensing-sodium-training.gv
blob: f20f6453d94def420495a7761f159a37968f8adf (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
32
#!/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="Training 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+" -> {
      "Brine"
      "Rock salt"
    } -> {
      Sodium
      Chlorine
    }
  }
//}