]> git.donarmstrong.com Git - biopieces.git/blob - code_c/Maasha/src/test_oligo2bin.c
fixed encoding bug in read_454
[biopieces.git] / code_c / Maasha / src / test_oligo2bin.c
1 #include <stdio.h>
2 #include "common.h"
3 #include "seq.h"
4
5
6 int main()
7 {
8     int bin;
9
10               /*  123456789012345 */
11     char *word = "GGGGGGGGGGGGGGG";
12     
13     bin = oligo2bin( word );
14
15     printf( "bin->%d\n", bin );
16     
17     return 0;
18 }