Description Usage Arguments Details Value See Also Examples
View source: R/GSEPD_Process.R
Primary interface, use this function to kick off the pipeline.
1 | GSEPD_Process(GSEPD)
|
GSEPD |
The initialized GSEPD master object to operate on. |
Runs the pipeline. If any files are already present matching the generated filenames, they will be reused. If you changed a parameter that would alter the generated filenames, new ones are created. If a customization parameter is not part of the filename (like a p-value cutoff), you should change the output folder to keep new files separate.
Returns the GSEPD object post-processed, for use in further plotting functions. Optional.
GSEPD_INIT
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 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 ) #would run DESeq2 and GOSeq and GSEPD comparing conditions A and B
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.