~ubuntu-branches/ubuntu/saucy/libbpp-seq/saucy-proposed

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Julien Dutheil
  • Date: 2013-03-05 14:31:00 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20130305143100-2jox395vr1ghao46
Tags: 2.1.0-1
* 'omics' tools now in bpp-seq-omics
* Extended BppO support
* StateProperties renamed to AlphabetIndex

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//
 
2
// File: BppOSequenceReaderFormat.h
 
3
// Created by: Julien Dutheil
 
4
// Created on: Friday September 14th, 14:08
 
5
//
 
6
 
 
7
/*
 
8
  Copyright or © or Copr. Bio++ Development Team, (November 16, 2004)
 
9
 
 
10
  This software is a computer program whose purpose is to provide classes
 
11
  for phylogenetic data 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 _BPPOSEQUENCEREADERFORMAT_H_
 
41
#define _BPPOSEQUENCEREADERFORMAT_H_
 
42
 
 
43
#include "IoSequenceFactory.h"
 
44
 
 
45
namespace bpp
 
46
{
 
47
 
 
48
  /**
 
49
   * @brief Sequence I/O in BppO format.
 
50
   *
 
51
   * Creates a new ISequence object according to
 
52
   * distribution description syntax (see the Bio++ Program Suite
 
53
   * manual for a detailed description of this syntax).
 
54
   *
 
55
   */
 
56
  class BppOSequenceReaderFormat:
 
57
    public virtual IOFormat
 
58
  {
 
59
  private:
 
60
    bool verbose_;
 
61
    std::map<std::string, std::string> unparsedArguments_;
 
62
 
 
63
  public:
 
64
    BppOSequenceReaderFormat(bool verbose = true):
 
65
      verbose_(verbose),
 
66
      unparsedArguments_() {}
 
67
    virtual ~BppOSequenceReaderFormat() {}
 
68
 
 
69
  public:
 
70
    const std::string getFormatName() const { return "BppO"; }
 
71
 
 
72
    const std::string getFormatDescription() const { return "Bpp Options format."; }
 
73
 
 
74
                const std::string getDataType() const { return "Sequence reader"; }
 
75
 
 
76
    /**
 
77
     * @brief Read a ISequence object from a string.
 
78
     *
 
79
     * @param description A string describing the reader in the keyval syntax.
 
80
     * @return A new ISequence object according to options specified.
 
81
     * @throw Exception if an error occured.
 
82
     */
 
83
    ISequence* read(const std::string& description) throw (Exception);
 
84
 
 
85
    /**
 
86
     * @return The arguments and their unparsed values from the last call of the read function, if there are any.
 
87
     */
 
88
    virtual const std::map<std::string, std::string>& getUnparsedArguments() const { return unparsedArguments_; }
 
89
 
 
90
  };
 
91
 
 
92
} //end of namespace bpp.
 
93
 
 
94
#endif //_BPPOSEQUENCEREADERFORMAT_H_
 
95