示例#1
0
        private static bool IsSnv(string refAllele, string altAlleles)
        {
            if (!SupplementaryPositionCreator.IsSnv(refAllele))
            {
                return(false);
            }

            return(altAlleles.Split(',').All(SupplementaryPositionCreator.IsSnv));
        }