Skip to content

Commit

Permalink
Fix reference path.
Browse files Browse the repository at this point in the history
  • Loading branch information
cmnbroad committed May 13, 2024
1 parent d3970e5 commit 6d67d4e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public void testCramAnalysis(
ArgumentsBuilder argBuilder = new ArgumentsBuilder();
argBuilder.addInput(inputPath);
argBuilder.addOutput(outTextFile);
argBuilder.addReference(Paths.get(referencePath));
argBuilder.addReference(referencePath);
if (outTSVFile != null) {
argBuilder.add(CRAMIssue8768Detector.OUTPUT_TSV__ARG_NAME, outTSVFile.getAbsolutePath());
}
Expand Down

0 comments on commit 6d67d4e

Please sign in to comment.