Skip to content

Commit

Permalink
Fixed bug caused by pycharm being too smart for itself and changing f…
Browse files Browse the repository at this point in the history
…ile reference to file I tagged to remove.
  • Loading branch information
michael-weinstein committed Sep 2, 2019
1 parent cf8f020 commit 95119c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion analyzeStandardReads.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def analyzeStandardResult(resultTable:dict):
miqScoreResult.makeReadFateChart(readFatePrintNames=readFatePrintNames)
miqScoreResult.makeRadarPlots()
goodMiqPath = os.path.join(os.path.split(__file__)[0], "reference", "goodMiq.json")
badMiqPath = os.path.join(os.path.split(__file__)[0], "reference", "badMiq.json.OLD")
badMiqPath = os.path.join(os.path.split(__file__)[0], "reference", "badMiq.json")
goodComposition, badComposition = miqScoreNGSReadCountPublic.loadReferenceCompositionFromExampleMiq(goodMiqPath, badMiqPath)
miqScoreResult.makeCompositionBarPlot(goodComposition, badComposition)
return miqScoreResult
Expand Down

0 comments on commit 95119c6

Please sign in to comment.