Home
last modified time | relevance | path

Searched defs:base2int (Results 1 – 3 of 3) sorted by relevance

/dports/biology/bamutil/bamUtil-1.0.15/libStatGen/general/
H A DBaseAsciiMap.cpp58 unsigned char BaseAsciiMap::base2int[256+1] = member in BaseAsciiMap
H A DBaseAsciiMap.h61 static unsigned char base2int[256+1]; // base space read (ATCG) variable
/dports/biology/subread/subread-2.0.2-source/src/
H A Dsubread.h225 #define base2int(c) ((c)<'G'?((c)=='A'?0:2):((c)=='G'?1:3)) macro