htsjdk.beta.codecs.variants.vcf.vcfv4_3.VCFDecoderV4_3 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of htsjdk Show documentation
Show all versions of htsjdk Show documentation
A Java API for high-throughput sequencing data (HTS) formats
package htsjdk.beta.codecs.variants.vcf.vcfv4_3;
import htsjdk.beta.codecs.variants.vcf.VCFDecoder;
import htsjdk.beta.plugin.HtsVersion;
import htsjdk.beta.io.bundle.Bundle;
import htsjdk.beta.plugin.variants.VariantsDecoderOptions;
/**
* VCF V4.3 decoder.
*/
public class VCFDecoderV4_3 extends VCFDecoder {
/**
* Create a new VCF V4.3 decoder.
*
* @param inputBundle the input {@link Bundle} to decode
* @param variantsDecoderOptions the {@link VariantsDecoderOptions} for this decoder
*/
public VCFDecoderV4_3(final Bundle inputBundle, final VariantsDecoderOptions variantsDecoderOptions) {
super(inputBundle, new htsjdk.variant.vcf.VCFCodec(), variantsDecoderOptions);
}
@Override
public HtsVersion getVersion() {
return VCFCodecV4_3.VCF_V43_VERSION;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy