]> git.donarmstrong.com Git - mothur.git/blobdiff - anosimcommand.cpp
working on windows paralellization, added trimOligos class to be used by trim.flows...
[mothur.git] / anosimcommand.cpp
index c5cb4d60c751d6614b82cd961c29d9e645fcbaa8..50b6f283d8d58de276b0a08f573894628a98295f 100644 (file)
@@ -176,10 +176,16 @@ int AnosimCommand::execute(){
                //link designMap to rows/columns in distance matrix
                map<string, vector<int> > origGroupSampleMap;
                for(int i=0;i<sampleNames.size();i++){
-                       origGroupSampleMap[designMap->getGroup(sampleNames[i])].push_back(i);
+                       string group = designMap->getGroup(sampleNames[i]);
+                       
+                       if (group == "not found") {
+                               m->mothurOut("[ERROR]: " + sampleNames[i] + " is not in your design file, please correct."); m->mothurOutEndLine(); m->control_pressed = true;
+                       }else { origGroupSampleMap[group].push_back(i); }
                }
                int numGroups = origGroupSampleMap.size();
                
+               if (m->control_pressed) { delete designMap; return 0; }
+               
                //create a new filename
                ofstream ANOSIMFile;
                string ANOSIMFileName = outputDir + m->getRootName(m->getSimpleName(phylipFileName))  + "anosim";