Exemplo n.º 1
0
 def displayHistogram(self, displayFrame, event):
         gene = displayFrame.grid.GetCellValue(displayFrame.row, 0)
         filepath = os.path.join(ntpath.dirname(displayFrame.path), transit_tools.fetch_name(displayFrame.path))
         filename = os.path.join(filepath, gene+".png")
         if os.path.exists(filename):
             imgWindow = pytransit.fileDisplay.ImgFrame(None, filename)
             imgWindow.Show()
         else:
             transit_tools.ShowError(MSG="Error Displaying File. Histogram image not found. Make sure results were obtained with the histogram option turned on.")
             print("Error Displaying File. Histogram image does not exist.")
Exemplo n.º 2
0
 def transit_error(self, text):
     self.transit_message(text)
     if self.wxobj:
         transit_tools.ShowError(text)