NCBI C++ ToolKit
sequence_viewer.hpp
Go to the documentation of this file.

Go to the SVN repository for this file.

1 /* $Id: sequence_viewer.hpp 64773 2014-10-08 13:59:20Z thiessen $
2 * ===========================================================================
3 *
4 * PUBLIC DOMAIN NOTICE
5 * National Center for Biotechnology Information
6 *
7 * This software/database is a "United States Government Work" under the
8 * terms of the United States Copyright Act. It was written as part of
9 * the author's official duties as a United States Government employee and
10 * thus cannot be copyrighted. This software/database is freely available
11 * to the public for use. The National Library of Medicine and the U.S.
12 * Government have not placed any restriction on its use or reproduction.
13 *
14 * Although all reasonable efforts have been taken to ensure the accuracy
15 * and reliability of the software and data, the NLM and the U.S.
16 * Government do not and cannot warrant the performance or results that
17 * may be obtained by using this software or data. The NLM and the U.S.
18 * Government disclaim all warranties, express or implied, including
19 * warranties of performance, merchantability or fitness for any particular
20 * purpose.
21 *
22 * Please cite the author in any work or product based on this material.
23 *
24 * ===========================================================================
25 *
26 * Authors: Paul Thiessen
27 *
28 * File Description:
29 * implementation of non-GUI part of main sequence/alignment viewer
30 *
31 * ===========================================================================
32 */
33 
34 #ifndef CN3D_SEQUENCE_VIEWER__HPP
35 #define CN3D_SEQUENCE_VIEWER__HPP
36 
37 #include <corelib/ncbistl.hpp>
38 
39 #include <list>
40 
41 #include "viewer_base.hpp"
42 
43 
44 BEGIN_SCOPE(Cn3D)
45 
46 class Sequence;
47 class AlignmentManager;
50 class SequenceDisplay;
51 
52 class SequenceViewer : public ViewerBase
53 {
54  friend class SequenceViewerWindow;
55  friend class SequenceDisplay;
56  friend class AlignmentManager;
57 
58 public:
59 
61  ~SequenceViewer(void);
62 
63  // to create displays from unaligned sequence(s), or multiple alignment
64  typedef std::list < const Sequence * > SequenceList;
65  void DisplaySequences(const SequenceList *sequenceList);
66  void DisplayAlignment(BlockMultipleAlignment *multipleAlignment);
67 
68  // turn on the editor (if not already on)
69  void TurnOnEditor(void);
70 
71  // put in a new alignment (undoable)
73 
74  // functions to save edited data
75  void SaveAlignment(void);
76 
77  // export current alignment
78  enum eExportType {
79  asFASTA, // plain FASTA with gaps and all uppercase
80  asFASTAa2m, // a2m variant of FASTA, lowercase unaligned and '.' as unaligned gap
81  asText, // plain text with id's and locations
82  asHTML, // HTML, like text but with color
83  asPSSM // asn PssmWithParameters
84  };
86 
87 private:
88 
90 
91  void CreateSequenceWindow(bool showNow);
92 };
93 
94 END_SCOPE(Cn3D)
95 
96 #endif // CN3D_SEQUENCE_VIEWER__HPP
SequenceViewerWindow * sequenceWindow
void SaveAlignment(void)
void CreateSequenceWindow(bool showNow)
std::list< const Sequence * > SequenceList
bool ReplaceAlignment(const BlockMultipleAlignment *origAln, BlockMultipleAlignment *newAln)
void DisplayAlignment(BlockMultipleAlignment *multipleAlignment)
SequenceViewer(AlignmentManager *alnMgr)
void TurnOnEditor(void)
void DisplaySequences(const SequenceList *sequenceList)
void ExportAlignment(eExportType type)
#define END_SCOPE(ns)
End the previously defined scope.
Definition: ncbistl.hpp:75
#define BEGIN_SCOPE(ns)
Define a new scope.
Definition: ncbistl.hpp:72
The NCBI C++/STL use hints.
Definition: type.c:6
Modified on Wed May 15 15:08:13 2024 by modify_doxy.py rev. 669887