banner.c

来自「EM算法的改进」· C语言 代码 · 共 60 行

C
60
字号
/* * $Id: banner.c 1339 2006-09-21 19:46:28Z tbailey $ *  * $Log$ * Revision 1.2  2005/10/25 19:06:39  nadya * rm old macro for Header, all info is taken care of by Id and Log. * * Revision 1.1.1.1  2005/07/29 17:15:49  nadya * Importing from meme-3.0.14, and adding configure/make * *//************************************************************************                                                                      **       MEME++                                                         **       Copyright 1994, The Regents of the University of California    **       Author: Timothy L. Bailey                                      **                                                                      ************************************************************************//*        Print name, version, date, reference.*/#include "meme.h"#include "projrel.h"extern void banner(  char *program			/* name of program */) {  int i = strlen(ARCHIVE_DATE) - 9;  /* announce the program */  PSTARS; printf("MEME - Motif discovery tool\n"); PSTARS;  printf("MEME version %s (Release date: %*.*s)\n\n""For further information on how to interpret these results or to get\n""a copy of the MEME software please access http://meme.nbcr.net.\n""\n""This file may be used as input to the MAST algorithm for searching\n""sequence databases for matches to groups of motifs.  MAST is available\n""for interactive use and downloading at http://meme.nbcr.net.\n",    VERSION, i, i, ARCHIVE_DATE+7);  PSTARS;  /* print reference citation */  printf("\n\n");  PSTARS; printf("REFERENCE\n"); PSTARS;  printf("If you use this program in your research, please cite:\n""\n""Timothy L. Bailey and Charles Elkan,\n""\"Fitting a mixture model by expectation maximization to discover\n""motifs in biopolymers\", Proceedings of the Second International\n""Conference on Intelligent Systems for Molecular Biology, pp. 28-36,\n""AAAI Press, Menlo Park, California, 1994.\n"  );  PSTARS;}

⌨️ 快捷键说明

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