Skip to content

Commit

Permalink
Merge pull request #11 from bmatern/master
Browse files Browse the repository at this point in the history
fixed IMGT/HLA text
  • Loading branch information
bmatern authored Oct 9, 2017
2 parents b8d89a2 + 22fd729 commit 95f19eb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions saddlebags/AlleleSubMainGui.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ def initialize(self):

# Make a frame for the more-info buttons
self.moreInfoFrame = Tkinter.Frame(self)
Tkinter.Button(self.moreInfoFrame, text='Generate an EMBL submission', command=lambda: self.openAlleleSubGUI('EMBL')).grid(row=0, column=0)
Tkinter.Button(self.moreInfoFrame, text='Generate an IMGT submission', command=lambda: self.openAlleleSubGUI('IMGT'), state=DISABLED).grid(row=0, column=1)
Tkinter.Button(self.moreInfoFrame, text='Generate an EMBL/ENA submission', command=lambda: self.openAlleleSubGUI('EMBL')).grid(row=0, column=0)
Tkinter.Button(self.moreInfoFrame, text='Generate an IMGT/HLA submission', command=lambda: self.openAlleleSubGUI('IMGT'), state=DISABLED).grid(row=0, column=1)
Tkinter.Button(self.moreInfoFrame, text=' How to use this tool ', command=self.howToUse).grid(row=1, column=0)
Tkinter.Button(self.moreInfoFrame, text='Contacting and Citing MUMC', command=self.contactInformation).grid(row=1, column=1)
self.moreInfoFrame.pack()
Expand Down Expand Up @@ -186,7 +186,7 @@ def openAlleleSubGUI(self, submissionType):
self.alleleSubRoot.bind("<Destroy>", self.onCloseOtherFrame)

if(submissionType=='IMGT'):
print ('Opening the IMGT Submission GUI')
print ('Opening the IPD-IMGT/HLA Submission GUI')
ImgtSubGui(self.alleleSubRoot).pack()
elif(submissionType=='EMBL'):
print ('Opening the EMBL Submission GUI')
Expand Down

0 comments on commit 95f19eb

Please sign in to comment.