globals.h
来自「hmmer源程序」· C头文件 代码 · 共 25 行
H
25 行
/************************************************************ * HMMER - Biological sequence analysis with profile HMMs * Copyright (C) 1992-1999 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. ************************************************************//* globals.h * Mon Nov 18 13:05:03 1996 * * Global variable definitions. * This file may only be included in a main() .c file. */char Alphabet[MAXCODE]; /* ACGT, for instance */ int Alphabet_type; /* hmmNUCLEIC or hmmAMINO */int Alphabet_size; /* uniq alphabet size: 4 or 20 */int Alphabet_iupac; /* total size of alphabet + IUPAC degen. */char Degenerate[MAXCODE][MAXABET];int DegenCount[MAXCODE];
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?