
org.snpeff.interval.SpliceSiteBranch 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;
import org.snpeff.snpEffect.EffectType;
/**
* A (putative) branch site.
*
* @author pablocingolani
*/
public class SpliceSiteBranch extends SpliceSite {
private static final long serialVersionUID = 7903892379174750342L;
public SpliceSiteBranch() {
super();
type = EffectType.SPLICE_SITE_BRANCH;
}
public SpliceSiteBranch(Intron parent, int start, int end, boolean strandMinus, String id) {
super(parent, start, end, strandMinus, id);
type = EffectType.SPLICE_SITE_BRANCH;
}
/**
* These are NOT core splice sites
*/
@Override
public boolean intersectsCoreSpliceSite(Marker marker) {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy