Files
OBIJupyterHub/web_src/05_Lectures/00_Computers/unix/images/exp6.dot
2025-11-16 14:55:30 +01:00

17 lines
310 B
Plaintext

digraph finite_state_machine {
rankdir=LR;
{
node [style = invis]; I;
}
node [shape = doublecircle]; 4;
node [shape = circle];
I -> 0
0 -> 1 [ label = "T" ];
1 -> 2 [ label = "A" ];
1 -> 3 [ label = "G" ];
2 -> 4 [ label = "A" ];
2 -> 4 [ label = "G" ];
3 -> 4 [ label = "A" ];
}