
org.snpeff.interval.Utr Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of SnpEff Show documentation
Show all versions of SnpEff Show documentation
Variant annotation and effect prediction package.
The newest version!
package org.snpeff.interval;
/**
* Interval for a UTR (5 prime UTR and 3 prime UTR
*
* @author pcingola
*
*/
public abstract class Utr extends Marker {
private static final long serialVersionUID = 1636197649250882952L;
public Utr() {
super();
}
public Utr(Exon parent, int start, int end, boolean strandMinus, String id) {
super(parent, start, end, strandMinus, id);
}
public abstract boolean isUtr3prime();
public abstract boolean isUtr5prime();
abstract int utrDistance(Variant snp, Transcript tint);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy