5 #include <stdint.h> // int_fast8_t
6 #include <stdlib.h> // malloc
8 FORCE_INLINE
void NormalizeChrSeq(char *seq
){
26 } // Whether a looking-up array[64] can be faster ?
31 // *seq must have been Normalized to /[ATCGN]*/
32 FORCE_INLINE
char *ChrSeqRevComp(char const * seq
, size_t len
){
33 char *revcomseq
=malloc(len
+1);
34 const char *tmpseqin
=seq
+len
-1; // if len is shorter than real length, trim it.
35 char *tmpseqrc
=revcomseq
;
53 } // Whether a looking-up array[32] can be faster ?