Class TagKeyCache.TagKeyInfo
java.lang.Object
htsjdk.samtools.cram.structure.TagKeyCache.TagKeyInfo
- Enclosing class:
TagKeyCache
Pre-computed metadata for a single tag ID.
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal shortBinary tag code as computed bySAMTag.makeBinaryTag(String).final StringTwo-character tag name, e.g.final StringThree-character tag name + type, e.g.final intThe 3-byte tag ID packed as an int (name high bytes, type low byte).final charThe single-character type code, e.g. -
Method Summary
-
Field Details
-
key
Two-character tag name, e.g. "NM", "MD", "RG". -
keyType3Bytes
Three-character tag name + type, e.g. "NMi", "MDZ". -
keyType3BytesAsInt
public final int keyType3BytesAsIntThe 3-byte tag ID packed as an int (name high bytes, type low byte). -
code
public final short codeBinary tag code as computed bySAMTag.makeBinaryTag(String). -
type
public final char typeThe single-character type code, e.g. 'i', 'Z', 'A'.
-