private static bool IsSnv(string refAllele, string altAlleles) { if (!SupplementaryPositionCreator.IsSnv(refAllele)) { return(false); } return(altAlleles.Split(',').All(SupplementaryPositionCreator.IsSnv)); }