squidcore.c

来自「这是一个基于HMM 模型的生物多序列比对算法的linux实现版本。hmmer」· C语言 代码 · 共 56 行

C
56
字号
/************************************************************ * HMMER - Biological sequence analysis with profile HMMs * Copyright (C) 1992-2003 Washington University School of Medicine * All Rights Reserved *  *     This source code is distributed under the terms of the *     GNU General Public License. See the files COPYING and LICENSE *     for details. ************************************************************//* squidcore.c * SRE, Sun Jun 20 17:19:04 1999 [Graeme's kitchen] *  * Core functions for SQUID library. * CVS $Id: squidcore.c,v 1.4 2003/09/27 20:31:15 eddy Exp $ */#include "squidconf.h"#include "squid.h"#include <stdio.h>/* Function: SqdBanner() * Date:     SRE, Sun Jun 20 17:19:41 1999 [Graeme's kitchen] * * Purpose:  Print a package version and copyright banner. *           Used by all the main()'s in squid. *            *    Expects to be able to pick up preprocessor #define's from squidconf.h: *    symbol           example *    ------           --------------   *    SQUID_VERSION    "2.0.42" *    SQUID_DATE       "April 1999" *    SQUID_COPYRIGHT  "Copyright (C) 1992-1999 Washington University School of Medicine" *    SQUID_LICENSE    "Freely distributed under the GNU General Public License (GPL)." *            *           This gives us a general mechanism to update release information *           without changing multiple points in the code. *  * Args:     fp     - where to print it *           banner - one-line program description, e.g.: *                    "foobar - make bars from foo with elan"  * Returns:  (void) */voidSqdBanner(FILE *fp, char *banner){  fprintf(fp, "%s\n", banner);  fprintf(fp, "SQUID %s (%s)\n", SQUID_VERSION, SQUID_DATE);  fprintf(fp, "%s\n", SQUID_COPYRIGHT);  fprintf(fp, "%s\n", SQUID_LICENSE);  fprintf(fp, "- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n");}

⌨️ 快捷键说明

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