]> git.donarmstrong.com Git - mothur.git/blobdiff - clustersplitcommand.cpp
added fontsize to heatmap.sim, paralellized chimera.slayer byGroup for all os's,...
[mothur.git] / clustersplitcommand.cpp
index e9b3077d18eb969114aebe881520760fb71e1d77..7505ae66e453fff787d807117ed2e026f658e6a0 100644 (file)
@@ -564,14 +564,14 @@ int ClusterSplitCommand::execute(){
                                        listFileNames = cluster(distName, labels); //clusters individual files and returns names of list files
                                }else{
                                        
-                                       cout << processors << '\t' << distName.size() << endl;
+                                       //cout << processors << '\t' << distName.size() << endl;
                                        vector < vector < map<string, string> > > dividedNames; //distNames[1] = vector of filenames for process 1...
                                        dividedNames.resize(processors);
                                        
                                        //for each file group figure out which process will complete it
                                        //want to divide the load intelligently so the big files are spread between processes
                                        for (int i = 0; i < distName.size(); i++) { 
-                                               cout << i << endl;
+                                               //cout << i << endl;
                                                int processToAssign = (i+1) % processors; 
                                                if (processToAssign == 0) { processToAssign = processors; }
                                                
@@ -580,7 +580,7 @@ int ClusterSplitCommand::execute(){
                                        
                                        //not lets reverse the order of ever other process, so we balance big files running with little ones
                                        for (int i = 0; i < processors; i++) {
-                                               cout << i << endl;
+                                               //cout << i << endl;
                                                int remainder = ((i+1) % processors);
                                                if (remainder) {  reverse(dividedNames[i].begin(), dividedNames[i].end());  }
                                        }