#ifndef FASTA_PARSER #define FASTA_PARSER #include class Transcript; struct SalmonOpts; class FASTAParser { public: FASTAParser(const std::string& fname); void populateTargets(std::vector& transcripts, SalmonOpts& sopt); private: std::string fname_; }; #endif // FASTA_PARSER