]> git.donarmstrong.com Git - mothur.git/blobdiff - readcluster.h
moved mothur's source into a folder to make grabbing just the source easier on github
[mothur.git] / readcluster.h
diff --git a/readcluster.h b/readcluster.h
deleted file mode 100644 (file)
index a838dac..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-#ifndef READCLUSTER_H
-#define READCLUSTER_H
-/*
- *  readcluster.h
- *  Mothur
- *
- *  Created by westcott on 10/28/09.
- *  Copyright 2009 Schloss Lab. All rights reserved.
- *
- */
-
-
-#include "mothur.h"
-#include "nameassignment.hpp"
-#include "listvector.hpp"
-
-
-/******************************************************/
-
-class ReadCluster {
-       
-public:
-       ReadCluster(string, float, string, bool);
-       ~ReadCluster();
-       int read(NameAssignment*&);
-       string getOutputFile() { return OutPutFile; }
-       void setFormat(string f) { format = f;  }
-       ListVector* getListVector()             {       return list;    }
-       
-private:
-       string distFile, outputDir;
-       string OutPutFile, format;
-       ListVector* list;
-       float cutoff;
-       MothurOut* m;
-       bool sortWanted;
-       
-       int convertPhylip2Column(NameAssignment*&);
-};
-
-/******************************************************/
-
-#endif
-