All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.maizegenetics.dna.snp.byte2d.Byte2D Maven / Gradle / Ivy

/*
 *  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 - 2024 Weber Informatics LLC | Privacy Policy