
org.snpeff.genBank.FeatureCoordinates 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.genBank;
/**
* A feature in a GenBank or EMBL file
*
* @author pablocingolani
*/
public class FeatureCoordinates {
public int start, end;
public boolean complement;
public FeatureCoordinates(int start, int end, boolean complement) {
this.start = start;
this.end = end;
this.complement = complement;
}
@Override
public String toString() {
return (complement ? "complement" : "") + "[ " + start + ", " + end + " ]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy