org.broadinstitute.gatk.nativebindings.smithwaterman.SWNativeAlignerResult 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.smithwaterman;
/**
* Struct used to hold results of the Smith-Waterman alignment
*/
public final class SWNativeAlignerResult {
// CIGAR string of the alignment
public final String cigar;
// offset of the alignment
public final int alignment_offset;
public SWNativeAlignerResult(final String cigar, final int alignment_offset)
{
this.cigar = cigar;
this.alignment_offset = alignment_offset;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy