Skip to content

Commit

Permalink
Revert broken AbstractAnalysisRunner
Browse files Browse the repository at this point in the history
  • Loading branch information
julesjacobsen committed Feb 22, 2024
1 parent f215a90 commit 1e3ea65
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ public AnalysisResults run(Sample sample, Analysis analysis) {
List<Gene> genesToScore = variantsLoaded ? getGenesWithVariants(allGenes) : allGenes.values().stream().filter(genesToScore()).toList();
// Temporarily add a new PValueGeneScorer so as not to break semver will revert to RawScoreGeneScorer in 14.0.0
CombinedScorePvalueCalculator combinedScorePvalueCalculator = buildCombinedScorePvalueCalculator(sample, analysis, genesToScore.size());
GeneScorer geneScorer = new PvalueGeneScorer(probandIdentifier, sample.getSex(), inheritanceModeAnnotator, combinedScorePvalueCalculator, genomeAnalysisService);
GeneScorer geneScorer = new PvalueGeneScorer(probandIdentifier, sample.getSex(), inheritanceModeAnnotator, combinedScorePvalueCalculator);

logger.info("Scoring genes");
List<Gene> genes = geneScorer.scoreGenes(genesToScore);
Expand Down

0 comments on commit 1e3ea65

Please # to comment.