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

org.snpeff.binseq.IdGenerator Maven / Gradle / Ivy

The newest version!
package org.snpeff.binseq;

/**
 * Generates Id
 * 
 * @author pcingola
 */
public class IdGenerator {

	private static long currentId = 0;

	public static synchronized long id() {
		return currentId++;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy