htsjdk.samtools.SAMRecordHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hadoop-bam Show documentation
Show all versions of hadoop-bam Show documentation
A Java library for the manipulation of files in common bioinformatics formats using the Hadoop MapReduce framework.
package htsjdk.samtools;
/**
* This class is required in order to access the protected
* {@link SAMRecord#eagerDecode()} method in HTSJDK.
*/
public class SAMRecordHelper {
public static void eagerDecode(SAMRecord record) {
record.eagerDecode();
}
}