
org.snpeff.fileIterator.VariantFileIterator 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.Variant;
/**
* Opens a sequence change file and iterates over all sequence changes
*
* @author pcingola
*/
public abstract class VariantFileIterator extends MarkerFileIterator {
public VariantFileIterator(String fileName, Genome genome) {
super(fileName, genome, 1);
}
public VariantFileIterator(String fileName) {
super(fileName, 1);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy