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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: sm_pam30.c,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 16:04:25  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.1
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: sm_pam30.c,v 1000.0 2003/10/29 16:04:25 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. /* This matrix was produced by "pam" Version 1.0.6 [28-Jul-93] */
  43. /* PAM 30 substitution matrix, scale = ln(2)/2 = 0.346574 */
  44. /* Expected score = -5.06, Entropy = 2.57 bits */
  45. /* Lowest score = -17, Highest score = 13 */
  46. static const TNCBIScore s_Pam30PSM[24][24] = {
  47.     /*       A,  R,  N,  D,  C,  Q,  E,  G,  H,  I,  L,  K,
  48.              M,  F,  P,  S,  T,  W,  Y,  V,  B,  Z,  X,  * */
  49.     /*A*/ {  6, -7, -4, -3, -6, -4, -2, -2, -7, -5, -6, -7,
  50.             -5, -8, -2,  0, -1,-13, -8, -2, -3, -3, -3,-17 },
  51.     /*R*/ { -7,  8, -6,-10, -8, -2, -9, -9, -2, -5, -8,  0,
  52.             -4, -9, -4, -3, -6, -2,-10, -8, -7, -4, -6,-17 },
  53.     /*N*/ { -4, -6,  8,  2,-11, -3, -2, -3,  0, -5, -7, -1,
  54.             -9, -9, -6,  0, -2, -8, -4, -8,  6, -3, -3,-17 },
  55.     /*D*/ { -3,-10,  2,  8,-14, -2,  2, -3, -4, -7,-12, -4,
  56.            -11,-15, -8, -4, -5,-15,-11, -8,  6,  1, -5,-17 },
  57.     /*C*/ { -6, -8,-11,-14, 10,-14,-14, -9, -7, -6,-15,-14,
  58.            -13,-13, -8, -3, -8,-15, -4, -6,-12,-14, -9,-17 },
  59.     /*Q*/ { -4, -2, -3, -2,-14,  8,  1, -7,  1, -8, -5, -3,
  60.             -4,-13, -3, -5, -5,-13,-12, -7, -3,  6, -5,-17 },
  61.     /*E*/ { -2, -9, -2,  2,-14,  1,  8, -4, -5, -5, -9, -4,
  62.             -7,-14, -5, -4, -6,-17, -8, -6,  1,  6, -5,-17 },
  63.     /*G*/ { -2, -9, -3, -3, -9, -7, -4,  6, -9,-11,-10, -7,
  64.             -8, -9, -6, -2, -6,-15,-14, -5, -3, -5, -5,-17 },
  65.     /*H*/ { -7, -2,  0, -4, -7,  1, -5, -9,  9, -9, -6, -6,
  66.            -10, -6, -4, -6, -7, -7, -3, -6, -1, -1, -5,-17 },
  67.     /*I*/ { -5, -5, -5, -7, -6, -8, -5,-11, -9,  8, -1, -6,
  68.             -1, -2, -8, -7, -2,-14, -6,  2, -6, -6, -5,-17 },
  69.     /*L*/ { -6, -8, -7,-12,-15, -5, -9,-10, -6, -1,  7, -8,
  70.              1, -3, -7, -8, -7, -6, -7, -2, -9, -7, -6,-17 },
  71.     /*K*/ { -7,  0, -1, -4,-14, -3, -4, -7, -6, -6, -8,  7,
  72.             -2,-14, -6, -4, -3,-12, -9, -9, -2, -4, -5,-17 },
  73.     /*M*/ { -5, -4, -9,-11,-13, -4, -7, -8,-10, -1,  1, -2,
  74.             11, -4, -8, -5, -4,-13,-11, -1,-10, -5, -5,-17 },
  75.     /*F*/ { -8, -9, -9,-15,-13,-13,-14, -9, -6, -2, -3,-14,
  76.             -4,  9,-10, -6, -9, -4,  2, -8,-10,-13, -8,-17 },
  77.     /*P*/ { -2, -4, -6, -8, -8, -3, -5, -6, -4, -8, -7, -6,
  78.             -8,-10,  8, -2, -4,-14,-13, -6, -7, -4, -5,-17 },
  79.     /*S*/ {  0, -3,  0, -4, -3, -5, -4, -2, -6, -7, -8, -4,
  80.             -5, -6, -2,  6,  0, -5, -7, -6, -1, -5, -3,-17 },
  81.     /*T*/ { -1, -6, -2, -5, -8, -5, -6, -6, -7, -2, -7, -3,
  82.             -4, -9, -4,  0,  7,-13, -6, -3, -3, -6, -4,-17 },
  83.     /*W*/ {-13, -2, -8,-15,-15,-13,-17,-15, -7,-14, -6,-12,
  84.            -13, -4,-14, -5,-13, 13, -5,-15,-10,-14,-11,-17 },
  85.     /*Y*/ { -8,-10, -4,-11, -4,-12, -8,-14, -3, -6, -7, -9,
  86.            -11,  2,-13, -7, -6, -5, 10, -7, -6, -9, -7,-17 },
  87.     /*V*/ { -2, -8, -8, -8, -6, -7, -6, -5, -6,  2, -2, -9,
  88.             -1, -8, -6, -6, -3,-15, -7,  7, -8, -6, -5,-17 },
  89.     /*B*/ { -3, -7,  6,  6,-12, -3,  1, -3, -1, -6, -9, -2,
  90.            -10,-10, -7, -1, -3,-10, -6, -8,  6,  0, -5,-17 },
  91.     /*Z*/ { -3, -4, -3,  1,-14,  6,  6, -5, -1, -6, -7, -4,
  92.             -5,-13, -4, -5, -6,-14, -9, -6,  0,  6, -5,-17 },
  93.     /*X*/ { -3, -6, -3, -5, -9, -5, -5, -5, -5, -5, -6, -5,
  94.             -5, -8, -5, -3, -4,-11, -7, -5, -5, -5, -5,-17 },
  95.     /***/ {-17,-17,-17,-17,-17,-17,-17,-17,-17,-17,-17,-17,
  96.            -17,-17,-17,-17,-17,-17,-17,-17,-17,-17,-17,  1 }
  97. };
  98. const SNCBIPackedScoreMatrix NCBISM_Pam30 = {
  99.     "ARNDCQEGHILKMFPSTWYVBZX*",
  100.     s_Pam30PSM[0],
  101.     -17
  102. };