]> git.donarmstrong.com Git - mothur.git/blobdiff - myseqdist.cpp
pre.cluster unable to spawn necessary processes adjustment.
[mothur.git] / myseqdist.cpp
index 78255d8f73d894c7cb4032d925b684843094bee7..a23e6096eff1cd9ccd747c860ba635a801781500 100644 (file)
@@ -152,14 +152,14 @@ int correctDist::createProcess(string distanceFileName){
                
                while(process != processors){
                        
-                       int pid = fork();
+                       pid_t pid = fork();
                        
                        if(pid > 0){
                                processIDs.push_back(pid);
                                process++;
                        }
                        else if(pid == 0){
-                               driver(start[process], end[process], distanceFileName + toString(getpid()) + ".temp");
+                               driver(start[process], end[process], distanceFileName + m->mothurGetpid(process) + ".temp");
                                exit(0);
                        }
                        else{
@@ -219,11 +219,11 @@ int correctDist::driver(int start, int end, string distFileName){
                        }
                        distFile << endl;
                        
-                       if(i % 100 == 0){ m->mothurOut(toString(i) + "\t" + toString(time(NULL) - startTime)); m->mothurOutEndLine(); }
+                       if(i % 100 == 0){ m->mothurOutJustToScreen(toString(i) + "\t" + toString(time(NULL) - startTime)+"\n"); }
                }
                distFile.close();
                
-               if((end-1) % 100 != 0){ m->mothurOut(toString(end-1) + "\t" + toString(time(NULL) - startTime)); m->mothurOutEndLine(); }
+               if((end-1) % 100 != 0){ m->mothurOutJustToScreen(toString(end-1) + "\t" + toString(time(NULL) - startTime)+"\n"); }
                m->mothurOut("Done.\n");
                
                return 0;