Exemplo n.º 1
0
    def handLoadPlates(self):
        """Generates Excel sheets containing cherrypicking mappings for
		setting up the current round of screening."""
        title = "Hand cherrypick file..."
        fileName, f = QtGui.QFileDialog.getSaveFileName(self, title)
        fileName = fileName.split(".")[0] + ".xls"
        samples = self.tabs.getSamplesForLoading()
        CherryTable.forHand(samples, fileName)
Exemplo n.º 2
0
 def cherryPickNUHand(self):
     """Cherrypicks the Negatives and Unknowns and creates hand files."""
     title = "Hand cherrypick N/U file..."
     fileName, f = QtGui.QFileDialog.getSaveFileName(self, title)
     fileName = fileName.split(".")[0] + ".xls"
     controls, ok = SetControls.run(4)
     if ok:
         samples = self.tabs.getNegativesUnknowns()
         CherryTable.forHand(samples, fileName)