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

17 lines
309 B
Plaintext

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