mw.h

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

H
50
字号
/* Concurrent read version *//* $Name: fa35_03_06 $ - $Id: mw.h,v 1.24 2007/10/05 12:58:38 wrp Exp $ */#include <sys/types.h>#include "param.h"#include "aln_structs.h"#ifndef FSEEK_T_DEF#ifndef USE_FSEEKOtypedef long fseek_t;#elsetypedef off_t fseek_t;#endif#endifstruct beststr {  struct seq_record *seq;	/* sequence info */  struct beststr *bbp_link;  struct rstruct rst;		/* results info */  int n1;		/* duplicate of seq.n1, used for error checking/debugging */  int frame;		/* in buf2_str */  double zscore;	/* the z-score mostly exists for sorting best scores */  /* description line */  char *bline;  /* information for final alignment */  struct a_struct aln_d;	/* these values are used by -m9 */  int a_res_cnt;  struct a_res_str a_res;	/* need only a_res, not a_res[2], because different frames				   for the same sequence are stored separately */  int have_ares;  float percent, gpercent;};struct stat_str {  int score;  int n1;  double comp;  double H;  double escore;  int segnum;  int seglen;};

⌨️ 快捷键说明

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