Package htsjdk.beta.plugin.hapref
Interface HaploidReferenceCodec
- All Superinterfaces:
HtsCodec<HaploidReferenceDecoderOptions,
,HaploidReferenceEncoderOptions> Upgradeable
- All Known Implementing Classes:
FASTACodecV1_0
public interface HaploidReferenceCodec
extends HtsCodec<HaploidReferenceDecoderOptions,HaploidReferenceEncoderOptions>
Base class for all
HtsContentType.HAPLOID_REFERENCE
codecs.-
Method Summary
Methods inherited from interface htsjdk.beta.plugin.HtsCodec
canDecodeSignature, canDecodeURI, getDecoder, getDisplayName, getEncoder, getFileFormat, getSignatureLength, getSignatureProbeLength, getVersion, ownsURI
Methods inherited from interface htsjdk.beta.plugin.Upgradeable
runVersionUpgrade
-
Method Details
-
getContentType
Description copied from interface:HtsCodec
Get theHtsContentType
for this codec.- Specified by:
getContentType
in interfaceHtsCodec<HaploidReferenceDecoderOptions,
HaploidReferenceEncoderOptions> - Returns:
- the
HtsContentType
for this codec. TheHtsContentType
determines the interfaces, including the HEADER and RECORD types, used by this codec'sHtsEncoder
andHtsDecoder
. Each implementation of a given content type exposes the same interfaces, but over a different file format or version. For example, both the BAM and HTSGET_BAM codecs have codec typeHtsContentType.ALIGNED_READS
, and are derived fromReadsCodec
, but the serialized file formats and access mechanisms for the two codecs are different).
-