2482 |
24 Apr 11 |
peter |
1 |
#ifndef theplu_yat_omic_gff2 |
2482 |
24 Apr 11 |
peter |
2 |
#define theplu_yat_omic_gff2 |
2482 |
24 Apr 11 |
peter |
3 |
|
2993 |
03 Mar 13 |
peter |
// $Id$ |
2993 |
03 Mar 13 |
peter |
5 |
|
2482 |
24 Apr 11 |
peter |
6 |
/* |
4359 |
23 Aug 23 |
peter |
Copyright (C) 2011, 2013 Peter Johansson |
2482 |
24 Apr 11 |
peter |
8 |
|
2482 |
24 Apr 11 |
peter |
This file is part of the yat library, http://dev.thep.lu.se/yat |
2482 |
24 Apr 11 |
peter |
10 |
|
2482 |
24 Apr 11 |
peter |
The yat library is free software; you can redistribute it and/or |
2482 |
24 Apr 11 |
peter |
modify it under the terms of the GNU General Public License as |
2482 |
24 Apr 11 |
peter |
published by the Free Software Foundation; either version 3 of the |
2482 |
24 Apr 11 |
peter |
License, or (at your option) any later version. |
2482 |
24 Apr 11 |
peter |
15 |
|
2482 |
24 Apr 11 |
peter |
The yat library is distributed in the hope that it will be useful, |
2482 |
24 Apr 11 |
peter |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
2482 |
24 Apr 11 |
peter |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
2482 |
24 Apr 11 |
peter |
General Public License for more details. |
2482 |
24 Apr 11 |
peter |
20 |
|
2482 |
24 Apr 11 |
peter |
You should have received a copy of the GNU General Public License |
2482 |
24 Apr 11 |
peter |
along with yat. If not, see <http://www.gnu.org/licenses/>. |
2482 |
24 Apr 11 |
peter |
23 |
*/ |
2482 |
24 Apr 11 |
peter |
24 |
|
2482 |
24 Apr 11 |
peter |
25 |
#include "GFF.h" |
2482 |
24 Apr 11 |
peter |
26 |
|
2482 |
24 Apr 11 |
peter |
27 |
namespace theplu { |
2482 |
24 Apr 11 |
peter |
28 |
namespace yat { |
2482 |
24 Apr 11 |
peter |
29 |
namespace omic { |
2482 |
24 Apr 11 |
peter |
30 |
|
2482 |
24 Apr 11 |
peter |
31 |
/** |
2482 |
24 Apr 11 |
peter |
Class for GFF2 |
2482 |
24 Apr 11 |
peter |
33 |
|
2900 |
13 Dec 12 |
peter |
The difference is how the values |
2482 |
24 Apr 11 |
peter |
35 |
|
2482 |
24 Apr 11 |
peter |
\since New in yat 0.8 |
2482 |
24 Apr 11 |
peter |
37 |
*/ |
2482 |
24 Apr 11 |
peter |
38 |
class GFF2 : public GFF |
2482 |
24 Apr 11 |
peter |
39 |
{ |
2482 |
24 Apr 11 |
peter |
40 |
void add_attribute(std::map<std::string, std::string>& m, |
2482 |
24 Apr 11 |
peter |
41 |
const std::string& str) const; |
2482 |
24 Apr 11 |
peter |
42 |
}; |
2482 |
24 Apr 11 |
peter |
43 |
|
2482 |
24 Apr 11 |
peter |
44 |
}}} |
2482 |
24 Apr 11 |
peter |
45 |
#endif |