Add pedagogic content
This commit is contained in:
16
web_src/05_Lectures/00_Computers/unix/images/exp4.dot
Normal file
16
web_src/05_Lectures/00_Computers/unix/images/exp4.dot
Normal file
@@ -0,0 +1,16 @@
|
||||
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" ];
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user