]> git.donarmstrong.com Git - mothur.git/blobdiff - sharednseqs.h
moved mothur's source into a folder to make grabbing just the source easier on github
[mothur.git] / sharednseqs.h
diff --git a/sharednseqs.h b/sharednseqs.h
deleted file mode 100644 (file)
index 5d403fa..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-#ifndef SHAREDNSEQS_H
-#define SHAREDNSEQS_H
-
-/*
- *  sharednseqs.h
- *  Mothur
- *
- *  Created by Sarah Westcott on 3/16/09.
- *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
- *
- */
-
-#include "calculator.h"
-
-/***********************************************************************/
-class SharedNSeqs : public Calculator {
-
-public:
-       SharedNSeqs() : Calculator("sharednseqs", 1, false) {};
-       EstOutput getValues(SAbundVector* rank){ return data; };
-       EstOutput getValues(vector<SharedRAbundVector*> shared) {
-               data.resize(1,0);
-               data[0] = (double)shared[0]->getNumSeqs() + (double)shared[1]->getNumSeqs();
-               return data;
-       }
-       string getCitation() { return "http://www.mothur.org/wiki/Sharednseqs"; }
-};
-
-/***********************************************************************/
-
-#endif