
org.snpeff.fileIterator.RegulationFileIterator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of SnpEff Show documentation
Show all versions of SnpEff Show documentation
Variant annotation and effect prediction package.
The newest version!
package org.snpeff.fileIterator;
import org.snpeff.interval.Genome;
import org.snpeff.interval.Regulation;
/**
* Opens a regulation file and create Regulation elements.
*
* @author pcingola
*/
public abstract class RegulationFileIterator extends MarkerFileIterator {
public RegulationFileIterator(String fileName, Genome genome, int inOffset) {
super(fileName, genome, inOffset);
}
public RegulationFileIterator(String fileName, int inOffset) {
super(fileName, inOffset);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy