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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: signal_seq.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/04/12 17:48:09  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: signal_seq.hpp,v 1000.1 2004/04/12 17:48:09 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.  * Authors:  Josh Cherry
  35.  *
  36.  * File Description:  Prediction of signal sequences from protein sequence
  37.  *                    according to von Heijne, 1986 and 1987
  38.  *
  39.  */
  40. #ifndef ALGO_SEQUENCE___SIGNAL_SEQ__HPP
  41. #define ALGO_SEQUENCE___SIGNAL_SEQ__HPP
  42. #include <corelib/ncbistd.hpp>
  43. #include <objects/seqloc/Seq_loc.hpp>
  44. #include <objmgr/seq_vector.hpp>
  45. #include <vector>
  46. BEGIN_NCBI_SCOPE
  47. /// Protein signal sequence prediction according to
  48. /// von Heijne, 1986 (PMID 3714490, as modified in his book).
  49. class NCBI_XALGOSEQ_EXPORT CSignalSeq
  50. {
  51. public:
  52.     enum EDomain {
  53.         eEukaryotic,
  54.         eBacterial
  55.     };
  56.     /// Find the most likely predicted signal sequence cleavage site (pos)
  57.     /// and the associated score (>3.5 suggests a real signal sequence).
  58.     /// Constrain pos to be no larger than max_pos.  Positions
  59.     /// refer to residue just before cleaved bond.
  60.     /// Length of seq must be at least 15, and max_pos must be
  61.     /// at least 12.
  62.     /// For std char containers, seq must be in ncbistdaa.
  63.     static void Predict(const string& seq, EDomain domain,
  64.                         TSeqPos max_pos, TSeqPos& pos, double& score);
  65.     static void Predict(const vector<char>& seq, EDomain domain,
  66.                         TSeqPos max_pos, TSeqPos& pos, double& score);
  67.     static void Predict(const objects::CSeqVector& seq, EDomain domain,
  68.                         TSeqPos max_pos, TSeqPos& pos, double& score);
  69. private:
  70.     template<class Seq> friend
  71.     void x_PredictSignalSeq(const Seq& seq, CSignalSeq::EDomain domain,
  72.                             TSeqPos max_pos, TSeqPos& pos, double& score);
  73. };
  74. END_NCBI_SCOPE
  75. #endif  // ALGO_SEQUENCE___SIGNAL_SEQ__HPP
  76. /*
  77.  * ===========================================================================
  78.  * $Log: signal_seq.hpp,v $
  79.  * Revision 1000.1  2004/04/12 17:48:09  gouriano
  80.  * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.2
  81.  *
  82.  * Revision 1.2  2004/03/11 17:12:07  dicuccio
  83.  * Removed member static const arrays in favor of private static arrays
  84.  *
  85.  * Revision 1.1  2003/09/10 15:31:34  jcherry
  86.  * Initial version
  87.  *
  88.  * ===========================================================================
  89.  */