Package htsjdk.variant.vcf
Class VCFFormatHeaderLine
- java.lang.Object
-
- htsjdk.variant.vcf.VCFHeaderLine
-
- htsjdk.variant.vcf.VCFCompoundHeaderLine
-
- htsjdk.variant.vcf.VCFFormatHeaderLine
-
- All Implemented Interfaces:
VCFIDHeaderLine
,Serializable
,Comparable
public class VCFFormatHeaderLine extends VCFCompoundHeaderLine
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class htsjdk.variant.vcf.VCFCompoundHeaderLine
VCFCompoundHeaderLine.SupportedHeaderLineType
-
-
Field Summary
-
Fields inherited from class htsjdk.variant.vcf.VCFHeaderLine
ALLOW_UNBOUND_DESCRIPTIONS, serialVersionUID, UNBOUND_DESCRIPTION
-
-
Constructor Summary
Constructors Constructor Description VCFFormatHeaderLine(String name, int count, VCFHeaderLineType type, String description)
VCFFormatHeaderLine(String name, VCFHeaderLineCount count, VCFHeaderLineType type, String description)
VCFFormatHeaderLine(String line, VCFHeaderVersion version)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
shouldBeAddedToDictionary()
By default the header lines won't be added to the dictionary, unless this method will be override (for example in FORMAT, INFO or FILTER header lines)-
Methods inherited from class htsjdk.variant.vcf.VCFCompoundHeaderLine
equals, equalsExcludingDescription, getCount, getCount, getCountType, getDescription, getID, getType, hashCode, isFixedCount, sameLineTypeAndName, setNumberToUnbounded, toStringEncoding
-
Methods inherited from class htsjdk.variant.vcf.VCFHeaderLine
compareTo, getKey, getValue, isHeaderLine, toString, toStringEncoding
-
-
-
-
Constructor Detail
-
VCFFormatHeaderLine
public VCFFormatHeaderLine(String name, int count, VCFHeaderLineType type, String description)
-
VCFFormatHeaderLine
public VCFFormatHeaderLine(String name, VCFHeaderLineCount count, VCFHeaderLineType type, String description)
-
VCFFormatHeaderLine
public VCFFormatHeaderLine(String line, VCFHeaderVersion version)
-
-
Method Detail
-
shouldBeAddedToDictionary
public boolean shouldBeAddedToDictionary()
Description copied from class:VCFHeaderLine
By default the header lines won't be added to the dictionary, unless this method will be override (for example in FORMAT, INFO or FILTER header lines)- Overrides:
shouldBeAddedToDictionary
in classVCFHeaderLine
- Returns:
- false
-
-