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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: su_alignment_set.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2004/06/01 18:14:23  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [GCC34_MSVC7] Dev-tree R1.5
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: su_alignment_set.hpp,v 1000.0 2004/06/01 18:14:23 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 SU_ALIGNMENT_SET__HPP
  42. #define SU_ALIGNMENT_SET__HPP
  43. #include <corelib/ncbistl.hpp>
  44. #include <corelib/ncbiobj.hpp>
  45. #include <corelib/ncbi_limits.hpp>
  46. #include <list>
  47. #include <vector>
  48. #include <map>
  49. #include <objects/seq/Seq_annot.hpp>
  50. #include <objects/seqalign/Seq_align.hpp>
  51. BEGIN_SCOPE(struct_util)
  52. class Sequence;
  53. class SequenceSet;
  54. class BlockMultipleAlignment;
  55. class MasterSlaveAlignment : public ncbi::CObject
  56. {
  57. public:
  58.     MasterSlaveAlignment(const ncbi::objects::CSeq_align& seqAlign,
  59.         const Sequence *masterSequence, const SequenceSet& sequenceSet);
  60.     // pointers to the sequences in this pairwise alignment
  61.     const Sequence *m_master, *m_slave;
  62.     // this vector maps slave residues onto the master - e.g., masterToSlave[10] = 5
  63.     // means that residue #10 in the master is aligned to residue #5 of the slave.
  64.     // Residues are numbered from zero. masterToSlave[n] = UNALIGNED means that master
  65.     // residue n is unaligned.
  66.     enum {
  67.         eUnaligned = kMax_UInt
  68.     };
  69.     typedef std::vector < unsigned int > ResidueVector;
  70.     ResidueVector m_masterToSlave;
  71.     // this vector contains the original block structure of the Seq-align, so that
  72.     // the IBM algorithm can avoid merging blocks (primarily for CDD's).
  73.     // blockStructure[i] = n means residue i (of the master) is from block n (0..nblocks-1),
  74.     // or n = UNALIGNED if residue i is unaligned
  75.     ResidueVector m_blockStructure;
  76. };
  77. class AlignmentSet : public ncbi::CObject
  78. {
  79. public:
  80.     typedef std::list< ncbi::CRef< ncbi::objects::CSeq_annot > > SeqAnnotList;
  81.     AlignmentSet(const SeqAnnotList& seqAnnots, const SequenceSet& sequenceSet);
  82.     typedef std::list < ncbi::CRef < MasterSlaveAlignment > > AlignmentList;
  83.     AlignmentList m_alignments;
  84.     // pointer to the master sequence for each pairwise master/slave alignment in this set
  85.     const Sequence *m_master;
  86.     // constructs a new AlignmentSet (and asn data) from a multiple alignment
  87.     static AlignmentSet * CreateFromMultiple(
  88.         const BlockMultipleAlignment *multiple, SeqAnnotList *newAsnAlignmentData,
  89.         const SequenceSet& sequenceSet, const std::vector < unsigned int > *rowOrder = NULL);
  90. };
  91. END_SCOPE(struct_util)
  92. #endif // SU_ALIGNMENT_SET__HPP
  93. /*
  94. * ---------------------------------------------------------------------------
  95. * $Log: su_alignment_set.hpp,v $
  96. * Revision 1000.0  2004/06/01 18:14:23  gouriano
  97. * PRODUCTION: IMPORTED [GCC34_MSVC7] Dev-tree R1.5
  98. *
  99. * Revision 1.5  2004/05/26 14:45:11  gorelenk
  100. * UNALIGNED->eUnaligned
  101. *
  102. * Revision 1.4  2004/05/26 01:57:47  ucko
  103. * Move #include <corelib/ncbi_limits.hpp> from su_alignment_set.cpp for
  104. * kMax_UInt.
  105. *
  106. * Revision 1.3  2004/05/25 21:22:28  ucko
  107. * Some compilers don't support static const members, so make
  108. * MasterSlaveAlignment::UNALIGNED a member of an (anonymous) enum instead.
  109. *
  110. * Revision 1.2  2004/05/25 15:52:17  thiessen
  111. * add BlockMultipleAlignment, IBM algorithm
  112. *
  113. * Revision 1.1  2004/05/24 23:04:05  thiessen
  114. * initial checkin
  115. *
  116. */