]> git.donarmstrong.com Git - mothur.git/blobdiff - sharedcommand.cpp
put back no command and worked on libshuff
[mothur.git] / sharedcommand.cpp
index 6c4c8ac9afbda821c545ab3a48d60a993e290620..a797d5408d151beddc73be085111bbcf41cd84cd 100644 (file)
@@ -41,14 +41,19 @@ int SharedCommand::execute(){
                read = new ReadPhilFile(globaldata->inputFileName);     
                read->read(&*globaldata); 
                input = globaldata->ginput;
-               list = globaldata->glist;
+               SharedList = globaldata->gSharedList;
                
                shared = new Shared();
                int i = 0;
-               while(list != NULL){
-                       shared->getSharedVectors(i, list); //fills sharedGroups with new info and updates sharedVector
-                       list = input->getListVector(); //get new list vector to process
-                       printSharedData(); //prints info to the .shared file
+               while(SharedList != NULL){
+               
+                       if(globaldata->allLines == 1 || globaldata->lines.count(i+1) == 1 || globaldata->labels.count(SharedList->getLabel()) == 1){
+                       
+                               shared->getSharedVectors(i, SharedList); //fills sharedGroups with new info and updates sharedVector
+                               printSharedData(); //prints info to the .shared file
+                       }
+                       
+                       SharedList = input->getSharedListVector(); //get new list vector to process
                        i++;
                }
                return 0;