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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: sm_blosum80.c,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 16:04:17  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.1
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: sm_blosum80.c,v 1000.0 2003/10/29 16:04:17 gouriano Exp $
  10. * ===========================================================================
  11. *
  12. *                            PUBLIC DOMAIN NOTICE
  13. *               National Center for Biotechnology Information
  14. *
  15. *  This software/database is a "United States Government Work" under the
  16. *  terms of the United States Copyright Act.  It was written as part of
  17. *  the author's official duties as a United States Government employee and
  18. *  thus cannot be copyrighted.  This software/database is freely available
  19. *  to the public for use. The National Library of Medicine and the U.S.
  20. *  Government have not placed any restriction on its use or reproduction.
  21. *
  22. *  Although all reasonable efforts have been taken to ensure the accuracy
  23. *  and reliability of the software and data, the NLM and the U.S.
  24. *  Government do not and cannot warrant the performance or results that
  25. *  may be obtained by using this software or data. The NLM and the U.S.
  26. *  Government disclaim all warranties, express or implied, including
  27. *  warranties of performance, merchantability or fitness for any particular
  28. *  purpose.
  29. *
  30. *  Please cite the author in any work or product based on this material.
  31. *
  32. * ===========================================================================
  33. *
  34. * Author:  Aaron Ucko (via ./convert_scoremat.pl)
  35. *
  36. * File Description:
  37. *   Protein alignment score matrices; shared between the two toolkits.
  38. *
  39. * ===========================================================================
  40. */
  41. #include <util/tables/raw_scoremat.h>
  42. /* Matrix made by matblas from blosum80.iij */
  43. /* * column uses minimum score */
  44. /* BLOSUM Clustered Scoring Matrix in 1/2 Bit Units */
  45. /* Blocks Database = /data/blocks_5.0/blocks.dat */
  46. /* Cluster Percentage: >= 80 */
  47. /* Entropy =   0.9868, Expected =  -0.7442 */
  48. static const TNCBIScore s_Blosum80PSM[24][24] = {
  49.     /*       A,  R,  N,  D,  C,  Q,  E,  G,  H,  I,  L,  K,
  50.              M,  F,  P,  S,  T,  W,  Y,  V,  B,  Z,  X,  * */
  51.     /*A*/ {  5, -2, -2, -2, -1, -1, -1,  0, -2, -2, -2, -1,
  52.             -1, -3, -1,  1,  0, -3, -2,  0, -2, -1, -1, -6 },
  53.     /*R*/ { -2,  6, -1, -2, -4,  1, -1, -3,  0, -3, -3,  2,
  54.             -2, -4, -2, -1, -1, -4, -3, -3, -2,  0, -1, -6 },
  55.     /*N*/ { -2, -1,  6,  1, -3,  0, -1, -1,  0, -4, -4,  0,
  56.             -3, -4, -3,  0,  0, -4, -3, -4,  4,  0, -1, -6 },
  57.     /*D*/ { -2, -2,  1,  6, -4, -1,  1, -2, -2, -4, -5, -1,
  58.             -4, -4, -2, -1, -1, -6, -4, -4,  4,  1, -2, -6 },
  59.     /*C*/ { -1, -4, -3, -4,  9, -4, -5, -4, -4, -2, -2, -4,
  60.             -2, -3, -4, -2, -1, -3, -3, -1, -4, -4, -3, -6 },
  61.     /*Q*/ { -1,  1,  0, -1, -4,  6,  2, -2,  1, -3, -3,  1,
  62.              0, -4, -2,  0, -1, -3, -2, -3,  0,  3, -1, -6 },
  63.     /*E*/ { -1, -1, -1,  1, -5,  2,  6, -3,  0, -4, -4,  1,
  64.             -2, -4, -2,  0, -1, -4, -3, -3,  1,  4, -1, -6 },
  65.     /*G*/ {  0, -3, -1, -2, -4, -2, -3,  6, -3, -5, -4, -2,
  66.             -4, -4, -3, -1, -2, -4, -4, -4, -1, -3, -2, -6 },
  67.     /*H*/ { -2,  0,  0, -2, -4,  1,  0, -3,  8, -4, -3, -1,
  68.             -2, -2, -3, -1, -2, -3,  2, -4, -1,  0, -2, -6 },
  69.     /*I*/ { -2, -3, -4, -4, -2, -3, -4, -5, -4,  5,  1, -3,
  70.              1, -1, -4, -3, -1, -3, -2,  3, -4, -4, -2, -6 },
  71.     /*L*/ { -2, -3, -4, -5, -2, -3, -4, -4, -3,  1,  4, -3,
  72.              2,  0, -3, -3, -2, -2, -2,  1, -4, -3, -2, -6 },
  73.     /*K*/ { -1,  2,  0, -1, -4,  1,  1, -2, -1, -3, -3,  5,
  74.             -2, -4, -1, -1, -1, -4, -3, -3, -1,  1, -1, -6 },
  75.     /*M*/ { -1, -2, -3, -4, -2,  0, -2, -4, -2,  1,  2, -2,
  76.              6,  0, -3, -2, -1, -2, -2,  1, -3, -2, -1, -6 },
  77.     /*F*/ { -3, -4, -4, -4, -3, -4, -4, -4, -2, -1,  0, -4,
  78.              0,  6, -4, -3, -2,  0,  3, -1, -4, -4, -2, -6 },
  79.     /*P*/ { -1, -2, -3, -2, -4, -2, -2, -3, -3, -4, -3, -1,
  80.             -3, -4,  8, -1, -2, -5, -4, -3, -2, -2, -2, -6 },
  81.     /*S*/ {  1, -1,  0, -1, -2,  0,  0, -1, -1, -3, -3, -1,
  82.             -2, -3, -1,  5,  1, -4, -2, -2,  0,  0, -1, -6 },
  83.     /*T*/ {  0, -1,  0, -1, -1, -1, -1, -2, -2, -1, -2, -1,
  84.             -1, -2, -2,  1,  5, -4, -2,  0, -1, -1, -1, -6 },
  85.     /*W*/ { -3, -4, -4, -6, -3, -3, -4, -4, -3, -3, -2, -4,
  86.             -2,  0, -5, -4, -4, 11,  2, -3, -5, -4, -3, -6 },
  87.     /*Y*/ { -2, -3, -3, -4, -3, -2, -3, -4,  2, -2, -2, -3,
  88.             -2,  3, -4, -2, -2,  2,  7, -2, -3, -3, -2, -6 },
  89.     /*V*/ {  0, -3, -4, -4, -1, -3, -3, -4, -4,  3,  1, -3,
  90.              1, -1, -3, -2,  0, -3, -2,  4, -4, -3, -1, -6 },
  91.     /*B*/ { -2, -2,  4,  4, -4,  0,  1, -1, -1, -4, -4, -1,
  92.             -3, -4, -2,  0, -1, -5, -3, -4,  4,  0, -2, -6 },
  93.     /*Z*/ { -1,  0,  0,  1, -4,  3,  4, -3,  0, -4, -3,  1,
  94.             -2, -4, -2,  0, -1, -4, -3, -3,  0,  4, -1, -6 },
  95.     /*X*/ { -1, -1, -1, -2, -3, -1, -1, -2, -2, -2, -2, -1,
  96.             -1, -2, -2, -1, -1, -3, -2, -1, -2, -1, -1, -6 },
  97.     /***/ { -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6,
  98.             -6, -6, -6, -6, -6, -6, -6, -6, -6, -6, -6,  1 }
  99. };
  100. const SNCBIPackedScoreMatrix NCBISM_Blosum80 = {
  101.     "ARNDCQEGHILKMFPSTWYVBZX*",
  102.     s_Blosum80PSM[0],
  103.     -6
  104. };