sw_perf/utils.h

19 lines
518 B
C
Raw Normal View History

2023-08-26 00:38:38 +08:00
/*********************************************************************************************
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];
2023-08-26 00:38:38 +08:00
// 将碱基字符转成2位编码
void convert_char_to_2bit(char *str);
#endif