예제 #1
0
파일: poowindow.py 프로젝트: mcvmcv/Poo
    def setIncludeByPopulation(self):
        """Sets the Include column of the current tab to True or False,
		depending on an input set of conditions."""
        populations = self.tabs.sampleTable.getColumnEntryList("Population")
        included, ok = GetSelection.run(populations, "Include")
        if ok:
            self.tabs.setByPopulation("Include", included)
예제 #2
0
파일: poowindow.py 프로젝트: mcvmcv/Poo
    def setIncludeByPlate(self):
        """Sets the Include column of the current tab to True or False,
		depending on an input set of conditions."""
        plates = self.tabs.getColumnEntryList("Plate ID")
        included, ok = GetSelection.run(plates, "Include")
        if ok:
            self.tabs.update("Plate ID", included)
예제 #3
0
파일: poowindow.py 프로젝트: mcvmcv/Poo
 def setOutputByPopulation(self):
     """Opens a dialog to select which populations to output."""
     populations = self.tabs.sampleTable.getColumnEntryList("Population")
     output, ok = GetSelection.run(populations, "Output")
     if ok:
         self.tabs.setByPopulation("Output", output)
예제 #4
0
파일: poowindow.py 프로젝트: mcvmcv/Poo
 def setOutputByPlate(self):
     """Opens a dialog to select which plates to output."""
     plates = self.tabs.getColumnEntryList("Plate ID")
     output, ok = GetSelection.run(plates, "Output")
     if ok:
         self.tabs.update("Plate ID", output)