hisat-3n/li_hla/defs.h

20 lines
331 B
C
Raw Normal View History

2025-01-18 13:09:52 +00:00
#ifndef _LSONG_RSCAF_DEFS_HEADER
#define _LSONG_RSCAF_DEFS_HEADER
#include <stdint.h>
#define MAX_SEG_COUNT 127
struct _pair
{
int64_t a, b ;
} ;
char nucToNum[26] = { 0, -1, 1, -1, -1, -1, 2,
-1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 3,
-1, -1, -1, -1, -1, -1 } ;
char numToNuc[26] = {'A', 'C', 'G', 'T'} ;
#endif