All Downloads are FREE. Search and download functionalities are using the official Maven repository.

htsjdk.samtools.BinWithOffset Maven / Gradle / Ivy

There is a newer version: 4.1.3
Show newest version
package htsjdk.samtools;

/**
 * An individual bin of a CSI index for BAM files.
 * Extends the BAI index bin {@link Bin} with a 64 bit value,
 * representing the virtual file offset of the first
 * overlapping record.
 */
public class BinWithOffset extends Bin {

    private final long lOffset;

    public long getlOffset() {
        return lOffset;
    }

    public BinWithOffset(int referenceSequence, int binNumber, long lOffset) {
        super(referenceSequence, binNumber);
        this.lOffset = lOffset;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy