Searched defs:base2int (Results 1 – 3 of 3) sorted by relevance
58 unsigned char BaseAsciiMap::base2int[256+1] = member in BaseAsciiMap
61 static unsigned char base2int[256+1]; // base space read (ATCG) variable
225 #define base2int(c) ((c)<'G'?((c)=='A'?0:2):((c)=='G'?1:3)) macro