![JAR search and dependency download from the Maven repository](/logo.png)
htsjdk.variant.vcf.VCFSampleHeaderLine Maven / Gradle / Ivy
package htsjdk.variant.vcf;
/**
* A class representing SAMPLE fields in the VCF header
*/
public class VCFSampleHeaderLine extends VCFSimpleHeaderLine {
private static final long serialVersionUID = 1L;
public VCFSampleHeaderLine(String line, VCFHeaderVersion version) {
super(VCFConstants.SAMPLE_HEADER_KEY, VCFHeaderLineTranslator.parseLine(version, line, null));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy