Skip to content

Commit

Permalink
Minor updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
cmnbroad committed Feb 11, 2025
1 parent 4877f9e commit d89abba
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

public class FQZCompExternalCompressor extends ExternalCompressor {

// TODO: this codec is not yet full implemented; it is decode only
// this codec is decode only; not implemented for writing
private final FQZCompDecode fqzCompDecoder;

public FQZCompExternalCompressor(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ public NameTokeniserExternalCompressor(

@Override
public byte[] compress(byte[] data) {
//TODO: this method needs a useArith flag; for now use false

// Arith coding is typically 1-5% smaller, but around 50-100% slower
final ByteBuffer buffer = nameTokEncoder.compress(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
import htsjdk.samtools.cram.io.BitInputStream;
import htsjdk.samtools.cram.io.DefaultBitInputStream;
import htsjdk.samtools.cram.structure.block.Block;
import htsjdk.samtools.cram.structure.block.BlockCompressionMethod;
import htsjdk.utils.ValidationUtils;

import java.io.ByteArrayInputStream;
Expand Down

0 comments on commit d89abba

Please sign in to comment.