net.maizegenetics.dna.snp.byte2d.Byte2D 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.
/*
* Byte2D
*/
package net.maizegenetics.dna.snp.byte2d;
import net.maizegenetics.dna.snp.score.SiteScore;
/**
* @author Terry Casstevens
*/
public interface Byte2D {
public byte valueForAllele(int taxon, int site);
public byte[] valuesForAllSites(int taxon);
public byte[] valuesForAllTaxa(int site);
public int numTaxa();
public int numSites();
public SiteScore.SITE_SCORE_TYPE siteScoreType();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy