Skip to content

Commit

Permalink
Merge pull request #240 from skrakau/fix_mouse_alleles
Browse files Browse the repository at this point in the history
Fix using mouse alleles and added predictor classes
  • Loading branch information
christopher-mohr authored Apr 23, 2020
2 parents f70712f + aa71ae3 commit 394e240
Show file tree
Hide file tree
Showing 3 changed files with 459 additions and 80 deletions.
2 changes: 1 addition & 1 deletion Fred2/Core/Allele.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def __init__(self, name, prob=None):
allele = name.split("-")[-1].replace("H-2-", "")

self.organism = "H-2"
self.name = allele
self.name = allele[0] + allele[1:].lower()
self.prob = prob

def __repr__(self):
Expand Down
Loading

0 comments on commit 394e240

Please sign in to comment.