blast_encoding.h
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:4k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: blast_encoding.h,v $
  4.  * PRODUCTION Revision 1000.0  2004/04/12 17:53:18  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [CATCHUP_003] Dev-tree R1.3
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef ALGO_BLAST_CORE___BLAST_ENCODING__H
  10. #define ALGO_BLAST_CORE___BLAST_ENCODING__H
  11. /*  $Id: blast_encoding.h,v 1000.0 2004/04/12 17:53:18 gouriano Exp $
  12.  * ===========================================================================
  13.  *
  14.  *                            PUBLIC DOMAIN NOTICE
  15.  *               National Center for Biotechnology Information
  16.  *
  17.  *  This software/database is a "United States Government Work" under the
  18.  *  terms of the United States Copyright Act.  It was written as part of
  19.  *  the author's official duties as a United States Government employee and
  20.  *  thus cannot be copyrighted.  This software/database is freely available
  21.  *  to the public for use. The National Library of Medicine and the U.S.
  22.  *  Government have not placed any restriction on its use or reproduction.
  23.  *
  24.  *  Although all reasonable efforts have been taken to ensure the accuracy
  25.  *  and reliability of the software and data, the NLM and the U.S.
  26.  *  Government do not and cannot warrant the performance or results that
  27.  *  may be obtained by using this software or data. The NLM and the U.S.
  28.  *  Government disclaim all warranties, express or implied, including
  29.  *  warranties of performance, merchantability or fitness for any particular
  30.  *  purpose.
  31.  *
  32.  *  Please cite the author in any work or product based on this material.
  33.  *
  34.  * ===========================================================================
  35.  *
  36.  * Author:  Christiam Camacho
  37.  *
  38.  */
  39. /** @file blast_encoding.h
  40.  *  Declarations of static arrays used to define some NCBI encodings to be used
  41.  *  in a toolkit independent manner by the BLAST engine.
  42.  */
  43. #include <algo/blast/core/ncbi_std.h>
  44. /** @addtogroup AlgoBlast
  45.  *
  46.  * @{
  47.  */
  48. #ifdef __cplusplus
  49. extern "C" {
  50. #endif
  51. /* Nucleotide encodings */
  52. /** Translates between ncbi4na and blastna. The first four elements
  53.  * of this array match ncbi2na. */
  54. extern const Uint1 NCBI4NA_TO_BLASTNA[];
  55. /** Translates between blastna and ncbi4na. */
  56. extern const Uint1 BLASTNA_TO_NCBI4NA[];
  57. /** Translates between iupacna and blastna. */
  58. extern const Uint1 IUPACNA_TO_BLASTNA[];
  59. /** Translates between iupacna and ncbi4na. */
  60. extern const Uint1 IUPACNA_TO_NCBI4NA[];
  61. /** Translates between ncbieaa and ncbistdaa. */
  62. extern const Uint1 AMINOACID_TO_NCBISTDAA[];
  63. #define BLASTNA_SIZE 16     /**< Size of nucleic acid alphabet */
  64. #define BLASTAA_SIZE 26     /**< Size of aminoacid alphabet */
  65. /* Identifies the blastna alphabet, for use in blast only. */
  66. #define BLASTNA_SEQ_CODE 99
  67. #define BLASTAA_SEQ_CODE 11 /**< == Seq_code_ncbistdaa */
  68. #define NCBI4NA_SEQ_CODE 4  /**< == Seq_code_ncbi4na */
  69. /** @bug FIXME: Should this be removed since it's the same as BLASTAA_SIZE ? */
  70. #define PSI_ALPHABET_SIZE  26
  71. #ifdef __cplusplus
  72. }
  73. #endif
  74. /* @} */
  75. /*
  76.  * ===========================================================================
  77.  * $Log: blast_encoding.h,v $
  78.  * Revision 1000.0  2004/04/12 17:53:18  gouriano
  79.  * PRODUCTION: IMPORTED [CATCHUP_003] Dev-tree R1.3
  80.  *
  81.  * Revision 1.3  2004/04/09 14:48:05  camacho
  82.  * Added doxygen comments
  83.  *
  84.  * Revision 1.2  2004/04/07 19:05:44  camacho
  85.  * Minor fix in #ifdef guards
  86.  *
  87.  * Revision 1.1  2004/04/07 03:10:20  camacho
  88.  * Initial revision
  89.  *
  90.  * ===========================================================================
  91.  */
  92. #endif  /* ALGO_BLAST_CORE___BLAST_ENCODING__H */