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

de.charite.compbio.jannovar.reference.PositionType Maven / Gradle / Ivy

package de.charite.compbio.jannovar.reference;

/**
 * Enum for differentiating between one- and zero-based positions.
 *
 * @author Manuel Holtgrewe
 */
public enum PositionType {
	/**
	 * positions start at zero and intervals are half-opened [begin, end).
	 */
	ZERO_BASED,
	/**
	 * positions start at zero and intervals are closed [begin, end].
	 */
	ONE_BASED
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy