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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: validerror_graph.cpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 19:48:07  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.6
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: validerror_graph.cpp,v 1000.2 2004/06/01 19:48:07 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:  Jonathan Kans, Clifford Clausen, Aaron Ucko......
  35.  *
  36.  * File Description:
  37.  *   validation of seq_graph
  38.  *   .......
  39.  *
  40.  */
  41. #include <ncbi_pch.hpp>
  42. #include <corelib/ncbistd.hpp>
  43. #include <objects/seq/Bioseq.hpp>
  44. #include <objects/seq/Seq_annot.hpp>
  45. #include <objects/seqres/Seq_graph.hpp>
  46. #include <objmgr/graph_ci.hpp>
  47. #include "validatorp.hpp"
  48. BEGIN_NCBI_SCOPE
  49. BEGIN_SCOPE(objects)
  50. BEGIN_SCOPE(validator)
  51. CValidError_graph::CValidError_graph(CValidError_imp& imp) :
  52.     CValidError_base(imp), m_NumMisplaced(0)
  53. {
  54. }
  55. CValidError_graph::~CValidError_graph(void)
  56. {
  57. }
  58. void CValidError_graph::ValidateSeqGraph(const CSeq_graph& graph)
  59. {
  60.     if ( x_IsMisplaced(graph) ) {
  61.         ++m_NumMisplaced;
  62.     }
  63. }
  64. bool s_FindGraph(const CSeq_graph& graph, CBioseq_Handle& bsh)
  65. {
  66.     if ( !bsh ) {
  67.         return false;
  68.     }
  69.     for ( CGraph_CI it(bsh, 0, 0); it; ++it ) {
  70.         if ( &graph == &(it->GetOriginalGraph()) ) {
  71.             return true;
  72.         }
  73.     }
  74.     return false;
  75. }
  76. bool CValidError_graph::x_IsMisplaced(const CSeq_graph& graph)
  77. {
  78.     if ( !graph.CanGetLoc() ) {
  79.         return false;
  80.     }
  81.     CBioseq_Handle bsh = m_Scope->GetBioseqHandle(graph.GetLoc());
  82.     if ( s_FindGraph(graph, bsh) ) {
  83.         return false;
  84.     }
  85.     // need to test on the master bioseq for segmented?
  86.     return true;
  87. }
  88. END_SCOPE(validator)
  89. END_SCOPE(objects)
  90. END_NCBI_SCOPE
  91. /*
  92. * ===========================================================================
  93. *
  94. * $Log: validerror_graph.cpp,v $
  95. * Revision 1000.2  2004/06/01 19:48:07  gouriano
  96. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.6
  97. *
  98. * Revision 1.6  2004/05/21 21:42:56  gorelenk
  99. * Added PCH ncbi_pch.hpp
  100. *
  101. * Revision 1.5  2004/04/23 16:27:21  shomrat
  102. * Stop using CBioseq_Handle deprecated interface
  103. *
  104. * Revision 1.4  2003/12/17 19:16:57  shomrat
  105. * Implemented test for graph packaging test
  106. *
  107. * Revision 1.3  2003/03/31 14:40:05  shomrat
  108. * $id: -> $id$
  109. *
  110. * Revision 1.2  2002/12/24 16:54:13  shomrat
  111. * Changes to include directives
  112. *
  113. * Revision 1.1  2002/12/23 20:16:39  shomrat
  114. * Initial submission after splitting former implementation
  115. *
  116. *
  117. * ===========================================================================
  118. */