Description Usage Arguments Value See Also Examples
View source: R/GSEPD_PCA_Plot.R
After processing the pipeline, users may want to have further PCA figures generated. This function takes a completed GSEPD object and generates informative figures, based on the differentially expressed genes.
1 | GSEPD_PCA_Plot(GSEPD, customColors=FALSE)
|
GSEPD |
The master object, it should have already been run through GSEPD_Process(). |
customColors |
a boolean value, when FALSE, default behavior is to color points to match the test conditions. When TRUE, use sampleMeta$CustomColor column for a sample-by-sample user specification. This behavior disables the built-in legend. |
No return value. Generates files.
GSEPD_PCA_Spec
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | data("IlluminaBodymap")
data("IlluminaBodymapMeta")
set.seed(1000) #fixed randomness
isoform_ids <- Name_to_RefSeq(c("HIF1A","EGFR","MYH7","CD33","BRCA2"))
rows_of_interest <- unique( c( isoform_ids ,
sample(rownames(IlluminaBodymap),
size=2000,replace=FALSE)))
G <- GSEPD_INIT(Output_Folder="OUT",
finalCounts=round(IlluminaBodymap[rows_of_interest , ]),
sampleMeta=IlluminaBodymapMeta,
COLORS=c("green","black","red"))
G <- GSEPD_ChangeConditions( G, c("A","B")) #set testing groups first!
G <- GSEPD_Process( G ) #have to have processed results to plot them
GSEPD_PCA_Plot(G)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.