19 lines
518 B
C
19 lines
518 B
C
/*********************************************************************************************
|
|
Description: Some useful functions
|
|
|
|
Copyright : All right reserved by NCIC.ICT
|
|
|
|
Author : Zhang Zhonghai
|
|
Date : 2023/08/25
|
|
***********************************************************************************************/
|
|
#ifndef __UTILS_H
|
|
#define __UTILS_H
|
|
|
|
extern char t_2bit2char[5];
|
|
|
|
extern unsigned char nst_nt4_table[256];
|
|
|
|
// 将碱基字符转成2位编码
|
|
void convert_char_to_2bit(char *str);
|
|
|
|
#endif |