Skip to content

Commit 8e37da3

Browse files
committed
Correct issue with arg file names and MultiSourceAnnotator
1 parent 8caf38e commit 8e37da3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

mGAP/src/org/labkey/mgap/pipeline/AnnotationStep.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,7 @@ private void addToolFieldNames(String toolName, String argName, List<String> opt
631631
getPipelineCtx().getLogger().debug("First field for tool: " + toolName + ", arg: " + argName + ", was: " + fields.get(0));
632632
}
633633

634-
File fieldFile = new File(outDir, toolName + "Fields.args");
634+
File fieldFile = new File(outDir, toolName + argName + ".Fields.args");
635635
try (PrintWriter writer = PrintWriters.getPrintWriter(fieldFile))
636636
{
637637
fields.forEach(writer::println);

0 commit comments

Comments
 (0)