15 lines
447 B
C
15 lines
447 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
|
|
|
|
// 将碱基字符转成2位编码
|
|
void convert_char_to_2bit(char *str);
|
|
|
|
#endif |