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

org.snpeff.interval.IntergenicConserved Maven / Gradle / Ivy

The newest version!
package org.snpeff.interval;

import org.snpeff.snpEffect.EffectType;

/**
 * Interval for a conserved intergenic region
 *
 * @author pcingola
 *
 */
public class IntergenicConserved extends Marker {

	private static final long serialVersionUID = -1816568396090993792L;

	public IntergenicConserved() {
		super();
		type = EffectType.INTERGENIC_CONSERVED;
	}

	public IntergenicConserved(Chromosome parent, int start, int end, boolean strandMinus, String id) {
		super(parent, start, end, strandMinus, id);
		type = EffectType.INTERGENIC_CONSERVED;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy