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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: trace_chgr.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:42:55  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: trace_chgr.cpp,v 1000.1 2004/06/01 19:42:55 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.  *
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include <objmgr/impl/data_source.hpp>
  41. #include <objtools/data_loaders/trace/trace_chgr.hpp>
  42. #include <objects/id1/id1_client.hpp>
  43. #include <objects/id1/ID1server_maxcomplex.hpp>
  44. #include <objects/id1/ID1SeqEntry_info.hpp>
  45. #include <objects/general/Dbtag.hpp>
  46. #include <objects/general/Object_id.hpp>
  47. BEGIN_NCBI_SCOPE
  48. BEGIN_SCOPE(objects)
  49. CTraceChromatogramLoader::CTraceChromatogramLoader()
  50. {
  51. }
  52. CTraceChromatogramLoader::~CTraceChromatogramLoader()
  53. {
  54. }
  55. void CTraceChromatogramLoader::GetRecords(const CSeq_id_Handle& idh,
  56.                                           EChoice choice)
  57. {
  58.     // we only handle a particular subset of seq-ids
  59.     // we look for IDs for ids of the form 'gnl|ti|###' or 'gnl|TRACE|###'
  60.     const CSeq_id* id = idh.GetSeqId();
  61.     if ( !id  ||
  62.          !id->IsGeneral() ||
  63.          (id->GetGeneral().GetDb() != "ti"  &&
  64.           id->GetGeneral().GetDb() != "TRACE")  ||
  65.           !id->GetGeneral().GetTag().IsId()) {
  66.         return;
  67.     }
  68.     int ti = id->GetGeneral().GetTag().GetId();
  69.     CMutexGuard LOCK(m_Mutex);
  70.     TTraceEntries::const_iterator iter = m_Entries.find(ti);
  71.     if (iter != m_Entries.end()) {
  72.         return;
  73.     }
  74.     CID1server_maxcomplex maxplex;
  75.     maxplex.SetMaxplex(16);
  76.     maxplex.SetGi(0);
  77.     maxplex.SetSat("TRACE_CHGR");
  78.     maxplex.SetEnt(ti);
  79.     CRef<CSeq_entry> entry;
  80.     CRef<CID1SeqEntry_info> info = x_GetClient().AskGetsewithinfo(maxplex);
  81.     if (info) {
  82.         entry.Reset(&info->SetBlob());
  83.     }
  84.     m_Entries[ti] = entry;
  85.     if (entry) {
  86.         GetDataSource()->AddTSE(*entry);
  87.     }
  88. }
  89. CID1Client& CTraceChromatogramLoader::x_GetClient()
  90. {
  91.     if ( !m_Client ) {
  92.         m_Client.Reset(new CID1Client());
  93.     }
  94.     return *m_Client;
  95. }
  96. END_SCOPE(objects)
  97. END_NCBI_SCOPE
  98. /*
  99.  * ===========================================================================
  100.  * $Log: trace_chgr.cpp,v $
  101.  * Revision 1000.1  2004/06/01 19:42:55  gouriano
  102.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  103.  *
  104.  * Revision 1.2  2004/05/21 21:42:53  gorelenk
  105.  * Added PCH ncbi_pch.hpp
  106.  *
  107.  * Revision 1.1  2004/03/25 14:20:25  dicuccio
  108.  * Initial revision
  109.  *
  110.  * ===========================================================================
  111.  */