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

org.pharmgkb.parser.vcf.VcfLineParser Maven / Gradle / Ivy

The newest version!
package org.pharmgkb.parser.vcf;

import org.pharmgkb.parser.vcf.model.VcfMetadata;
import org.pharmgkb.parser.vcf.model.VcfPosition;
import org.pharmgkb.parser.vcf.model.VcfSample;

import java.util.List;


/**
 * This interface controls what is actually done for each data line in a VCF file.
 *
 * @author Mark Woon
 */
public interface VcfLineParser {

  void parseLine(VcfMetadata metadata, VcfPosition position, List sampleData);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy