smith_waterman_sse2.h

来自「序列对齐 Compare a protein sequence to a pr」· C头文件 代码 · 共 40 行

H
40
字号
/******************************************************************  Copyright 2006 by Michael Farrar.  All rights reserved.  This program may not be sold or incorporated into a commercial product,  in whole or in part, without written consent of Michael Farrar.  For   further information regarding permission for use or reproduction, please   contact: Michael Farrar at farrar.michael@gmail.com.*******************************************************************//*  Written by Michael Farrar, 2006.  Please send bug reports and/or suggestions to farrar.michael@gmail.com.*/#ifndef SMITH_WATERMAN_SSE2_H#define SMITH_WATERMAN_SSE2_Hintsmith_waterman_sse2_word(const unsigned char *     query_sequence,                         unsigned short *    query_profile_word,                         const int                 query_length,                         const unsigned char *     db_sequence,                         const int                 db_length,                         unsigned short      gap_open,                         unsigned short      gap_extend,                         struct f_struct *   f_str);intsmith_waterman_sse2_byte(const unsigned char *     query_sequence,                         unsigned char *     query_profile_byte,                         const int                 query_length,                         const unsigned char *     db_sequence,                         const int                 db_length,                         unsigned char       bias,                         unsigned char       gap_open,                         unsigned char       gap_extend,                         struct f_struct *   f_str);#endif /* SMITH_WATERMAN_SSE2_H */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?