better sidebar rendering
[mussa.git] / alg / sequence.hpp
1 #ifndef _MUSSA_SEQUENCE_H_
2 #define _MUSSA_SEQUENCE_H_
3 //  This file is part of the Mussa source distribution.
4 //  http://mussa.caltech.edu/
5 //  Contact author: Tristan  De Buysscher, tristan@caltech.edu
6
7 // This program and all associated source code files are Copyright (C) 2005
8 // the California Institute of Technology, Pasadena, CA, 91125 USA.  It is
9 // under the GNU Public License; please see the included LICENSE.txt
10 // file for more information, or contact Tristan directly.
11
12
13 //                        ----------------------------------------
14 //                           ---------- sequence.hh -----------
15 //                        ----------------------------------------
16
17
18 #include <fstream>
19 #include <list>
20 #include <string>
21 #include <vector>
22 #include <iostream>
23
24 // Sequence data class
25
26 //! Attach annotation information to a sequence track
27 struct annot
28 {
29   annot();
30   annot(int start, int end, std::string type, std::string name);
31   
32   int start;
33   int end;
34   std::string type;
35   std::string name;
36 };
37
38 /* The way that motifs are found currently doesn't really 
39  * indicate that the match was a reverse compliment
40  */
41 struct motif : public annot
42 {
43   std::string sequence;
44
45   //! this constructor is for when we're adding motifs to our annotations
46   motif(int start, std::string motif);
47 };
48
49 //! sequence track for mussa.
50 class Sequence
51 {
52   friend class ConnView;
53   friend class SeqView;
54   private:
55     std::string sequence;
56     std::string header;
57     std::string species;
58
59     std::list<annot> annots;
60     //! a seperate list for motifs since we're currently not saving them
61     std::list<motif> motif_list;
62
63     void motif_scan(std::string a_motif, std::vector<int> * motif_match_starts);
64     std::string rc_motif(std::string a_motif);
65   public:
66     typedef std::string::iterator iterator;
67     typedef std::string::const_iterator const_iterator;
68     typedef std::string::size_type size_type;
69
70     Sequence();
71     Sequence(std::string seq);
72     //! assignment to constant sequences
73     Sequence &operator=(const Sequence&);
74     Sequence &operator=(const std::string &);
75     char operator[](int) const;
76     friend std::ostream& operator<<(std::ostream& out, const Sequence& seq);
77
78     //! set sequence to a (sub)string containing nothing but AGCTN
79     void set_filtered_sequence(const std::string& seq, 
80                                std::string::size_type start=0, 
81                                std::string::size_type count=0);
82
83     //! load sequence AGCT from fasta file
84     /*! \throws mussa_load_error 
85      */
86     void load_fasta(const std::string file_path, int seq_num=1, 
87                     int start_index=0, int end_index=0);
88     //! load sequence annotations
89     /*! \throws mussa_load_error 
90      */
91     void load_annot(const std::string file_path, int start_index, int end_index);
92     const std::list<annot>& annotations() const;
93     const std::list<motif>& motifs() const;
94     const std::string& get_species() const;
95
96     // simple access functions
97     void set_seq(const std::string& a_seq);
98     const std::string& get_seq() const;
99     const char *c_seq() const;
100     std::string subseq(int start, int end) const;
101     std::string rev_comp() const;
102
103     // string-like functions
104     iterator begin();
105     const_iterator begin() const;
106     iterator end();
107     const_iterator end() const;
108     bool empty() const;
109     //! alias for size, (included as this is much like a string)
110     std::string::size_type length() const;
111     //! the number of base pairs in this sequence
112     std::string::size_type size() const;
113     void clear();
114
115     const std::string& get_header() const;
116     //! add a motif to our list of motifs
117     /*! \throws motif_normalize_error if there's something wrong with a_motif
118      */
119     void add_motif(std::string a_motif);
120     //! clear our list of found motifs
121     void clear_motifs();
122     //! search a sequence for a_motif
123     /*! \throws motif_normalize_error if there's something wrong with a_motif
124      */
125     std::vector<int> find_motif(std::string a_motif);
126     //! convert IUPAC symbols to upperase
127     /*! \throws motif_normalize_error if there is an invalid symbol
128      */
129     static std::string motif_normalize(std::string a_motif);
130     void save(std::fstream &save_file);
131     void load_museq(std::string load_file_path, int seq_num); 
132 };
133 #endif