htsjdk.variant.vcf.VCFPedigreeHeaderLine 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.variant.vcf;
/**
* A class representing PEDIGREE fields in the VCF header
*/
public class VCFPedigreeHeaderLine extends VCFSimpleHeaderLine {
private static final long serialVersionUID = 1L;
public VCFPedigreeHeaderLine(String line, VCFHeaderVersion version) {
super(VCFConstants.PEDIGREE_HEADER_KEY, VCFHeaderLineTranslator.parseLine(version, line, null));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy