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

htsjdk.samtools.SAMRecordHelper Maven / Gradle / Ivy

Go to download

A Java library for the manipulation of files in common bioinformatics formats using the Hadoop MapReduce framework.

There is a newer version: 7.10.0
Show newest version
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();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy