File: testvsearchfileparser.h

package info (click to toggle)
mothur 1.48.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,684 kB
  • sloc: cpp: 161,854; makefile: 122; sh: 31
file content (34 lines) | stat: -rw-r--r-- 662 bytes parent folder | download | duplicates (5)
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__) */