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

org.snpeff.stats.SamplingStats Maven / Gradle / Ivy

The newest version!
package org.snpeff.stats;

/**
 * Perform stats by analyzing some samples
 */
public interface SamplingStats {

	/**
	 * Does this statistic have any data?
	 * @return
	 */
	public boolean hasData();

	/**
	 * Analyze one sample
	 * @param sample
	 */
	public void sample(T sample);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy