Permalink
Browse files

Fixes bug appending outputdir twice

  • Loading branch information...
1 parent fc821b8 commit 9f5f37fd6f92890e24e3f7ec33fef67a8cfa0705 @mothur-westcott mothur-westcott committed Jul 29, 2016
Showing with 1 addition and 1 deletion.
  1. +1 −1 source/commands/makegroupcommand.cpp
@@ -186,7 +186,7 @@ MakeGroupCommand::MakeGroupCommand(string option) {
//prevent giantic file name
map<string, string> variables;
variables["[filename]"] = filename;
- if (fastaFileNames.size() > 3) { variables["[filename]"] = outputDir + "merge"; }
+ if (fastaFileNames.size() > 3) { variables["[filename]"] = "merge"; }
filename = getOutputFileName("group",variables);
//make sure there is at least one valid file left

0 comments on commit 9f5f37f

Please sign in to comment.