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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: seq_map.inl,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 20:23:21  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #if !defined(OBJECTS_OBJMGR___SEQ_MAP__INL)
  10. #define OBJECTS_OBJMGR___SEQ_MAP__INL
  11. /* $Id: seq_map.inl,v 1000.0 2003/10/29 20:23:21 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: Eugene Vasilchenko
  37.  *
  38.  * File Description:
  39.  *   Inline methods of CSeqMap class.
  40.  *
  41.  */
  42. /////////////////////////////////////////////////////////////////////
  43. //  CSeqMap: inline methods
  44. inline
  45. size_t CSeqMap::x_GetSegmentsCount(void) const
  46. {
  47.     return m_Segments.size() - 1;
  48. }
  49. inline
  50. const CSeqMap::CSegment& CSeqMap::x_GetSegment(size_t index) const
  51. {
  52.     if ( index > x_GetSegmentsCount() ) {
  53.         x_GetSegmentException(index);
  54.     }
  55.     return m_Segments[index];
  56. }
  57. inline
  58. TSeqPos CSeqMap::x_GetSegmentPosition(size_t index, CScope* scope) const
  59. {
  60.     if ( index <= m_Resolved )
  61.         return m_Segments[index].m_Position;
  62.     return x_ResolveSegmentPosition(index, scope);
  63. }
  64. inline
  65. TSeqPos CSeqMap::x_GetSegmentLength(size_t index, CScope* scope) const
  66. {
  67.     TSeqPos length = x_GetSegment(index).m_Length;
  68.     if ( length == kInvalidSeqPos ) {
  69.         length = x_ResolveSegmentLength(index, scope);
  70.     }
  71.     return length;
  72. }
  73. inline
  74. TSeqPos CSeqMap::GetLength(CScope* scope) const
  75. {
  76.     if (m_SeqLength == kInvalidSeqPos) {
  77.         m_SeqLength = x_GetSegmentPosition(x_GetSegmentsCount(), scope);
  78.     }
  79.     return m_SeqLength;
  80. }
  81. inline
  82. CSeqMap::TMol CSeqMap::GetMol(void) const
  83. {
  84.     return m_Mol;
  85. }
  86. /*
  87.  * ===========================================================================
  88.  * $Log: seq_map.inl,v $
  89.  * Revision 1000.0  2003/10/29 20:23:21  gouriano
  90.  * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.4
  91.  *
  92.  * Revision 1.4  2003/06/26 19:47:26  grichenk
  93.  * Added sequence length cache
  94.  *
  95.  * Revision 1.3  2003/06/11 19:32:53  grichenk
  96.  * Added molecule type caching to CSeqMap, simplified
  97.  * coding and sequence type calculations in CSeqVector.
  98.  *
  99.  * Revision 1.2  2003/01/22 20:11:53  vasilche
  100.  * Merged functionality of CSeqMapResolved_CI to CSeqMap_CI.
  101.  * CSeqMap_CI now supports resolution and iteration over sequence range.
  102.  * Added several caches to CScope.
  103.  * Optimized CSeqVector().
  104.  * Added serveral variants of CBioseqHandle::GetSeqVector().
  105.  * Tried to optimize annotations iterator (not much success).
  106.  * Rewritten CHandleRange and CHandleRangeMap classes to avoid sorting of list.
  107.  *
  108.  * Revision 1.1  2002/12/26 16:39:22  vasilche
  109.  * Object manager class CSeqMap rewritten.
  110.  *
  111.  *
  112.  * ===========================================================================
  113.  */
  114. #endif