align.h

来自「EM算法的改进」· C头文件 代码 · 共 36 行

H
36
字号
/* * $Id: align.h 1339 2006-09-21 19:46:28Z tbailey $ *  * $Log$ * Revision 1.1  2005/07/29 18:34:59  nadya * Initial revision * */#ifndef ALIGN_H#  define ALIGN_H #include <macros.h>#include <user.h>#include <logodds.h>#include <hash_alph.h>extern int align(  int imotif,                           /* motif number */  LOGODDS logodds,			/* log-odds array */  int seqno,				/* sequence number (from 1) 					   if <= 0, print alignment, 					   otherwise, print .motif file */  double threshold,			/* align sites above this */  char *sample_name,			/* name of sample */  char *eseq,				/* integer-coded sequence */  BOOLEAN d[4],				/* strand directions to use */  int lseq,				/* length of sequence */  int w,				/* length of site */  double *scores,			/* array to put scores in */  FILE *outfile				/* stream for output */);#endif

⌨️ 快捷键说明

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