Validation on number of inputs added

This commit is contained in:
2006-05-03 11:52:54 +00:00
parent a613f0a3fa
commit 56a6028547
6 changed files with 52 additions and 43 deletions

View File

@@ -31,7 +31,7 @@ class TestDataFunction(workflow.Function):
def __init__(self):
workflow.Function.__init__(self, 'test_data', 'Generate Test Data')
def run(self, data):
def run(self):
logger.log('notice', 'Injecting foo test data')
x = randn(20,30)
X = dataset.Dataset(x)
@@ -43,7 +43,7 @@ class DatasetLoadFunction(workflow.Function):
def __init__(self):
workflow.Function.__init__(self, 'load_data', 'Load Pickled Dataset')
def run(self, data):
def run(self):
chooser = gtk.FileChooserDialog(title="Select cel files...", parent=None,
action=gtk.FILE_CHOOSER_ACTION_OPEN,
buttons=(gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL,
@@ -69,7 +69,7 @@ class DatasetSaveFunction(workflow.Function):
def __init__(self):
workflow.Function.__init__(self, 'save_data', 'Save Pickled Dataset')
def run(self, data):
def run(self):
if not data:
logger.log("notice", "No data to save.")
return
@@ -103,7 +103,7 @@ class CelFileImportFunction(workflow.Function):
def __init__(self):
workflow.Function.__init__(self, 'cel_import', 'Import Affy')
def run(self, (data,)):
def run(self,data):
import rpy
chooser = gtk.FileChooserDialog(title="Select cel files...", parent=None,
action=gtk.FILE_CHOOSER_ACTION_OPEN,
@@ -152,7 +152,7 @@ class PCAFunction(workflow.Function):
workflow.Function.__init__(self, 'pca', 'PCA')
self._workflow = wf
def run(self, (data,)):
def run(self,data):
import rpy
dim_2, dim_1 = data.get_dim_names()