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

picard.sam.util.RepresentativeReadIndexer Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
package picard.sam.util;

/**
 * Little struct-like class to hold a record index, the index of the corresponding representative read, and duplicate set size information.
 */

public class RepresentativeReadIndexer {
    public int readIndexInFile = -1;
    public int setSize = -1;
    public int representativeReadIndexInFile = -1;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy