Permalink
Browse files

Adds threads option to chimera.vsearch

  • Loading branch information...
1 parent 1e4fe98 commit 8a68583cdce04e7da2c425f61095f79a6ead7e30 @mothur-westcott mothur-westcott committed Jul 12, 2016
Showing with 3 additions and 0 deletions.
  1. +3 −0 source/commands/chimeravsearchcommand.cpp
@@ -1328,6 +1328,9 @@ int ChimeraVsearchCommand::driver(string outputFName, string filename, string ac
cPara.push_back(tempDn);
}
+ //--threads=1
+ char* threads = new char[12]; threads[0] = '\0'; strncat(threads, "--threads=1", 11);
+ cPara.push_back(threads);
char** vsearchParameters;
vsearchParameters = new char*[cPara.size()];

0 comments on commit 8a68583

Please sign in to comment.