bpp-seq-omics  2.4.1
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  public:
86  bool hasMoreFeature() const { return nextLine_ != ""; }
88 
90  while (hasMoreFeature()) {
91  features.addFeature(nextFeature());
92  }
93  }
94  void getFeaturesOfType(const std::string& type, SequenceFeatureSet& features) {
95  while (hasMoreFeature()) {
97  if (feature.getType() == type)
98  features.addFeature(feature);
99  }
100  }
101  void getFeaturesOfSequence(const std::string& seqId, SequenceFeatureSet& features) {
102  while (hasMoreFeature()) {
103  BasicSequenceFeature feature = nextFeature();
104  if (feature.getSequenceId() == seqId)
105  features.addFeature(feature);
106  }
107  }
108 
109  private:
110  void getNextLine_();
111 
112 };
113 
114 } //end of namespace bpp
115 
116 #endif //_GTFFEATUREREADER_H_
117 
A very simple implementation of the SequenceFeature class.
const std::string & getSequenceId() const
const std::string & getType() const
Interface for feature readers.
Definition: FeatureReader.h:60
A simple reader implementing the Gene Transfer Format.
static const std::string GTF_TRANSCRIPT_ID
bool hasMoreFeature() const
void getFeaturesOfSequence(const std::string &seqId, SequenceFeatureSet &features)
static const std::string GTF_PHASE
void getAllFeatures(SequenceFeatureSet &features)
static const std::string GTF_GENE_ID
const BasicSequenceFeature nextFeature()
void getFeaturesOfType(const std::string &type, SequenceFeatureSet &features)
GtfFeatureReader(std::istream &input)
A simple ensemble of sequence features.
void addFeature(const SequenceFeature &feature)
Add a feature to the container. The feature will be copied and the copy owned by the container.