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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: sequence_set.hpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 18:29:09  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.32
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: sequence_set.hpp,v 1000.2 2004/06/01 18:29:09 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:  Paul Thiessen
  35. *
  36. * File Description:
  37. *      Classes to hold sets of sequences
  38. *
  39. * ===========================================================================
  40. */
  41. #ifndef CN3D_SEQUENCE_SET__HPP
  42. #define CN3D_SEQUENCE_SET__HPP
  43. #include <corelib/ncbistd.hpp> // must come first to avoid NCBI type clashes
  44. #include <corelib/ncbistl.hpp>
  45. #include <string>
  46. #include <list>
  47. #include <objects/seqset/Seq_entry.hpp>
  48. #include <objects/seq/Bioseq.hpp>
  49. #include <objects/seqloc/Seq_id.hpp>
  50. #include <objloc.h>
  51. #include "structure_base.hpp"
  52. BEGIN_SCOPE(Cn3D)
  53. class Sequence;
  54. class Molecule;
  55. class MasterSlaveAlignment;
  56. class MoleculeIdentifier;
  57. class SequenceSet : public StructureBase
  58. {
  59. public:
  60.     typedef std::list < ncbi::CRef < ncbi::objects::CSeq_entry > > SeqEntryList;
  61.     SequenceSet(StructureBase *parent, SeqEntryList& seqEntries);
  62.     typedef std::list < const Sequence * > SequenceList;
  63.     SequenceList sequences;
  64.     bool Draw(const AtomSet *atomSet = NULL) const { return false; } // not drawable
  65. };
  66. class Sequence : public StructureBase
  67. {
  68. public:
  69.     Sequence(SequenceSet *parent, ncbi::objects::CBioseq& bioseq);
  70.     // keep a reference to the original asn Bioseq
  71.     ncbi::CRef < ncbi::objects::CBioseq > bioseqASN;
  72.     std::string sequenceString, description;
  73.     const MoleculeIdentifier *identifier;
  74.     // corresponding biopolymer chain (if any)
  75.     const Molecule *molecule;
  76.     bool isProtein;
  77.     int Length(void) const { return sequenceString.size(); }
  78.     int GetOrSetMMDBLink(void) const;
  79.     void AddMMDBAnnotTag(int mmdbID) const;
  80.     // Seq-id stuff (C++ and C)
  81.     ncbi::objects::CSeq_id * CreateSeqId(void) const;
  82.     void FillOutSeqId(ncbi::objects::CSeq_id *sid) const;
  83.     void AddCSeqId(SeqIdPtr *id, bool addAllTypes) const;
  84.     // launch web browser with entrez page for this sequence
  85.     void LaunchWebBrowserWithInfo(void) const;
  86.     // highlight residues matching the given pattern; returns true if the pattern is valid,
  87.     // regardless of whether a match is found, or returns false on error
  88.     bool HighlightPattern(const std::string& pattern) const;
  89. };
  90. END_SCOPE(Cn3D)
  91. #endif // CN3D_SEQUENCE_SET__HPP
  92. /*
  93. * ---------------------------------------------------------------------------
  94. * $Log: sequence_set.hpp,v $
  95. * Revision 1000.2  2004/06/01 18:29:09  gouriano
  96. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.32
  97. *
  98. * Revision 1.32  2004/05/21 17:29:51  thiessen
  99. * allow conversion of mime to cdd data
  100. *
  101. * Revision 1.31  2004/02/19 17:05:07  thiessen
  102. * remove cn3d/ from include paths; add pragma to disable annoying msvc warning
  103. *
  104. * Revision 1.30  2003/07/14 18:37:08  thiessen
  105. * change GetUngappedAlignedBlocks() param types; other syntax changes
  106. *
  107. * Revision 1.29  2003/02/03 19:20:05  thiessen
  108. * format changes: move CVS Log to bottom of file, remove std:: from .cpp files, and use new diagnostic macros
  109. *
  110. * Revision 1.28  2002/11/19 21:19:44  thiessen
  111. * more const changes for objects; fix user vs default style bug
  112. *
  113. * Revision 1.27  2002/11/06 00:18:10  thiessen
  114. * fixes for new CRef/const rules in objects
  115. *
  116. * Revision 1.26  2001/11/27 16:26:09  thiessen
  117. * major update to data management system
  118. *
  119. * Revision 1.25  2001/09/27 15:36:48  thiessen
  120. * decouple sequence import and BLAST
  121. *
  122. * Revision 1.24  2001/08/15 20:53:07  juran
  123. * Heed warnings.
  124. *
  125. * Revision 1.23  2001/07/23 20:08:38  thiessen
  126. * add regex pattern search
  127. *
  128. * Revision 1.22  2001/07/19 19:12:46  thiessen
  129. * working CDD alignment annotator ; misc tweaks
  130. *
  131. * Revision 1.21  2001/06/21 02:01:07  thiessen
  132. * major update to molecule identification and highlighting ; add toggle highlight (via alt)
  133. *
  134. * Revision 1.20  2001/05/31 18:46:27  thiessen
  135. * add preliminary style dialog; remove LIST_TYPE; add thread single and delete all; misc tweaks
  136. *
  137. * Revision 1.19  2001/05/02 16:35:18  thiessen
  138. * launch entrez web page on sequence identifier
  139. *
  140. * Revision 1.18  2001/04/18 15:46:32  thiessen
  141. * show description, length, and PDB numbering in status line
  142. *
  143. * Revision 1.17  2001/03/01 20:15:29  thiessen
  144. * major rearrangement of sequence viewer code into base and derived classes
  145. *
  146. * Revision 1.16  2001/02/16 00:36:47  thiessen
  147. * remove unused sequences from asn data
  148. *
  149. * Revision 1.15  2001/02/13 01:03:03  thiessen
  150. * backward-compatible domain ID's in output; add ability to delete rows
  151. *
  152. * Revision 1.14  2001/02/08 23:01:14  thiessen
  153. * hook up C-toolkit stuff for threading; working PSSM calculation
  154. *
  155. * Revision 1.13  2001/01/04 18:21:00  thiessen
  156. * deal with accession seq-id
  157. *
  158. * Revision 1.12  2000/12/21 23:42:24  thiessen
  159. * load structures from cdd's
  160. *
  161. * Revision 1.11  2000/12/20 23:47:52  thiessen
  162. * load CDD's
  163. *
  164. * Revision 1.10  2000/12/15 15:52:08  thiessen
  165. * show/hide system installed
  166. *
  167. * Revision 1.9  2000/11/17 19:47:37  thiessen
  168. * working show/hide alignment row
  169. *
  170. * Revision 1.8  2000/11/11 21:12:07  thiessen
  171. * create Seq-annot from BlockMultipleAlignment
  172. *
  173. * Revision 1.7  2000/10/04 17:40:46  thiessen
  174. * rearrange STL #includes
  175. *
  176. * Revision 1.6  2000/09/03 18:45:57  thiessen
  177. * working generalized sequence viewer
  178. *
  179. * Revision 1.5  2000/08/30 19:49:04  thiessen
  180. * working sequence window
  181. *
  182. * Revision 1.4  2000/08/29 04:34:15  thiessen
  183. * working alignment manager, IBM
  184. *
  185. * Revision 1.3  2000/08/28 23:46:46  thiessen
  186. * functional denseg and dendiag alignment parsing
  187. *
  188. * Revision 1.2  2000/08/28 18:52:18  thiessen
  189. * start unpacking alignments
  190. *
  191. * Revision 1.1  2000/08/27 18:50:56  thiessen
  192. * extract sequence information
  193. *
  194. */