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