
org.snpeff.genBank.EmblFile 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.genBank;
/**
* A file containing one or more set of features (e.g. multiple chromosomes concatenated in a single file)
* @author pcingola
*
*/
public class EmblFile extends FeaturesFile {
public EmblFile(String fileName) {
super(fileName);
}
@Override
Embl readNext() {
return new Embl(lineFileIterator);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy