Add pedagogic content

This commit is contained in:
Eric Coissac
2025-11-16 14:27:42 +01:00
parent 78156a8c95
commit 35d275c104
63 changed files with 21409 additions and 1998 deletions

View File

@@ -0,0 +1,15 @@
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 = "T" ];
0 -> 1 [ label = "G" ];
1 -> 2 [ label = "T" ];
2 -> 3 [ label = "G" ];
}