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 66d4020
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
import java.io.InputStream;
import java.io.OutputStream;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.*;

/**
Expand Down Expand Up @@ -68,7 +69,8 @@ public CRAMIssue8768Analyzer(
this.tsvOutputPath = tsvOutputPath;
this.mismatchRateThreshold = mismatchRateThreshold;

referenceSource = new ReferenceSource(referencePath.toPath());
final Path rPath = referencePath.toPath();
referenceSource = new ReferenceSource(rPath);
try {
outputStream = Files.newOutputStream(this.outputPath.toPath());
} catch (final IOException e) {
Expand Down

0 comments on commit 66d4020

Please sign in to comment.