]> git.donarmstrong.com Git - biopieces.git/blob - code_c/Maasha/src/test_revcomp.c
read_solexa now handles both decimal and octal scores
[biopieces.git] / code_c / Maasha / src / test_revcomp.c
1 #include <stdio.h>
2 #include "common.h"
3 #include "seq.h"
4
5 int main()
6 {
7     char seq[] = "ACGACATCGGACTGACactgactgacatgcactg";
8
9     printf( "seq type: %s\n", seq_guess_type( seq ) );
10
11     printf( "before revcomp: %s\n", seq );
12
13     revcomp_nuc( seq );
14
15     printf( "after revcomp:  %s\n", seq );
16
17     return 0;
18 }