]> git.donarmstrong.com Git - mothur.git/blobdiff - mothurout.cpp
working of get.mimarkspackage and sra command
[mothur.git] / mothurout.cpp
index 313deef5bc913fdb2efa77e1b55d203f69e50277..baa7710eddc63901f570725af70b5d847918cb11 100644 (file)
@@ -2823,7 +2823,7 @@ bool MothurOut::isSubset(vector<string> bigset, vector<string> subset) {
         
                if (subset.size() > bigset.size()) { return false;  }
                
-               //check if each guy in suset is also in bigset
+               //check if each guy in subset is also in bigset
                for (int i = 0; i < subset.size(); i++) {
                        bool match = false;
                        for (int j = 0; j < bigset.size(); j++) {
@@ -3599,6 +3599,26 @@ bool MothurOut::inUsersGroups(vector<string> groupnames, vector<string> Groups)
                exit(1);
        }       
 }
+/**************************************************************************************************/
+//removes entries that are only white space
+int MothurOut::removeBlanks(vector<string>& tempVector) {
+       try {
+               vector<string> newVector;
+               for (int i = 0; i < tempVector.size(); i++) {
+            bool isBlank = true;
+            for (int j = 0; j < tempVector[i].length(); j++) {
+                if (!isspace(tempVector[i][j])) { isBlank = false; j+= tempVector[i].length(); } //contains non space chars, break out and save
+            }
+            if (!isBlank) { newVector.push_back(tempVector[i]); }
+        }
+        tempVector = newVector;
+               return 0;
+       }
+       catch(exception& e) {
+               errorOut(e, "MothurOut", "removeBlanks");
+               exit(1);
+       }
+}
 /***********************************************************************/
 //this function determines if the user has given us labels that are smaller than the given label.
 //if so then it returns true so that the calling function can run the previous valid distance.