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

org.snpeff.snpEffect.factory.SnpEffPredictorFactoryEmbl Maven / Gradle / Ivy

The newest version!
package org.snpeff.snpEffect.factory;

import org.snpeff.genBank.EmblFile;
import org.snpeff.snpEffect.Config;

/**
 * This class creates a SnpEffectPredictor from an Embl file.
 *
 * @author pcingola
 */
public class SnpEffPredictorFactoryEmbl extends SnpEffPredictorFactoryFeatures {

	public static final String EXTENSION_EMBL = ".embl";

	public SnpEffPredictorFactoryEmbl(Config config) {
		super(config);
		fileName = config.getBaseFileNameGenes() + EXTENSION_EMBL;
		featuresFile = new EmblFile(fileName);
	}

	public SnpEffPredictorFactoryEmbl(Config config, String emblFileName) {
		super(config);
		fileName = emblFileName;
		featuresFile = new EmblFile(fileName);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy