Permalink
Please sign in to comment.
Showing
with
57 additions
and 162 deletions.
- +28 −37 Mothur.xcodeproj/project.pbxproj
- +7 −1 source/commands/command.hpp
- +0 −55 source/commands/getotuscommand.h
- +12 −11 source/commands/parselistscommand.cpp
- +0 −52 source/commands/removeotuscommand.h
- +8 −3 source/commands/sracommand.cpp
- +1 −2 source/datastructures/counttable.h
- +1 −1 source/mothurout.cpp
| @@ -1,55 +0,0 @@ | ||
| -#ifndef GETOTUSCOMMAND_H | ||
| -#define GETOTUSCOMMAND_H | ||
| - | ||
| -/* | ||
| - * getotuscommand.h | ||
| - * Mothur | ||
| - * | ||
| - * Created by westcott on 11/10/10. | ||
| - * Copyright 2010 Schloss Lab. All rights reserved. | ||
| - * | ||
| - */ | ||
| - | ||
| - | ||
| - | ||
| -#include "command.hpp" | ||
| -#include "groupmap.h" | ||
| -#include "listvector.hpp" | ||
| - | ||
| -class GetOtusCommand : public Command { | ||
| - | ||
| -public: | ||
| - | ||
| - GetOtusCommand(string); | ||
| - GetOtusCommand(); | ||
| - ~GetOtusCommand(){} | ||
| - | ||
| - vector<string> setParameters(); | ||
| - string getCommandName() { return "get.otus"; } | ||
| - string getCommandCategory() { return "OTU-Based Approaches"; } | ||
| - | ||
| - string getHelpString(); | ||
| - string getOutputPattern(string); | ||
| - string getCitation() { return "http://www.mothur.org/wiki/Get.otus"; } | ||
| - string getDescription() { return "outputs a new list file containing the otus containing sequences from the groups specified"; } | ||
| - | ||
| - | ||
| - int execute(); | ||
| - void help() { m->mothurOut(getHelpString()); } | ||
| - | ||
| - | ||
| -private: | ||
| - string accnosfile, groupfile, listfile, outputDir, groups, label; | ||
| - bool abort; | ||
| - vector<string> outputNames, Groups; | ||
| - GroupMap* groupMap; | ||
| - | ||
| - int readListGroup(); | ||
| - int processList(ListVector*&, GroupMap*&, ofstream&, ofstream&, bool&); | ||
| - | ||
| -}; | ||
| - | ||
| -#endif | ||
| - | ||
| - | ||
| - |
| @@ -1,52 +0,0 @@ | ||
| -#ifndef REMOVEOTUSCOMMAND_H | ||
| -#define REMOVEOTUSCOMMAND_H | ||
| - | ||
| -/* | ||
| - * removeotuscommand.h | ||
| - * Mothur | ||
| - * | ||
| - * Created by westcott on 11/12/10. | ||
| - * Copyright 2010 Schloss Lab. All rights reserved. | ||
| - * | ||
| - */ | ||
| - | ||
| -#include "command.hpp" | ||
| -#include "groupmap.h" | ||
| -#include "listvector.hpp" | ||
| - | ||
| -class RemoveOtusCommand : public Command { | ||
| - | ||
| -public: | ||
| - | ||
| - RemoveOtusCommand(string); | ||
| - RemoveOtusCommand(); | ||
| - ~RemoveOtusCommand(){} | ||
| - | ||
| - vector<string> setParameters(); | ||
| - string getCommandName() { return "remove.otus"; } | ||
| - string getCommandCategory() { return "OTU-Based Approaches"; } | ||
| - | ||
| - string getHelpString(); | ||
| - string getOutputPattern(string); | ||
| - string getCitation() { return "http://www.mothur.org/wiki/Remove.otus"; } | ||
| - string getDescription() { return "outputs a new list file containing the otus NOT containing sequences from the groups specified"; } | ||
| - | ||
| - int execute(); | ||
| - void help() { m->mothurOut(getHelpString()); } | ||
| - | ||
| -private: | ||
| - string accnosfile, groupfile, listfile, outputDir, groups, label; | ||
| - bool abort; | ||
| - vector<string> outputNames, Groups; | ||
| - GroupMap* groupMap; | ||
| - | ||
| - int readListGroup(); | ||
| - int processList(ListVector*&, GroupMap*&, ofstream&, ofstream&, bool&); | ||
| - | ||
| -}; | ||
| - | ||
| -#endif | ||
| - | ||
| - | ||
| - | ||
| - |
0 comments on commit
9959ced