/// <summary> /// Tells this builder that the resulting VariantContext should use a GenotypeContext containing genotypes </summary> /// <param name="genotypes"> </param> public void SetGenotypes(params Genotype[] genotypes) { this.SetGenotypes(GenotypesContext.copy(genotypes)); }
/// <summary> /// Tells this builder that the resulting VariantContext should use a GenotypeContext containing genotypes /// /// Note that genotypes can be null -> meaning there are no genotypes /// </summary> /// <param name="genotypes"> </param> public void SetGenotypes(ICollection <Genotype> genotypes) { this.SetGenotypes(GenotypesContext.copy(genotypes)); }