File: FASTAParser.hpp

package info (click to toggle)
salmon 0.7.2%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 4,352 kB
  • ctags: 5,243
  • sloc: cpp: 42,341; ansic: 6,252; python: 228; makefile: 207; sh: 190
file content (18 lines) | stat: -rw-r--r-- 314 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef FASTA_PARSER
#define FASTA_PARSER

#include <vector>

class Transcript;
class SalmonOpts;

class FASTAParser {
public:
    FASTAParser(const std::string& fname);
    void populateTargets(std::vector<Transcript>& transcripts, SalmonOpts& sopt);

private:
    std::string fname_;
};

#endif // FASTA_PARSER