aln_structs.h

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

H
40
字号
#ifndef A_STRUCT#define A_STRUCTstruct a_struct {  int smin0;		/* coordinate of display start in seqc0 */  int smin1;		/* coordinate of display start in seqc1 */  int amin0, amax0;	/* coordinate of alignment start in seqc0 */  int amin1, amax1;	/* coordinate of alignment start in seqc1 */  int llen;  int llcntx, llcntx_flg, showall;  int qlrev, qlfact;  int llrev, llfact, llmult;  int frame;  int a_len;			/* consensus alignment length */  int nident, nsim, ngap_q, ngap_l, nfs;	/* number of identities, gaps in q, l */  long q_offset, l_offset;	/* offsets that include everything */  long d_start0,d_stop0;  long d_start1,d_stop1;};struct a_res_str {  int sw_score;		/* do_walign() score */  int min0, max0;	/* boundaries of alignment in aa0 */  int min1, max1;	/* boundaries of alignment in aa1 */  int *res;		/* encoded alignment */  int nres;		/* length of decoded alignment */  struct a_res_str *next;	/* pointer to next alignment */  /* encoded alignment/annotation information */  char *aln_code;  int aln_code_n;  char *ann_code;  int ann_code_n;};#endif

⌨️ 快捷键说明

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