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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: user_feature_dload.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2003/12/02 20:32:21  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [ORIGINAL] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: user_feature_dload.hpp,v 1000.1 2003/12/02 20:32:21 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:  Data loader for user features in tabular form
  37.  *
  38.  */
  39. #ifndef OBJTOOLS_DATA_LOADERS_TABLE___USER_FEATURE_DLOAD__HPP
  40. #define OBJTOOLS_DATA_LOADERS_TABLE___USER_FEATURE_DLOAD__HPP
  41. #include <objmgr/data_loader.hpp>
  42. #include <objtools/data_loaders/table/sqlite_table.hpp>
  43. #include <objects/seqloc/Seq_id.hpp>
  44. #include <objects/seq/Seq_annot.hpp>
  45. BEGIN_NCBI_SCOPE
  46. //
  47. // class CFeatureDataLoader interprets a text-file database 
  48. // as a set of features
  49. //
  50. class NCBI_XLOADER_TABLE_EXPORT CUsrFeatDataLoader
  51.     : public objects::CDataLoader
  52. {
  53. public:
  54.     /// Whether file uses zero-based or one-based numbering
  55.     //  MUST equal 0 and 1
  56.     typedef enum {
  57.         eBeginIsZero = 0,
  58.         eBeginIsOne = 1
  59.     } EOffset;
  60.     CUsrFeatDataLoader(const string& input_file,
  61.                        const string& temp_file,
  62.                        bool delete_file,
  63.                        EOffset offset,
  64.                        const string& type = string(),
  65.                        const objects::CSeq_id* given_id = 0);
  66.     
  67.     // Request features from our database corresponding to a given
  68.     // CSeq_id_Handle
  69.     virtual void GetRecords(const objects::CSeq_id_Handle& handle,
  70.                             EChoice choice);
  71.     // Request an annot by CSeq_id_Handle
  72.     CRef<objects::CSeq_annot> GetAnnot(const objects::CSeq_id_Handle& idh);
  73. private:
  74.     enum {
  75.         eUnknown = -1,
  76.         eAccession = 0,
  77.         eStrand,
  78.         eFrom,
  79.         eTo,
  80.         eType,
  81.         eMaxKnownCol
  82.     };
  83.     // Whether file uses zero-based or one-based numbering
  84.     EOffset m_Offset;
  85.     // The 'type' field of the user feature; if this string
  86.     // is non-empty, it is used, even if there's a 'type'
  87.     // column in the file
  88.     string m_Type;
  89.     // mapping of column idx -> meaning
  90.     vector<int> m_ColAssign;
  91.     // mapping of col meaning -> column idx
  92.     int m_ColIdx[eMaxKnownCol];
  93.     // a seq. id, if it's not coming from the file
  94.     CConstRef<objects::CSeq_id> m_SeqId;
  95.     // reference to the table reader we use
  96.     CRef<CSQLiteTable> m_Table;
  97.     // the list of column names we have
  98.     vector<string> m_Cols;
  99.     // struct for sorting CSeq_id_Handle objects by their contents
  100.     struct SIdHandleByContent
  101.     {
  102.         bool operator()(const objects::CSeq_id_Handle& h1,
  103.                         const objects::CSeq_id_Handle& h2) const;
  104.     };
  105.     // the list of IDs we support
  106.     typedef multimap<objects::CSeq_id_Handle, string,
  107.                         SIdHandleByContent> TIdMap;
  108.     TIdMap m_Ids;
  109.     // the map of items we've already loaded
  110.     typedef map<objects::CSeq_id_Handle, CRef<objects::CSeq_entry>,
  111.                 SIdHandleByContent> TEntries;
  112.     TEntries m_Entries;
  113. };
  114. END_NCBI_SCOPE
  115. /*
  116.  * ===========================================================================
  117.  * $Log: user_feature_dload.hpp,v $
  118.  * Revision 1000.1  2003/12/02 20:32:21  gouriano
  119.  * PRODUCTION: UPGRADED [ORIGINAL] Dev-tree R1.2
  120.  *
  121.  * Revision 1.2  2003/11/28 13:40:40  dicuccio
  122.  * Fixed to match new API in CDataLoader
  123.  *
  124.  * Revision 1.1  2003/11/14 19:09:16  jcherry
  125.  * Initial version
  126.  *
  127.  * ===========================================================================
  128.  */
  129. #endif  // OBJTOOLS_DATA_LOADERS_TABLE___USER_FEATURE_DLOAD__HPP