]> git.donarmstrong.com Git - mothur.git/blobdiff - mothur.h
made make.table alias to count.seqs command. added large parameter to count.seqs...
[mothur.git] / mothur.h
index 57b409e51605df2d0dbab805e3d8b1b7060e7b3e..2c143e8667786c5740f0aa6324ea4062eab66b76 100644 (file)
--- a/mothur.h
+++ b/mothur.h
@@ -54,7 +54,7 @@
 #endif
 /***********************************************************************/
 
-#if defined (__APPLE__) || (__MACH__) || (linux) || (__linux)
+#if defined (__APPLE__) || (__MACH__) || (linux) || (__linux) || (__linux__) || (__unix__) || (__unix)
        #include <sys/wait.h>
        #include <sys/time.h>
        #include <sys/resource.h>
@@ -131,9 +131,9 @@ struct clusterNode {
 struct seqDist {
        int seq1;
        int seq2;
-       float dist;
+       double dist;
        seqDist() {}
-       seqDist(int s1, int s2, float d) : seq1(s1), seq2(s2), dist(d) {}
+       seqDist(int s1, int s2, double d) : seq1(s1), seq2(s2), dist(d) {}
        ~seqDist() {}
 };
 /************************************************************/