Implemented Limma function for Affy workflow.

Extended ScatterPlot to take two datasets and updated code using it.
This commit is contained in:
2006-05-09 13:17:17 +00:00
parent 033d4d5333
commit 5b1af849dc
6 changed files with 144 additions and 24 deletions

View File

@@ -248,7 +248,7 @@ class PCAFunction(workflow.Function):
# cleanup
rpy.r.rm(["t", "m"])
loading_plot = plots.ScatterPlot(P,'ids','component','1','2', "Loadings")
score_plot = plots.ScatterPlot(T,'filename','component','1','2', "Scores")
loading_plot = plots.ScatterPlot(P, P, ,'ids','component','1','2', "Loadings")
score_plot = plots.ScatterPlot(T, T,'filename','component','1','2', "Scores")
return [T, P, loading_plot, score_plot]