]> git.donarmstrong.com Git - mothur.git/blobdiff - manhattan.cpp
moved mothur's source into a folder to make grabbing just the source easier on github
[mothur.git] / manhattan.cpp
diff --git a/manhattan.cpp b/manhattan.cpp
deleted file mode 100644 (file)
index 134dd91..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- *  manhattan.cpp
- *  Mothur
- *
- *  Created by westcott on 12/15/10.
- *  Copyright 2010 Schloss Lab. All rights reserved.
- *
- */
-
-#include "manhattan.h"
-
-/***********************************************************************/
-EstOutput Manhattan::getValues(vector<SharedRAbundVector*> shared) {
-       try {
-               data.resize(1,0);
-               
-               double sum = 0.0;
-               
-               for (int i = 0; i < shared[0]->getNumBins(); i++) { 
-                       
-                       int Aij = shared[0]->getAbundance(i);
-                       int Bij = shared[1]->getAbundance(i);
-                       
-                       sum += abs((Aij - Bij));
-               }
-               
-               data[0] = sum;
-               
-               if (isnan(data[0]) || isinf(data[0])) { data[0] = 0; }
-               
-               return data;
-       }
-       catch(exception& e) {
-               m->errorOut(e, "Manhattan", "getValues");
-               exit(1);
-       }
-}
-/***********************************************************************/