Home
last modified time | relevance | path

Searched defs:alleles (Results 1 – 25 of 206) sorted by relevance

123456789

/dports/biology/freebayes/freebayes-1.3.5/python/
H A Dallelebayes.py61 def group_alleles(alleles): argument
71 def alleles_quality_to_lnprob(alleles): argument
131 def sampling_prob(genotype, alleles): argument
188 def data_likelihood_estimate(genotype, alleles): argument
250 def genotype_probabilities(genotypes, alleles): argument
253 def genotype_probabilities_heuristic(genotypes, alleles): argument
304alleles = [allele for allele in sample['alleles'] if allele['type'] in ['reference', 'snp']] variable
305 alleles = alleles_quality_to_lnprob(alleles) variable
315 alleles = sample['alleles'] variable
/dports/biology/gatk/gatk-4.2.0.0/src/test/java/org/broadinstitute/hellbender/tools/walkers/annotator/allelespecific/
H A DAlleleSpecificAnnotationDataUnitTest.java19 final List<Allele> alleles= Arrays.asList(Aref, T); in testCreate() local
22 Assert.assertEquals(asad.getAlleles(), alleles); in testCreate() local
40 final List<Allele> alleles= Arrays.asList(A, T); in testNoRef() local
49 final List<Allele> alleles= Arrays.asList(Aref, Tref); in testTwoRef() local
/dports/biology/gatk/gatk-4.2.0.0/src/main/java/org/broadinstitute/hellbender/utils/genotyper/
H A DIndexedAlleleList.java16 private final IndexedSet<A> alleles; field in IndexedAlleleList
40 public IndexedAlleleList(final A... alleles) { in IndexedAlleleList()
56 public IndexedAlleleList(final Collection<A> alleles) { in IndexedAlleleList()
H A DAlleleLikelihoods.java81 protected AlleleList<A> alleles; field in AlleleLikelihoods
121 final AlleleList<A> alleles, in AlleleLikelihoods()
150 AlleleLikelihoods(final AlleleList alleles, in AlleleLikelihoods()
191 private static int findReferenceAllele(final AlleleList<?> alleles) { in findReferenceAllele()
/dports/biology/gatk/gatk-4.2.0.0/src/test/java/org/broadinstitute/hellbender/utils/genotyper/
H A DAlleleLikelihoodsUnitTest.java30 …public void testInstantiationAndQuery(final String[] samples, final Allele[] alleles, final Map<St… in testInstantiationAndQuery()
44 …public void testLikelihoodFillingAndQuery(final String[] samples, final Allele[] alleles, final Ma… in testLikelihoodFillingAndQuery()
50 …private double[][][] fillWithRandomLikelihoods(final String[] samples, final Allele[] alleles, fin… in fillWithRandomLikelihoods()
65 …private double[][][] fillWithRandomLikelihoods(final String[] samples, final Allele[] alleles, fin… in fillWithRandomLikelihoods()
73 …public void testBestAlleles(final String[] samples, final Allele[] alleles, final Map<String,List<… in testBestAlleles()
H A DIndexedAlleleListUnitTest.java29 … final Allele[] alleles = AlleleListUnitTester.generateRandomAlleles(alleleCount, maxAlleleLength); in testArrayConstructor() local
38 … final Allele[] alleles = AlleleListUnitTester.generateRandomAlleles(alleleCount, maxAlleleLength); in testCollectionConstructor() local
/dports/biology/freebayes/freebayes-1.3.5/src/
H A DAllele.cpp133 void updateAllelesCachedData(vector<Allele*>& alleles) { in updateAllelesCachedData()
328 string stringForAlleles(vector<Allele> &alleles) { in stringForAlleles()
336 string tojson(vector<Allele*> &alleles) { in tojson()
398 ostream &operator<<(ostream &out, list<Allele*> &alleles) { in operator <<()
499 bool areHomozygous(vector<Allele*>& alleles) { in areHomozygous()
510 map<Allele, int> countAlleles(vector<Allele*>& alleles) { in countAlleles()
556 map<Allele, int> countAlleles(vector<Allele>& alleles) { in countAlleles()
570 map<Allele, int> countAlleles(list<Allele*>& alleles) { in countAlleles()
594 vector<Allele> uniqueAlleles(list<Allele*>& alleles) { in uniqueAlleles()
645 vector<Allele*>& alleles = g->second; in homogenizeAlleles() local
[all …]
H A DSample.cpp68 vector<Allele*>& alleles = g->second; in qualSum() local
84 vector<Allele*>& alleles = g->second; in partialQualSum() local
194 vector<Allele*>& alleles = g->second; in sortReferenceAlleles() local
202 vector<Allele*> alleles; in sortReferenceAlleles() local
222 vector<Allele*>& alleles = s->second; in strandBaseCount() local
248 vector<Allele*>& alleles = g->second; in baseCount() local
264 vector<Allele*>& alleles = g->second; in tojson() local
279 const vector<Allele*>& alleles = g->second; in groupAlleles() local
302 vector<Allele*>& alleles = group->second; in sufficientAlternateObservations() local
355 void Samples::assignPartialSupport(vector<Allele>& alleles, in assignPartialSupport()
/dports/biology/gatk/gatk-4.2.0.0/src/test/java/org/broadinstitute/hellbender/tools/walkers/genotyper/afcalc/
H A DAlleleFrequencyCalculatorUnitTest.java45 final List<Allele> alleles = Arrays.asList(A,B,C); in testSymmetries() local
78 final List<Allele> alleles = Arrays.asList(A,B,C); in testMLECounts() local
114 final List<Allele> alleles = Arrays.asList(A,B); in testManySamplesWithLowConfidence() local
140 final List<Allele> alleles = Arrays.asList(A,B,C); in testManyVeryConfidentSamples() local
170 final List<Allele> alleles = Arrays.asList(A,B); in testApproximateMultiplicativeConfidence() local
197 final List<Allele> alleles = Arrays.asList(A,B); in testManyRefSamplesDontKillGoodVariant() local
H A DAFCalculationResultUnitTest.java31 …private void test(final int[] mleCounts, final List<Allele> alleles, final double probabilityOfNoV… in test()
39 Assert.assertEquals(result.getAllelesUsedInGenotyping(), alleles); in test() local
/dports/biology/gatk/gatk-4.2.0.0/src/main/java/org/broadinstitute/hellbender/tools/walkers/mutect/
H A DSubsettedLikelihoodMatrix.java24 private final List<A> alleles; field in SubsettedLikelihoodMatrix
27 …blic SubsettedLikelihoodMatrix(final LikelihoodMatrix<EVIDENCE, A> matrix, final List<A> alleles) { in SubsettedLikelihoodMatrix()
37 …final List<A> alleles = matrix.alleles().stream().filter(a -> !basesMatch(a,excludedAllele)).colle… in excludingAllele() local
49 public List<A> alleles() { return alleles; } in alleles() method in SubsettedLikelihoodMatrix
/dports/biology/gatk/gatk-4.2.0.0/src/main/java/org/broadinstitute/hellbender/tools/walkers/haplotypecaller/
H A DLocationAndAlleles.java14 private final List<Allele> alleles; field in LocationAndAlleles
16 public LocationAndAlleles(final int loc, final List<Allele> alleles) { in LocationAndAlleles()
/dports/biology/haplohseq/haplohseq-0.1.2/src/test/
H A DInputProcessorTest.cpp23 std::vector< std::vector<char> > alleles; in BOOST_AUTO_TEST_CASE() local
54 std::vector< std::vector<char> > alleles; in BOOST_AUTO_TEST_CASE() local
91 std::vector< std::vector<char> > alleles; in BOOST_AUTO_TEST_CASE() local
H A DHaplohSeqTest.cpp20 std::vector< std::vector<char> > alleles; in BOOST_AUTO_TEST_CASE() local
37 std::vector< std::vector<char> > alleles; in BOOST_AUTO_TEST_CASE() local
/dports/biology/lamarc/lamarc-2.1.8/src/datalike/
H A Dphenotypes.cpp50 void Phenotypes::AddPhenotype(const StringVec1d& alleles, string name, double penetrance) in AddPhenotype()
68 Haplotypes Phenotypes::ChooseHaplotypes(const StringVec1d& alleles) in ChooseHaplotypes()
176 multiset<string> alleles = (*genotype).first; in MakeHaplotypes() local
/dports/biology/gatk/gatk-4.2.0.0/src/main/java/org/broadinstitute/hellbender/tools/walkers/annotator/
H A DDepthPerAlleleBySample.java54 final Set<Allele> alleles = new LinkedHashSet<>(vc.getAlleles()); in annotate() local
62 …protected int[] annotateWithLikelihoods(VariantContext vc, Genotype g, Set<Allele> alleles, final … in annotateWithLikelihoods()
/dports/biology/gatk/gatk-4.2.0.0/src/main/java/org/broadinstitute/hellbender/tools/walkers/genotyper/
H A DGenotypingEngine.java201 …protected double phredNoVariantPosteriorProbability(final List<Allele> alleles, final GenotypesCon… in phredNoVariantPosteriorProbability()
208 private double extractPNoAlt(final List<Allele> alleles, final Genotype gt) { in extractPNoAlt()
215 …private double extractPNoAlt(final List<Allele> alleles, final Genotype gt, final double[] posteri… in extractPNoAlt()
261 private final List<Allele> alleles; field in GenotypingEngine.OutputAlleleSubset
265 …private OutputAlleleSubset(final List<Allele> alleles, final List<Integer> mleCounts, final boolea… in OutputAlleleSubset()
293 final List<Allele> alleles = afCalculationResult.getAllelesUsedInGenotyping(); in calculateOutputAlleleSubset() local
H A DGenotypingLikelihoods.java20 private final AlleleList<A> alleles; field in GenotypingLikelihoods
37 …GenotypingLikelihoods(final AlleleList<A> alleles, final PloidyModel ploidyModel, final List<Genot… in GenotypingLikelihoods()
/dports/biology/gatk/gatk-4.2.0.0/src/test/java/org/broadinstitute/hellbender/tools/walkers/variantutils/
H A DLeftAlignAndTrimVariantsUnitTest.java70 final List<Allele> alleles = new ArrayList<Allele>(); in LeftAlignTestData() local
114 final List<Allele> alleles = new ArrayList<Allele>(); in LeftAlignTestData() local
150 … final List<Allele> alleles = Arrays.asList(Allele.create("AA", true), Allele.create("A", false)); in testLeftAlignWithVaryingMaxDistances() local
/dports/biology/vt/vt-0.57721/
H A Dvariant_manip.cpp111 char** alleles = bcf_get_allele(v); in is_normalized() local
204 char** alleles = bcf_get_allele(v); in contains_N() local
513 void VariantManip::right_trim_or_left_extend(std::vector<std::string>& alleles, int32_t& pos1, cons… in right_trim_or_left_extend()
588 void VariantManip::left_trim(std::vector<std::string>& alleles, int32_t& pos1, int32_t& left_trimme… in left_trim()
623 std::vector<std::string>& alleles, //store alleles in generate_probes()
740 std::vector<std::string>& alleles, in generate_probes()
/dports/biology/jalview/jalview/test/jalview/ext/htsjdk/
H A DVCFReaderTest.java51 List<Allele> alleles = vc.getAlleles(); in testReadVcf_plain() local
188 List<Allele> alleles = vc.getAlleles(); in testQuery_plain() local
/dports/biology/vcflib/vcflib-1.0.2/src/
H A Dvcfroc.cpp274 vector<VariantAllele>& alleles = parsedAlleles[&*v][**a]; in main() local
302 vector<VariantAllele>& alleles = parsedAlleles[*v][**a]; in main() local
311 vector<VariantAllele>& alleles = parsedAlts[**a]; in main() local
350 vector<VariantAllele*>& alleles = a->second; in main() local
412 vector<VariantAllele*>& alleles = a->second; in main() local
/dports/biology/freebayes/freebayes-1.3.5/vcflib-temp/src/
H A Dvcfroc.cpp264 vector<VariantAllele>& alleles = parsedAlleles[&*v][**a]; in main() local
292 vector<VariantAllele>& alleles = parsedAlleles[*v][**a]; in main() local
301 vector<VariantAllele>& alleles = parsedAlts[**a]; in main() local
340 vector<VariantAllele*>& alleles = a->second; in main() local
402 vector<VariantAllele*>& alleles = a->second; in main() local
/dports/biology/freebayes/freebayes-1.3.5/vcflib/src/
H A Dvcfroc.cpp264 vector<VariantAllele>& alleles = parsedAlleles[&*v][**a]; in main() local
292 vector<VariantAllele>& alleles = parsedAlleles[*v][**a]; in main() local
301 vector<VariantAllele>& alleles = parsedAlts[**a]; in main() local
340 vector<VariantAllele*>& alleles = a->second; in main() local
402 vector<VariantAllele*>& alleles = a->second; in main() local
/dports/biology/bamutil/bamUtil-1.0.15/libStatGen/general/
H A DGenotypeLists.h28 IntArray alleles; variable

123456789