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

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

There is a newer version: 4.1.3
Show newest version
package htsjdk.variant.vcf;

/**
 * A class representing META fields in the VCF header
 */
public class VCFMetaHeaderLine extends VCFSimpleHeaderLine {
    private static final long serialVersionUID = 1L;

    public VCFMetaHeaderLine(final String line, final VCFHeaderVersion version) {
        super(VCFConstants.META_HEADER_KEY, VCFHeaderLineTranslator.parseLine(version, line, null));
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy