bpp-seq-omics  2.2.0
GtfFeatureReader.h
Go to the documentation of this file.
1 //
2 // File: GtfFeatureReader.h
3 // Created by: Sylvain Gaillard
4 // Created on: Fry Jan 27 2012
5 //
6 
7 /*
8 Copyright or © or Copr. Bio++ Development Team, (January 27, 2012)
9 
10 This software is a computer program whose purpose is to provide classes
11 for sequences analysis.
12 
13 This software is governed by the CeCILL license under French law and
14 abiding by the rules of distribution of free software. You can use,
15 modify and/ or redistribute the software under the terms of the CeCILL
16 license as circulated by CEA, CNRS and INRIA at the following URL
17 "http://www.cecill.info".
18 
19 As a counterpart to the access to the source code and rights to copy,
20 modify and redistribute granted by the license, users are provided only
21 with a limited warranty and the software's author, the holder of the
22 economic rights, and the successive licensors have only limited
23 liability.
24 
25 In this respect, the user's attention is drawn to the risks associated
26 with loading, using, modifying and/or developing or reproducing the
27 software by the user in light of its specific status of free software,
28 that may mean that it is complicated to manipulate, and that also
29 therefore means that it is reserved for developers and experienced
30 professionals having in-depth computer knowledge. Users are therefore
31 encouraged to load and test the software's suitability as regards their
32 requirements in conditions enabling the security of their systems and/or
33 data to be ensured and, more generally, to use and operate it in the
34 same conditions as regards security.
35 
36 The fact that you are presently reading this means that you have had
37 knowledge of the CeCILL license and that you accept its terms.
38 */
39 
40 #ifndef _GTFFEATUREREADER_H_
41 #define _GTFFEATUREREADER_H_
42 
43 #include "../SequenceFeature.h"
44 #include "../FeatureReader.h"
45 
46 //From bpp-core:
47 #include <Bpp/Exceptions.h>
48 
49 //From the STL:
50 #include <string>
51 #include <vector>
52 
53 namespace bpp {
54 
67  public virtual FeatureReader
68 {
69  public:
70  static const std::string GTF_PHASE;
71  static const std::string GTF_GENE_ID;
72  static const std::string GTF_TRANSCRIPT_ID;
73 
74  private:
75  std::istream* input_;
76  std::string nextLine_;
77 
78  public:
79  GtfFeatureReader(std::istream& input):
80  input_(&input), nextLine_()
81  {
82  getNextLine_();
83  }
84 
85  private:
87  GtfFeatureReader& operator=(const GtfFeatureReader& reader) { return *this; }
88 
89  public:
90  bool hasMoreFeature() const { return nextLine_ != ""; }
91  const BasicSequenceFeature nextFeature() throw (Exception);
92 
94  while (hasMoreFeature()) {
95  features.addFeature(nextFeature());
96  }
97  }
98  void getFeaturesOfType(const std::string& type, SequenceFeatureSet& features) {
99  while (hasMoreFeature()) {
100  BasicSequenceFeature feature = nextFeature();
101  if (feature.getType() == type)
102  features.addFeature(feature);
103  }
104  }
105  void getFeaturesOfSequence(const std::string& seqId, SequenceFeatureSet& features) {
106  while (hasMoreFeature()) {
107  BasicSequenceFeature feature = nextFeature();
108  if (feature.getSequenceId() == seqId)
109  features.addFeature(feature);
110  }
111  }
112 
113  private:
114  void getNextLine_();
115 
116 };
117 
118 } //end of namespace bpp
119 
120 #endif //_GTFFEATUREREADER_H_
121 
const std::string & getType() const
void addFeature(const SequenceFeature &feature)
Add a feature to the container. The feature will be copied and the copy owned by the container...
A simple reader implementing the Gene Transfer Format.
void getAllFeatures(SequenceFeatureSet &features)
Interface for feature readers.
Definition: FeatureReader.h:59
GtfFeatureReader & operator=(const GtfFeatureReader &reader)
static const std::string GTF_TRANSCRIPT_ID
GtfFeatureReader(std::istream &input)
static const std::string GTF_PHASE
void getFeaturesOfType(const std::string &type, SequenceFeatureSet &features)
GtfFeatureReader(const GtfFeatureReader &reader)
static const std::string GTF_GENE_ID
const BasicSequenceFeature nextFeature()
bool hasMoreFeature() const
const std::string & getSequenceId() const
A very simple implementation of the SequenceFeature class.
void getFeaturesOfSequence(const std::string &seqId, SequenceFeatureSet &features)
A simple ensemble of sequence features.