net.maizegenetics.dna.snp.Allele Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tassel Show documentation
Show all versions of tassel Show documentation
TASSEL is a software package to evaluate traits associations, evolutionary patterns, and linkage
disequilibrium.
package net.maizegenetics.dna.snp;
import net.maizegenetics.dna.map.Position;
import net.maizegenetics.util.GeneralAnnotation;
/**
* Defines Allele present at a genomic Position
*
* @author Ed Buckler
*/
public interface Allele {
/*
Returns Allele state
*/
byte allele();
/*
Returns Allele state as String
*/
String alleleAsString();
/*Returns of the Position associated with the allele*/
Position position();
/*Returns the annotations for allele*/
GeneralAnnotation annotations();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy