htsjdk.beta.plugin.variants.VariantsCodec 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.plugin.variants;
import htsjdk.beta.plugin.HtsCodec;
import htsjdk.beta.plugin.HtsContentType;
/**
* Base class for all {@link HtsContentType#VARIANT_CONTEXTS} codecs.
*/
public interface VariantsCodec extends HtsCodec {
@Override
default HtsContentType getContentType() { return HtsContentType.VARIANT_CONTEXTS; }
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy