Removed need to provide plots with project/workflow on creation, is instead injected by project itself when added to it.

This commit is contained in:
2006-04-24 14:42:45 +00:00
parent b807f27874
commit 6c72dec7fa
4 changed files with 23 additions and 23 deletions

View File

@@ -102,9 +102,9 @@ class PCAFunction(Function):
#tsq = dataset.Dataset(tsq,[singel_def,data_ids[1])
## plots
loading_plot1 = plots.ScatterPlot(self.workflow.project,P,'genes','comp','1','2')
loading_plot2 = plots.ScatterPlot(self.workflow.project,P,'genes','comp','3','4')
score_plot = plots.ScatterPlot(self.workflow.project,T,'samples','comp','1','2')
loading_plot1 = plots.ScatterPlot(P,'genes','comp','1','2')
loading_plot2 = plots.ScatterPlot(P,'genes','comp','3','4')
score_plot = plots.ScatterPlot(T,'samples','comp','1','2')
return [T,P,E,loading_plot1,loading_plot2,score_plot]