X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=mothur.cpp;h=8c55240965b5481bae5a551488c6e3ac957ee494;hb=c25c956e4a3c7ca3271d48ee6215c72b2ec80c44;hp=3a91aa6e595393111416cf04b367af0a8ca38e6f;hpb=bfbc55964f1977da72c2cea984288a427d370a59;p=mothur.git diff --git a/mothur.cpp b/mothur.cpp index 3a91aa6..8c55240 100644 --- a/mothur.cpp +++ b/mothur.cpp @@ -17,22 +17,22 @@ GlobalData* GlobalData::_uniqueInstance = 0; int main(int argc, char *argv[]){ try { - // srand(54321); + //srand(54321); srand( (unsigned)time( NULL ) ); - Engine* dotur; + Engine* mothur; bool bail = 0; if(argc>1){ - dotur = new BatchEngine(argv[1]); + mothur = new BatchEngine(argv[1]); } else{ - dotur = new InteractEngine(); + mothur = new InteractEngine(); } - while(bail == 0) { bail = dotur->getInput(); } + while(bail == 0) { bail = mothur->getInput(); } - delete dotur; + delete mothur; return 0; }