// UnimesParser.hpp #if !defined(UNIMES_PARSER_HPP) #define UNIMES_PARSER_HPP #include "FastaWriter.hpp" #include "Parser.hpp" #include "Reader.hpp" namespace NGBW { class UnimesParser : public Parser { public: UnimesParser(Reader &input) throw() : Parser(input) { } ~UnimesParser() throw() { } bool Parse(FastaRecord &record); private: void ParseHeader(FastaRecord &record); }; } // namespace NGBW #endif // UNIMES_PARSER_HPP