17 lines
383 B
Plaintext
17 lines
383 B
Plaintext
|
|
"test_lib.8th" f:include
|
||
|
|
|
||
|
|
"hamming.8th" f:include
|
||
|
|
|
||
|
|
with: test
|
||
|
|
|
||
|
|
{ 0 .eq. "" "" distance }
|
||
|
|
{ 0 .eq. "A" "A" distance }
|
||
|
|
{ 0 .eq. "GGACTGAAATCTG" "GGACTGAAATCTG" distance }
|
||
|
|
{ 1 .eq. "G" "T" distance }
|
||
|
|
{ 9 .eq. "GGACGGATTCTG" "AGGACGGATTCT" distance }
|
||
|
|
{ null .eq. "" "G" distance }
|
||
|
|
{ null .eq. "AATG" "AAA" distance }
|
||
|
|
{ null .eq. "ATA" "AGTG" distance }
|
||
|
|
{ null .eq. "G" "" distance }
|
||
|
|
|
||
|
|
bye
|