]> git.donarmstrong.com Git - mothur.git/blobdiff - readblast.h
added checks for ^C to quit command instead of program
[mothur.git] / readblast.h
index 536d1af05db87dce20deaf344bd6410b952a61cb..fd32380c20c1a7145a8c65d07700b54d2d5bc63b 100644 (file)
@@ -25,7 +25,7 @@ public:
        ReadBlast(string, float, float, int, bool, bool); //blastfile, cutoff, penalty, length of overlap, min or max bsr, hclusterWanted
        ~ReadBlast() {}
        
-       void read(NameAssignment*);
+       int read(NameAssignment*);
        SparseMatrix* getDistMatrix()           {       return matrix;          }
        vector<seqDist> getOverlapMatrix()      {       return overlap;         }
        string getOverlapFile()                         {       return overlapFile;     }
@@ -42,7 +42,7 @@ private:
        vector<seqDist> overlap;
        MothurOut* m;
        
-       void readNames(NameAssignment*);
+       int readNames(NameAssignment*);
 };
 
 /*******************************************************************************************/