Beispiel #1
0
        public void GetWeightedProbOfAGivenB()
        {
            var variantA             = new VariantSite(1);
            var variantB             = new VariantSite(2);
            var variantB2            = new VariantSite(3);
            var variantBOutsideGroup = new VariantSite(4);

            var phasingResult = new VariantPhasingResult(variantA, new List <VariantSite> {
                variantB, variantB2
            }, 100);

            // Should return 0 if nothing has been added
            Assert.Equal(0, phasingResult.GetWeightedProbOfAGivenB(variantB));
            Assert.Equal(0, phasingResult.GetWeightedProbOfAGivenB(variantB2));

            // Should return 0 if there is no support for AandB
            phasingResult.AddSupportForB(variantB, 20);
            Assert.Equal(0, phasingResult.GetWeightedProbOfAGivenB(variantB));

            // Should return 0 if there is no support for B alone
            phasingResult.AddSupportForAandB(variantB2, 20);
            Assert.Equal(0, phasingResult.GetWeightedProbOfAGivenB(variantB2));

            // Should calculate probability of B as Support(B)/TotalClusters and probability of AandB as Support(AandB)/TotalClusters
            // And then divide Prob(AandB)/Prob(B)
            phasingResult.AddSupportForAandB(variantB, 10);
            Assert.True(ApproximatelyEqual(0.5, phasingResult.GetWeightedProbOfAGivenB(variantB)));

            phasingResult.AddSupportForB(variantB2, 50);
            Assert.True(ApproximatelyEqual(0.4, phasingResult.GetWeightedProbOfAGivenB(variantB2)));

            // Should throw exception for variant not tracked
            Assert.Throws <Exception>(() => phasingResult.GetWeightedProbOfAGivenB(variantBOutsideGroup));
        }
Beispiel #2
0
        private static VariantPhasingResult GetPhasingProbabilitiesForVariant(List <VariantSite> variantGroup, SetOfClusters clusters, VariantSite variantSiteA)
        {
            var otherVariants = variantGroup.Where(vs => vs != variantSiteA).ToList();

            var phasingResult = new VariantPhasingResult(variantSiteA, otherVariants, clusters.NumClusters);

            var relativeWeights = clusters.GetRelativeWeights();

            //how many clusters have B in them
            //how many clusters have A and B in them?

            foreach (var cluster in clusters.Clusters)
            {
                var supportDict = cluster.GetVeadCountsInCluster(variantGroup);

                var weight = relativeWeights[cluster.Name];

                foreach (var variantSiteB in otherVariants)
                {
                    if (supportDict[variantSiteB] <= 0)
                    {
                        continue;
                    }
                    phasingResult.AddSupportForB(variantSiteB, weight);


                    if (supportDict[variantSiteA] > 0)
                    {
                        phasingResult.AddSupportForAandB(variantSiteB, weight);
                    }
                }
            }
            return(phasingResult);
        }
Beispiel #3
0
        public void AddSupport()
        {
            //TODO : Right now AddSupport checks the dictionary and adds first. Do we want to be restricting the variant sites to those we initialize with? Or do we want to not initialize the variant sites and just track those that have support?

            // This method tests AddSupportForB and AddSupportForAandB

            // Should not throw any exceptions (null ref or key not found are ones to look out for since we're tracking in dictionaries)
            // SupportOfB should be incremented by 1
            // WeightedSupportOfB should be incremented by weight

            var variantA             = new VariantSite(1);
            var variantB             = new VariantSite(2);
            var variantB2            = new VariantSite(3);
            var variantBOutsideGroup = new VariantSite(4);

            // We can verify that these were incremented by checking for the prob of A given B, since we know how many clusters we have
            var phasingResult = new VariantPhasingResult(variantA, new List <VariantSite> {
                variantB, variantB2
            }, 1);

            // Add support for a variant not being tracked already: should not throw an exception (see TODO above)
            phasingResult.AddSupportForB(variantBOutsideGroup, 30);

            //There is no support for B on its own (without A)
            phasingResult.AddSupportForB(variantB, 3);

            //Haven't added support for AandB yet, so we'll get a 0.
            Assert.Equal(0, phasingResult.GetProbOfAGivenB(variantB));
            Assert.Equal(0, phasingResult.GetWeightedProbOfAGivenB(variantB));

            //Adding support for AandB should bring us into the positive
            phasingResult.AddSupportForAandB(variantB, 12);
            //Now we should get 1/1 raw and 12/3 weighted
            Assert.Equal(1, phasingResult.GetProbOfAGivenB(variantB));
            Assert.Equal(4, phasingResult.GetWeightedProbOfAGivenB(variantB));

            //Adding more support for B alone should change our results
            phasingResult.AddSupportForB(variantB, 3);
            //Now we should get 1/2 raw and 12/6 weighted
            Assert.Equal(.5, phasingResult.GetProbOfAGivenB(variantB));
            Assert.Equal(2, phasingResult.GetWeightedProbOfAGivenB(variantB));

            //Adding more support for AandB should change our results
            phasingResult.AddSupportForAandB(variantB, 6);
            //Now we should get 2/2 raw and 18/6 weighted
            Assert.Equal(1, phasingResult.GetProbOfAGivenB(variantB));
            Assert.Equal(3, phasingResult.GetWeightedProbOfAGivenB(variantB));

            //Adding support to a different variant should not change our results
            phasingResult.AddSupportForB(variantB2, 5);
            Assert.Equal(1, phasingResult.GetProbOfAGivenB(variantB));
            Assert.Equal(3, phasingResult.GetWeightedProbOfAGivenB(variantB));
            phasingResult.AddSupportForAandB(variantB2, 5);
            Assert.Equal(1, phasingResult.GetProbOfAGivenB(variantB));
            Assert.Equal(3, phasingResult.GetWeightedProbOfAGivenB(variantB));
        }
Beispiel #4
0
        public void GetPhasingProbabilities()
        {
            var variantSites = new List <VariantSite>
            {
                new VariantSite(1),
                new VariantSite(2),
                new VariantSite(45)
            };

            var clusters = new SetOfClusters(new ClusteringParameters());

            // There should be a PhasingResult for each variant in variantSites
            var phasingProbabilities = VariantPhasingResult.GetPhasingProbabilities(variantSites, clusters);

            Assert.Equal(variantSites.Count, phasingProbabilities.Count);
            Assert.Equal(variantSites.Select(x => x), phasingProbabilities.Keys.ToList());
        }