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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: sequence_viewer.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/04/12 17:33:35  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.33
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: sequence_viewer.hpp,v 1000.1 2004/04/12 17:33:35 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. *      implementation of non-GUI part of main sequence/alignment viewer
  38. *
  39. * ===========================================================================
  40. */
  41. #ifndef CN3D_SEQUENCE_VIEWER__HPP
  42. #define CN3D_SEQUENCE_VIEWER__HPP
  43. #include <corelib/ncbistl.hpp>
  44. #include <list>
  45. #include "viewer_base.hpp"
  46. BEGIN_SCOPE(Cn3D)
  47. class Sequence;
  48. class AlignmentManager;
  49. class BlockMultipleAlignment;
  50. class SequenceViewerWindow;
  51. class SequenceDisplay;
  52. class SequenceViewer : public ViewerBase
  53. {
  54.     friend class SequenceViewerWindow;
  55.     friend class SequenceDisplay;
  56.     friend class AlignmentManager;
  57. public:
  58.     SequenceViewer(AlignmentManager *alnMgr);
  59.     ~SequenceViewer(void);
  60.     // to create displays from unaligned sequence(s), or multiple alignment
  61.     typedef std::list < const Sequence * > SequenceList;
  62.     void DisplaySequences(const SequenceList *sequenceList);
  63.     void DisplayAlignment(BlockMultipleAlignment *multipleAlignment);
  64.     // turn on the editor (if not already on)
  65.     void TurnOnEditor(void);
  66.     // functions to save edited data
  67.     void SaveDialog(void);
  68.     void SaveAlignment(void);
  69.     // export current alignment
  70.     enum eExportType {
  71.         asFASTA,    // plain FASTA with gaps and all uppercase
  72.         asFASTAa2m, // a2m variant of FASTA, lowercase unaligned and '.' as unaligned gap
  73.         asText,     // plain text with id's and locations
  74.         asHTML      // HTML, like text but with color
  75.     };
  76.     void ExportAlignment(eExportType type);
  77. private:
  78.     SequenceViewerWindow *sequenceWindow;
  79.     void CreateSequenceWindow(bool showNow);
  80. };
  81. END_SCOPE(Cn3D)
  82. #endif // CN3D_SEQUENCE_VIEWER__HPP
  83. /*
  84. * ---------------------------------------------------------------------------
  85. * $Log: sequence_viewer.hpp,v $
  86. * Revision 1000.1  2004/04/12 17:33:35  gouriano
  87. * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.33
  88. *
  89. * Revision 1.33  2004/02/19 17:05:08  thiessen
  90. * remove cn3d/ from include paths; add pragma to disable annoying msvc warning
  91. *
  92. * Revision 1.32  2003/10/13 14:16:31  thiessen
  93. * add -n option to not show alignment window
  94. *
  95. * Revision 1.31  2003/02/03 19:20:06  thiessen
  96. * format changes: move CVS Log to bottom of file, remove std:: from .cpp files, and use new diagnostic macros
  97. *
  98. * Revision 1.30  2002/12/06 17:07:15  thiessen
  99. * remove seqrow export format; add choice of repeat handling for FASTA export; export rows in display order
  100. *
  101. * Revision 1.29  2002/12/02 13:37:08  thiessen
  102. * add seqrow format export
  103. *
  104. * Revision 1.28  2002/09/09 13:38:23  thiessen
  105. * separate save and save-as
  106. *
  107. * Revision 1.27  2002/09/03 13:15:58  thiessen
  108. * add A2M export
  109. *
  110. * Revision 1.26  2002/06/05 14:28:40  thiessen
  111. * reorganize handling of window titles
  112. *
  113. * Revision 1.25  2002/04/22 14:27:28  thiessen
  114. * add alignment export
  115. *
  116. * Revision 1.24  2002/03/07 19:16:04  thiessen
  117. * don't auto-show sequence windows
  118. *
  119. * Revision 1.23  2001/12/06 23:13:45  thiessen
  120. * finish import/align new sequences into single-structure data; many small tweaks
  121. *
  122. * Revision 1.22  2001/10/01 16:03:58  thiessen
  123. * make CDD annotation window non-modal; add SetWindowTitle to viewers
  124. *
  125. * Revision 1.21  2001/04/05 22:54:51  thiessen
  126. * change bg color handling ; show geometry violations
  127. *
  128. * Revision 1.20  2001/04/04 00:27:22  thiessen
  129. * major update - add merging, threader GUI controls
  130. *
  131. * Revision 1.19  2001/03/19 15:47:37  thiessen
  132. * add row sorting by identifier
  133. *
  134. * Revision 1.18  2001/03/13 01:24:16  thiessen
  135. * working undo system for >1 alignment (e.g., update window)
  136. *
  137. * Revision 1.17  2001/03/09 15:48:43  thiessen
  138. * major changes to add initial update viewer
  139. *
  140. * Revision 1.16  2001/03/01 20:15:29  thiessen
  141. * major rearrangement of sequence viewer code into base and derived classes
  142. *
  143. */