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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: alignment_set.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/04/12 17:30:31  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.16
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: alignment_set.hpp,v 1000.1 2004/04/12 17:30:31 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 alignments
  38. *
  39. * ===========================================================================
  40. */
  41. #ifndef CN3D_ALIGNMENT_SET__HPP
  42. #define CN3D_ALIGNMENT_SET__HPP
  43. #include <corelib/ncbistl.hpp>
  44. #include <list>
  45. #include <vector>
  46. #include <map>
  47. #include <objects/seq/Seq_annot.hpp>
  48. #include <objects/seqalign/Seq_align.hpp>
  49. #include "structure_base.hpp"
  50. BEGIN_SCOPE(Cn3D)
  51. class MasterSlaveAlignment;
  52. class Sequence;
  53. class BlockMultipleAlignment;
  54. class AlignmentSet : public StructureBase
  55. {
  56. public:
  57.     typedef std::list< ncbi::CRef< ncbi::objects::CSeq_annot > > SeqAnnotList;
  58.     AlignmentSet(StructureBase *parent, const Sequence *masterSequence, const SeqAnnotList& seqAnnots);
  59.     ~AlignmentSet(void);
  60.     // constructs a new AlignmentSet from a multiple alignment
  61.     static AlignmentSet * CreateFromMultiple(StructureBase *parent,
  62.         const BlockMultipleAlignment *multiple, const std::vector < int >& rowOrder);
  63.     typedef std::list < const MasterSlaveAlignment * > AlignmentList;
  64.     AlignmentList alignments;
  65.     // pointer to the master sequence for each pairwise master/slave alignment in this set
  66.     const Sequence *master;
  67.     bool Draw(const AtomSet *atomSet = NULL) const { return false; } // not drawable
  68.     // new alignment data in asn1 format, created from (edited) BlockMultipleAlignment
  69.     SeqAnnotList *newAsnAlignmentData;
  70. };
  71. class MasterSlaveAlignment : public StructureBase
  72. {
  73. public:
  74.     MasterSlaveAlignment(StructureBase *parent, const Sequence *masterSequence,
  75.         const ncbi::objects::CSeq_align& seqAlign);
  76.     // pointers to the sequences in this pairwise alignment
  77.     const Sequence *master, *slave;
  78.     // this vector maps slave residues onto the master - e.g., masterToSlave[10] = 5
  79.     // means that residue #10 in the master is aligned to residue #5 of the slave.
  80.     // Residues are numbered from zero. masterToSlave[n] = -1 means that master
  81.     // residue n is unaligned.
  82.     typedef std::vector < int > ResidueVector;
  83.     ResidueVector masterToSlave;
  84.     // this vector contains the original block structure of the Seq-align, so that
  85.     // the IBM algorithm can avoid merging blocks (primarily for CDD's).
  86.     // blockStructure[i] = n means residue i (of the master) is from block n (0..nblocks-1),
  87.     // or n = -1 if residue i is unaligned
  88.     ResidueVector blockStructure;
  89. };
  90. END_SCOPE(Cn3D)
  91. #endif // CN3D_ALIGNMENT_SET__HPP
  92. /*
  93. * ---------------------------------------------------------------------------
  94. * $Log: alignment_set.hpp,v $
  95. * Revision 1000.1  2004/04/12 17:30:31  gouriano
  96. * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.16
  97. *
  98. * Revision 1.16  2004/02/19 17:04:40  thiessen
  99. * remove cn3d/ from include paths; add pragma to disable annoying msvc warning
  100. *
  101. * Revision 1.15  2003/02/03 19:20:00  thiessen
  102. * format changes: move CVS Log to bottom of file, remove std:: from .cpp files, and use new diagnostic macros
  103. *
  104. * Revision 1.14  2002/11/06 00:18:10  thiessen
  105. * fixes for new CRef/const rules in objects
  106. *
  107. * Revision 1.13  2001/11/27 16:26:06  thiessen
  108. * major update to data management system
  109. *
  110. * Revision 1.12  2001/05/02 13:46:14  thiessen
  111. * major revision of stuff relating to saving of updates; allow stored null-alignments
  112. *
  113. * Revision 1.11  2001/04/17 20:15:23  thiessen
  114. * load 'pending' Cdd alignments into update window
  115. *
  116. * Revision 1.10  2000/12/29 19:23:49  thiessen
  117. * save row order
  118. *
  119. * Revision 1.9  2000/12/26 16:47:39  thiessen
  120. * preserve block boundaries
  121. *
  122. * Revision 1.8  2000/11/12 04:02:21  thiessen
  123. * working file save including alignment edits
  124. *
  125. * Revision 1.7  2000/11/11 21:12:07  thiessen
  126. * create Seq-annot from BlockMultipleAlignment
  127. *
  128. * Revision 1.6  2000/11/02 16:48:22  thiessen
  129. * working editor undo; dynamic slave transforms
  130. *
  131. * Revision 1.5  2000/10/04 17:40:44  thiessen
  132. * rearrange STL #includes
  133. *
  134. * Revision 1.4  2000/09/15 19:24:33  thiessen
  135. * allow repeated structures w/o different local id
  136. *
  137. * Revision 1.3  2000/08/30 19:49:03  thiessen
  138. * working sequence window
  139. *
  140. * Revision 1.2  2000/08/29 04:34:15  thiessen
  141. * working alignment manager, IBM
  142. *
  143. * Revision 1.1  2000/08/28 18:52:16  thiessen
  144. * start unpacking alignments
  145. *
  146. */