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

org.broadinstitute.hellbender.tools.funcotator.FlankSettings Maven / Gradle / Ivy

There is a newer version: 4.6.0.0
Show newest version
package org.broadinstitute.hellbender.tools.funcotator;

/**
 * Simple struct container class for the 5'/3' flank settings. Helps prevent the two values from
 * getting swapped accidentally when passing them around.
 */
public final class FlankSettings {

    public final int fivePrimeFlankSize;
    public final int threePrimeFlankSize;

    public FlankSettings(final int fivePrimeFlankSize, final int threePrimeFlankSize) {
        this.fivePrimeFlankSize = fivePrimeFlankSize;
        this.threePrimeFlankSize = threePrimeFlankSize;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy