Fixed bug in ftsv save and open dialogs. The save dialog now looks as intended.

Added the possibility to load several datasets at once. Error handling should still
be improved.
This commit is contained in:
2007-01-16 12:28:56 +00:00
parent ea4c0af6de
commit f612dda72f
2 changed files with 24 additions and 15 deletions

View File

@@ -1,5 +1,6 @@
import gtk
from fluents import dataset, logger, plots, workflow, fluents
from fluents.lib import blmfuncs
import geneontology
#import gostat
from scipy import array, randn, log, ones, zeros
@@ -123,6 +124,10 @@ class GoWorkflow (workflow.Workflow):
go.add_function(SaveDistancesFunction())
self.add_stage(go)
blm = workflow.Stage('blm', 'Bilinear Analysis')
blm.add_function(blmfuncs.PCA())
self.add_stage(blm)
class LoadGOFunction(workflow.Function):
def __init__(self):