Skip to content

Commit a895649

Browse files
committed
fix for changes
1 parent 86446ce commit a895649

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

adam-core/src/main/scala/org/bdgenomics/adam/util/FileMerger.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ private[adam] object FileMerger extends Logging {
224224
if (writeEmptyGzipBlock) {
225225
os.write(BlockCompressedStreamConstants.EMPTY_GZIP_BLOCK)
226226
} else if (writeCramEOF) {
227-
CramIO.issueEOF(CramVersions.DEFAULT_CRAM_VERSION, os)
227+
CramIO.writeCramEOF(CramVersions.DEFAULT_CRAM_VERSION, os)
228228
}
229229

230230
// flush and close the output stream

adam-core/src/main/scala/org/bdgenomics/adam/util/ParallelFileMerger.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ private[adam] object ParallelFileMerger extends Logging {
9797
if (writeEmptyGzipBlock) {
9898
os.write(BlockCompressedStreamConstants.EMPTY_GZIP_BLOCK)
9999
} else if (writeCramEOF) {
100-
CramIO.issueEOF(CramVersions.DEFAULT_CRAM_VERSION, os)
100+
CramIO.writeCramEOF(CramVersions.DEFAULT_CRAM_VERSION, os)
101101
}
102102

103103
os.flush()

0 commit comments

Comments
 (0)