1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
//
// testvsearchfileparser.h
// Mothur
//
// Created by Sarah Westcott on 3/24/16.
// Copyright (c) 2016 Schloss Lab. All rights reserved.
//
#ifndef __Mothur__testvsearchfileparser__
#define __Mothur__testvsearchfileparser__
#include "vsearchfileparser.h"
#include "dataset.h"
class TestVsearchFileParser : public VsearchFileParser {
public:
TestVsearchFileParser();
~TestVsearchFileParser();
MothurOut* m;
vector<string> filenames;
CountTable* ct;
using VsearchFileParser::removeAbundances;
using VsearchFileParser::createListFile;
};
#endif /* defined(__Mothur__testvsearchfileparser__) */
|