comparison snp_caller/src/Fasta.h @ 0:0fd352f62446 draft default tip

planemo upload for repository https://github.com/ChrisD11/Duplicon commit 3ee0594c692faac542ffa58f4339d79b9b8aefbd-dirty
author chrisd
date Sun, 21 Feb 2016 06:05:24 -0500
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:0fd352f62446
1 #include "FastaRecord.h"
2 #include <vector>
3 #include <string>
4
5 class Fasta {
6 public:
7 Fasta(std::string amr_fp);
8 void read_fasta(const std::string &amr_fp);
9
10 std::vector<FastaRecord> records;
11 private:
12 std::string _amr_fp;
13 };