Delete unneeded directory
[jabaws.git] / website / archive / binaries / mac / src / clustalw / src / tree / UPGMA / upgmadata.h
diff --git a/website/archive/binaries/mac/src/clustalw/src/tree/UPGMA/upgmadata.h b/website/archive/binaries/mac/src/clustalw/src/tree/UPGMA/upgmadata.h
deleted file mode 100644 (file)
index 15a0028..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-/**
- * Author: Mark Larkin
- * 
- * Copyright (c) 2007 Des Higgins, Julie Thompson and Toby Gibson.  
- */
-#ifndef UPGMADATA_H
-#define UPGMADATA_H
-
-struct distMatRow
-{
-    distMatRow(double* p, int n)
-    {
-        ptrToDistMatRow = p;
-        numDists = n;
-    }
-    double* ptrToDistMatRow;
-    int numDists; 
-};
-
-const int BLANKDIST = -1;
-const int INTERNAL = -1;
-
-#endif