From: westcott Date: Mon, 8 Nov 2010 11:58:26 +0000 (+0000) Subject: cluster.split fix X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=commitdiff_plain;h=d4cd876bd09bfa1bcb137261700eae79f9e41fc0 cluster.split fix --- diff --git a/Mothur.xcodeproj/project.pbxproj b/Mothur.xcodeproj/project.pbxproj index 855dad8..1c282d9 100644 --- a/Mothur.xcodeproj/project.pbxproj +++ b/Mothur.xcodeproj/project.pbxproj @@ -1124,6 +1124,7 @@ }; buildConfigurationList = 1DEB919308733D9F0010E9CD /* Build configuration list for PBXProject "Mothur" */; compatibilityVersion = "Xcode 3.0"; + developmentRegion = English; hasScannedForEncodings = 1; knownRegions = ( English, diff --git a/mothur b/mothur index cd2cdd5..5b2897b 100755 Binary files a/mothur and b/mothur differ diff --git a/splitmatrix.cpp b/splitmatrix.cpp index ec71e5b..13b4bd4 100644 --- a/splitmatrix.cpp +++ b/splitmatrix.cpp @@ -182,7 +182,7 @@ int SplitMatrix::createDistanceFilesFromTax(map& seqGroup, int numG //process each distance file for (int i = 0; i < numGroups; i++) { - string options = "fasta=" + (fastafile + "." + toString(i) + ".temp") + ", processors=" + toString(1) + ", cutoff=" + toString(distCutoff); + string options = "fasta=" + (fastafile + "." + toString(i) + ".temp") + ", processors=" + toString(processors) + ", cutoff=" + toString(distCutoff); Command* command = new DistanceCommand(options); command->execute();