All Downloads are FREE. Search and download functionalities are using the official Maven repository.

htsjdk.variant.vcf.VCFPedigreeHeaderLine Maven / Gradle / Ivy

There is a newer version: 4.1.3
Show newest version
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