Package htsjdk.variant.vcf
Class VCFInfoHeaderLine
- java.lang.Object
-
- htsjdk.variant.vcf.VCFHeaderLine
-
- htsjdk.variant.vcf.VCFCompoundHeaderLine
-
- htsjdk.variant.vcf.VCFInfoHeaderLine
-
- All Implemented Interfaces:
VCFIDHeaderLine
,Serializable
,Comparable
public class VCFInfoHeaderLine 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 VCFInfoHeaderLine(String name, int count, VCFHeaderLineType type, String description)
VCFInfoHeaderLine(String name, int count, VCFHeaderLineType type, String description, String source, String version)
VCFInfoHeaderLine(String name, VCFHeaderLineCount count, VCFHeaderLineType type, String description)
VCFInfoHeaderLine(String name, VCFHeaderLineCount count, VCFHeaderLineType type, String description, String source, String version)
VCFInfoHeaderLine(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, getSource, getType, getVersion, hashCode, isFixedCount, sameLineTypeAndName, setNumberToUnbounded, setSource, setVersion, toStringEncoding
-
Methods inherited from class htsjdk.variant.vcf.VCFHeaderLine
compareTo, getKey, getValue, isHeaderLine, toString, toStringEncoding
-
-
-
-
Constructor Detail
-
VCFInfoHeaderLine
public VCFInfoHeaderLine(String name, int count, VCFHeaderLineType type, String description)
-
VCFInfoHeaderLine
public VCFInfoHeaderLine(String name, VCFHeaderLineCount count, VCFHeaderLineType type, String description)
-
VCFInfoHeaderLine
public VCFInfoHeaderLine(String name, int count, VCFHeaderLineType type, String description, String source, String version)
-
VCFInfoHeaderLine
public VCFInfoHeaderLine(String name, VCFHeaderLineCount count, VCFHeaderLineType type, String description, String source, String version)
-
VCFInfoHeaderLine
public VCFInfoHeaderLine(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
-
-