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

org.broadinstitute.gatk.nativebindings.smithwaterman.SWNativeAlignerResult Maven / Gradle / Ivy

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