Permalink
Browse files

Remove extra threads line

  • Loading branch information...
1 parent 8d9afcb commit 41d92f27811f7820b97f094029ac3ee77b111660 @pschloss pschloss committed Aug 5, 2016
Showing with 0 additions and 4 deletions.
  1. +0 −4 source/commands/clustersplitcommand.cpp
@@ -1529,10 +1529,6 @@ int ClusterSplitCommand::vsearchDriver(string inputFile, string ucClusteredFile,
char* maxaccepts = new char[16]; maxaccepts[0] = '\0'; strncat(maxaccepts, "--maxaccepts=16", 15);
vsearchParameters.push_back(maxaccepts);
- //--threads=1
- char* threads = new char[12]; threads[0] = '\0'; strncat(threads, "--threads=1", 11);
- vsearchParameters.push_back(threads);
-
//--usersort
char* usersort = new char[11]; usersort[0] = '\0'; strncat(usersort, "--usersort", 10);
vsearchParameters.push_back(usersort);

0 comments on commit 41d92f2

Please sign in to comment.