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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: seqid_doc.cpp,v $
  4.  * PRODUCTION Revision 1000.3  2004/06/01 20:44:40  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.12
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: seqid_doc.cpp,v 1000.3 2004/06/01 20:44:40 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:  Mike DiCuccio
  35.  *
  36.  * File Description:
  37.  *    CSeqIdDocument -- document specific for sequence data
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include "seqid_doc.hpp"
  41. #include <gui/plugin/PluginValue.hpp>
  42. #include <objmgr/scope.hpp>
  43. #include <objmgr/util/sequence.hpp>
  44. #include <objects/seqset/Seq_entry.hpp>
  45. #include <objects/seqloc/Seq_id.hpp>
  46. #include <serial/serial.hpp>
  47. #include <serial/objostr.hpp>
  48. BEGIN_NCBI_SCOPE
  49. CSeqIdDocument::CSeqIdDocument(CScope& scope, const CSeq_id& id)
  50. {
  51.     m_Scope.Reset(&scope);
  52.     m_Id.Reset(const_cast<CSeq_id*> (&id));
  53.     CBioseq_Handle handle = m_Scope->GetBioseqHandle(*m_Id);
  54.     const CSeq_id& best_id = sequence::GetId(handle, sequence::eGetId_Best);
  55.     best_id.GetLabel(&m_ShortTitle);
  56.     m_Title = m_ShortTitle + ": " + sequence::GetTitle(handle);
  57. }
  58. CSeqIdDocument::~CSeqIdDocument()
  59. {
  60. }
  61. // serialization: write our contents to a stream
  62. void CSeqIdDocument::Write(CObjectOStream& os) const
  63. {
  64.     if ( !m_Scope  ||  !m_Id ) {
  65.         return;
  66.     }
  67.     CBioseq_Handle handle = m_Scope->GetBioseqHandle(*m_Id);
  68.     os << handle.GetTopLevelSeqEntry();
  69. }
  70. END_NCBI_SCOPE
  71. /*
  72.  * ===========================================================================
  73.  * $Log: seqid_doc.cpp,v $
  74.  * Revision 1000.3  2004/06/01 20:44:40  gouriano
  75.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.12
  76.  *
  77.  * Revision 1.12  2004/05/21 22:27:40  gorelenk
  78.  * Added PCH ncbi_pch.hpp
  79.  *
  80.  * Revision 1.11  2004/03/05 17:29:59  dicuccio
  81.  * Use sequence::GetId() instead of CSeq_id::GetStringDescr()
  82.  *
  83.  * Revision 1.10  2003/11/04 17:20:18  dicuccio
  84.  * Removed unnecessary #includes
  85.  *
  86.  * Revision 1.9  2003/11/04 12:44:09  friedman
  87.  * Explicit destructor added
  88.  *
  89.  * Revision 1.8  2003/10/07 13:36:09  dicuccio
  90.  * Renamed CPluginURL* to CPluginValue*.  Moved validation code into CPluginUtils
  91.  *
  92.  * Revision 1.7  2003/07/19 00:41:38  dicuccio
  93.  * Removed dead includes.  Changed encoding for long title to include accession
  94.  *
  95.  * Revision 1.6  2003/06/25 17:02:54  dicuccio
  96.  * Split CPluginHandle into a handle (pointer-to-implementation) and
  97.  * implementation file.  Lots of #include file clean-ups.
  98.  *
  99.  * Revision 1.5  2003/06/02 16:06:18  dicuccio
  100.  * Rearranged src/objects/ subtree.  This includes the following shifts:
  101.  *     - src/objects/asn2asn --> arc/app/asn2asn
  102.  *     - src/objects/testmedline --> src/objects/ncbimime/test
  103.  *     - src/objects/objmgr --> src/objmgr
  104.  *     - src/objects/util --> src/objmgr/util
  105.  *     - src/objects/alnmgr --> src/objtools/alnmgr
  106.  *     - src/objects/flat --> src/objtools/flat
  107.  *     - src/objects/validator --> src/objtools/validator
  108.  *     - src/objects/cddalignview --> src/objtools/cddalignview
  109.  * In addition, libseq now includes six of the objects/seq... libs, and libmmdb
  110.  * replaces the three libmmdb? libs.
  111.  *
  112.  * Revision 1.4  2003/05/19 13:35:59  dicuccio
  113.  * Moved gui/core/plugin/ -> gui/plugin/.  Merged gui/core/algo, gui/core/doc/,
  114.  * and gui/core/view/ into one library (gui/core/)
  115.  *
  116.  * Revision 1.3  2003/04/29 14:46:09  dicuccio
  117.  * Removed last vestiges of old typing system
  118.  *
  119.  * Revision 1.2  2003/04/24 19:40:57  ucko
  120.  * Fix capitalization of seqid_doc.hpp.
  121.  *
  122.  * Revision 1.1  2003/04/24 16:25:00  dicuccio
  123.  * Initial revision
  124.  *
  125.  * ===========================================================================
  126.  */