GSEPD_ChangeConditions | R Documentation |
This function is an interface to set which samples are the test conditions. Don't forget to GSEPD_Process() after changing settings. If you want to systematically try each condition pairing, try GSEPD_ProcessAll()
GSEPD_ChangeConditions(GSEPD, newConditions)
GSEPD |
Parameters object. |
newConditions |
a two-item vector matching some of your sampleMeta$Conditions |
Interface will check if the conditions are known, then set the C2T value.
Returns the GSEPD parameter object with its mode set via the C2T and Conditions element of the named list. These tell later steps which sample conditions you intend on comparing.
GSEPD_Example
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")) ConditionsToTest <- c("A","B") G <- GSEPD_ChangeConditions( G, ConditionsToTest ) #G <- GSEPD_Process( G ) #would test samples A vs samples B G <- GSEPD_ChangeConditions( G, c("A","C")) #G <- GSEPD_Process( G ) #would test samples A vs samples C
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.