bpp-seq-omics  2.2.0
BlockMergerMafIterator.h
Go to the documentation of this file.
1 //
2 // File: BlockMergerMafIterator.h
3 // Authors: Julien Dutheil
4 // Created: Tue Sep 07 2010
5 //
6 
7 /*
8 Copyright or © or Copr. Bio++ Development Team, (2010)
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 _BLOCKMERGERMAFITERATOR_H_
41 #define _BLOCKMERGERMAFITERATOR_H_
42 
43 #include "MafIterator.h"
44 
45 //From the STL:
46 #include <iostream>
47 #include <string>
48 #include <deque>
49 
50 namespace bpp {
51 
65 {
66  private:
67  std::vector<std::string> species_;
69  std::vector<std::string> ignoreChrs_; //These chromsomes will never be merged (ex: 'Un').
70  unsigned int maxDist_;
71 
72  public:
73  BlockMergerMafIterator(MafIterator* iterator, const std::vector<std::string>& species, unsigned int maxDist = 0) :
74  AbstractFilterMafIterator(iterator),
75  species_(species),
76  incomingBlock_(0),
77  ignoreChrs_(),
78  maxDist_(maxDist)
79  {
80  incomingBlock_ = iterator->nextBlock();
81  }
82 
83  private:
86  species_(iterator.species_),
88  ignoreChrs_(iterator.ignoreChrs_),
89  maxDist_(iterator.maxDist_)
90  {}
91 
93  {
94  species_ = iterator.species_;
95  incomingBlock_ = iterator.incomingBlock_;
96  ignoreChrs_ = iterator.ignoreChrs_;
97  maxDist_ = iterator.maxDist_;
98  return *this;
99  }
100 
101  public:
106  void ignoreChromosome(const std::string& chr) {
107  ignoreChrs_.push_back(chr);
108  }
109 
110  private:
111  MafBlock* analyseCurrentBlock_() throw (Exception);
112 
113 };
114 
115 } // end of namespace bpp.
116 
117 #endif //_BLOCKMERGERMAFITERATOR_H_
BlockMergerMafIterator & operator=(const BlockMergerMafIterator &iterator)
std::vector< std::string > species_
A synteny block data structure, the basic unit of a MAF alignement file.
Definition: MafBlock.h:55
BlockMergerMafIterator(MafIterator *iterator, const std::vector< std::string > &species, unsigned int maxDist=0)
virtual MafBlock * nextBlock()=0
Get the next available alignment block.
BlockMergerMafIterator(const BlockMergerMafIterator &iterator)
Interface to loop over maf alignment blocks.
Definition: MafIterator.h:58
std::vector< std::string > ignoreChrs_
Merge blocks if some of their sequences are contiguous.
void ignoreChromosome(const std::string &chr)
Helper class for developping filter for maf blocks.
Definition: MafIterator.h:149