dpalign.h

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

H
45
字号
/* * $Id: dpalign.h 1339 2006-09-21 19:46:28Z tbailey $ *  * $Log$ * Revision 1.1  2005/07/29 18:37:27  nadya * Initial revision * */#ifndef DPALIGN_H#  define DPALIGN_Hextern char *dp_align(  int alength,					/* length of alphabet */  int n,					/* length of logodds matrix */  LOGODDS logodds,				/* logodds matrix */  char *seq1,					/* consensus of logodds */  int m,					/* length of sequence */  char *eseq,					/* integer encoded sequence */  double wg,					/* gap cost (initialization) */   double ws,					/* space cost (extension) */   BOOLEAN endgaps 				/* penalize end gaps if TRUE */);extern char **dp_multi_align(  P_PROB sites,                                 /* the sites */  int nsites,                                   /* the number of sites */  int w,                                        /* width of sites */  int flank,					/* add flank cols on lft+rgt */  DATASET *dataset                              /* the dataset */);extern int g_align(  char **ma,				/* the multiple alignment */  int nseq,				/* number of sequences in alignment */  int ncol,				/* number of columns in alignment */  int left,				/* leftmost allowed end */  int right,				/* rightmost allowed end */  int minw,				/* minimum width */  int *off,				/* offset of g-alignment rel. to left */  int *w				/* width of g-alignment */);#endif

⌨️ 快捷键说明

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