Пример #1
0
 /// <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));
 }
Пример #2
0
 /// <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));
 }