~ubuntu-branches/ubuntu/oneiric/libbpp-seq/oneiric

« back to all changes in this revision

Viewing changes to src/Bpp/Seq/Io/NexusIoSequence.h

  • Committer: Bazaar Package Importer
  • Author(s): Julien Dutheil
  • Date: 2011-06-09 11:00:00 UTC
  • Revision ID: james.westby@ubuntu.com-20110609110000-hnfrd9it0np58l54
Tags: upstream-2.0.2
Import upstream version 2.0.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//
 
2
// File: NexusIOSequence.h
 
3
// Created by: Julien Dutheil
 
4
// Created on: Wed May 27 16:15 2009
 
5
//
 
6
 
 
7
/*
 
8
Copyright or © or Copr. CNRS, (November 17, 2004)
 
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 _NEXUSIOSEQUENCE_H_
 
41
#define _NEXUSIOSEQUENCE_H_
 
42
 
 
43
#include "AbstractISequence2.h"
 
44
#include "../Sequence.h"
 
45
#include "../Container/SequenceContainer.h"
 
46
#include "../Container/VectorSequenceContainer.h"
 
47
#include "../Container/AlignedSequenceContainer.h"
 
48
 
 
49
// From the STL:
 
50
#include <iostream>
 
51
 
 
52
namespace bpp
 
53
{
 
54
 
 
55
/**
 
56
 * @brief The Nexus format reader for sequences.
 
57
 *
 
58
 * An AlignedSequenceContainer is used instead of a VectorSequenceContainer.
 
59
 *
 
60
 * This reader is not supposed to be a full parser of the Nexus files,
 
61
 * but only extract the sequence data. Only a basic subset of the options
 
62
 * are and will be supported.
 
63
 *
 
64
 * This format is described in the following paper:
 
65
 * Maddison D, Swofford D, and Maddison W (1997), _Syst Biol_ 46(4):590-621
 
66
 *
 
67
 * @author Julien Dutheil
 
68
 */
 
69
class NexusIOSequence:
 
70
  public AbstractIAlignment
 
71
{
 
72
  protected:
 
73
 
 
74
    /**
 
75
     * @brief The maximum number of chars to be written on a line.
 
76
     */
 
77
    unsigned int charsByLine_;
 
78
 
 
79
    bool checkNames_;
 
80
 
 
81
  public:
 
82
    /**
 
83
     * @brief Build a new Phylip file reader.
 
84
     *
 
85
     * @param charsByLine The number of base to display in a row (ignored for now, no writing support).
 
86
     * @param checkSequenceNames Tell if the names in the file should be checked for unicity (slower, in o(n*n) where n is the number of sequences).
 
87
     */
 
88
    NexusIOSequence(unsigned int charsByLine = 100, bool checkSequenceNames = true):
 
89
      charsByLine_(charsByLine), checkNames_(checkSequenceNames) {}
 
90
 
 
91
    virtual ~NexusIOSequence() {}
 
92
 
 
93
  public:
 
94
 
 
95
    /**
 
96
     * @name The AbstractISequence2 interface.
 
97
     *
 
98
     * @{
 
99
     */
 
100
    void appendFromStream(std::istream& input, SiteContainer& sc) const throw (Exception);
 
101
    /** @} */
 
102
 
 
103
    /**
 
104
     * @name The IOSequence interface.
 
105
     *
 
106
     * @{
 
107
     */
 
108
    const std::string getFormatName() const;
 
109
    const std::string getFormatDescription() const;
 
110
    /** @} */
 
111
 
 
112
    /**
 
113
     * @return true if the names are to be checked when reading sequences from files.
 
114
     */
 
115
    bool checkNames() const { return checkNames_; }
 
116
 
 
117
    /**
 
118
     * @brief Tell whether the sequence names should be checked when reading from files.
 
119
     *
 
120
     * @param yn whether the sequence names should be checked when reading from files.
 
121
     */
 
122
    void checkNames(bool yn) { checkNames_ = yn; }
 
123
 
 
124
    
 
125
  private:
 
126
    //Reading tools:
 
127
    const std::vector<std::string> splitNameAndSequence_(const std::string & s) const throw (Exception); 
 
128
};
 
129
 
 
130
} //end of namespace bpp.
 
131
 
 
132
#endif  //_NEXUSIOSEQUENCE_H_
 
133