File: mergegroupscommand.h

package info (click to toggle)
mothur 1.48.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 13,684 kB
  • sloc: cpp: 161,854; makefile: 122; sh: 31
file content (57 lines) | stat: -rwxr-xr-x 1,447 bytes parent folder | download | duplicates (4)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#ifndef MERGEGROUPSCOMMAND_H
#define MERGEGROUPSCOMMAND_H

/*
 *  mergegroupscommand.h
 *  mothur
 *
 *  Created by westcott on 1/24/11.
 *  Copyright 2011 Schloss Lab. All rights reserved.
 *
 */

#include "command.hpp"
#include "inputdata.h"

#include "designmap.h"

class MergeGroupsCommand : public Command {
    
#ifdef UNIT_TEST
    friend class TestMergeGroupsCommand;
#endif
	
public:
	MergeGroupsCommand(string);
	~MergeGroupsCommand() = default;
	
	vector<string> setParameters();
	string getCommandName()			{ return "merge.groups";	}
	string getCommandCategory()		{ return "General";			}
	
	string getHelpString();	
    string getOutputPattern(string);	
	string getCitation() { return "http://www.mothur.org/wiki/Merge.groups"; }
	string getDescription()		{ return "reads shared file and a design file and merges the groups in the shared file that are in the same grouping in the design file"; }

	
	int execute(); 
	void help() { m->mothurOut(getHelpString()); }	
	
private:
	DesignMap* designMap;
	
	bool abort, allLines, pickedGroups;
	set<string> labels; //holds labels to be used
	string groups, label,  inputDir, designfile, sharedfile, groupfile, countfile, method, fastafile;
	vector<string> Groups, outputNames;
		
	int process(SharedRAbundVectors*&, ofstream&, bool&);
	int processSharedFile(DesignMap*&);
	int processGroupFile(DesignMap*&);
    int processCountFile(DesignMap*&);
    int mergeAbund(vector<int>);
};

#endif