org.broadinstitute.gatk.nativebindings.pairhmm.ReadDataHolder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gatk-native-bindings Show documentation
Show all versions of gatk-native-bindings Show documentation
Bindings for native libraries to implement to be compatible with GATK4
The newest version!
package org.broadinstitute.gatk.nativebindings.pairhmm;
/**
* Struct used to copy references to byteArrays from reads to the PairHMM compute kernel.
*/
public final class ReadDataHolder {
public byte[] readBases = null;
public byte[] readQuals = null;
public byte[] insertionGOP = null;
public byte[] deletionGOP = null;
public byte[] overallGCP = null;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy