public class GVCFGenomeSequenceBuilder
extends GenomeSequenceBuilder
Created by zrm22 on 3/27/17.
public static GenomeSequence instance(java.lang.String fastaFileName, java.lang.String gvcfFileName)
Builds GenomeSequence from a fasta file and a GVCF file.
fastaFileName - full path to fasta filepublic static GenomeSequence instance(java.lang.String fastaFileName, java.util.function.Function<java.lang.Character,java.lang.Character> charConversion, java.lang.String gvcfFileName)
Builds GenomeSequence from a fasta file. The char conversion provide a mechanism to convert upper and lower case or convert one case to N. This is useful if a case if used to define a certain class of bases
fastaFileName - full path to fasta filecharConversion - lambda Function to convert characterspublic static GenomeSequence instance(GVCFGenomeSequence base, BitSet maskedBitSet, BitSet filteredBitSet)