display.h

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

H
76
字号
/* * $Id: display.h 1339 2006-09-21 19:46:28Z tbailey $ *  * $Log$ * Revision 1.1  2005/07/29 18:37:03  nadya * Initial revision * */#ifndef DISPLAY_H#  define DISPLAY_Hextern void print_results(  DATASET *dataset,		/* the dataset */  DATASET *neg_dataset,		/* negative examples */  MODEL *model,			/* the model */  MODEL *neg_model, 		/* negative model */  CANDIDATE *candidates  	/* candidate models found */);extern void print_theta(  int imotif,		/* motif number */  int format,		/* 1 = floating point              		   2 = integer */   int nsites,           /* number of sites (discrete) */  THETA theta,		/* theta */  int w,		/* width of motif */  double log_ev,	/* log motif E-value */  char *str_space,	/* space for printing strand direction */  DATASET *dataset,	/* the dataset */   FILE *outfile	 	/* NULL stdout; otherwise, print to split file */);extern void print_zij(  DATASET *dataset,			/* the dataset */  MODEL *model				/* the model */);extern void print_wij(  DATASET *dataset		/* the dataset */);extern char *get_consensus(  THETA theta,			/* motif theta */  int w,			/* width of motif */  DATASET *dataset,		/* the dataset */  int N,			/* number of letters for each position */  double min_prob		/* minimum cumulative prob for N letters */);extern void print_command_summary(  MODEL *model,                 /* the model */  DATASET *dataset              /* the dataset */);extern void print_dataset_summary (  DATASET *dataset 		/* the dataset */);extern void print_summary(  MODEL *model,				/* the model */  DATASET *dataset,                     /* the dataset */  LO **los,                             /* the LO structures */  int nmotifs,                          /* number of motifs */   double **pv,                          /* p-value of score distribution */  FILE *outfile                         /* where to print */);extern void print_meme_doc(  char *meme_directory                  /* meme source directory */);#endif

⌨️ 快捷键说明

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