Description Usage Arguments Value Methods (by class) Examples
This is a generic function. When implemented as the S4 method for objects of class GSCA or NWA, this function prints a summary of information about the slots of these classes.
1 2 3 4 5 |
object |
A GSCA object or NWA object. |
what |
A single character value or a character vector of key words specifying what to print (see Methods below). Default will print a summary of all information. |
In the end, this function would return a summary of the NWA object.
In the end, this function would return a summary of the NWA object.
GSCA
: For an object of class GSCA, the key words are 'GSC'
(the slot 'listOfGeneSetCollections'), 'GeneList' (the slot 'geneList'),
'Hits' (the slot 'hits'), 'Para' (the slot 'para'), 'Result' (the slot
'result') and 'ALL' (all slots).
NWA
: For an object of class NWA, the key words include 'Pval'
(the slot 'pvalues'), 'Phenotype' (the slot 'phenotypes'), 'Interactome' (the
slot 'interactome'), 'Para' (the slot 'fdr'), 'Result' (the slot 'result')
and 'ALL' (all slots).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # =================================================================
# GSCA class
## load a GSCA object(see the examples of analyze GSCA for details)
data(d7_gsca)
## summarize d7_gsca
summarize(d7_gsca, what = "ALL")
summarize(d7_gsca, what = "Result")
## Not run:
# =================================================================
# NWA class
## load a NWA object(see the examples of analyze NWA for details)
data(d7_nwa)
## summarize d7_nwa
summarize(d7_nwa, what = "ALL")
summarize(d7_nwa, what = "Result")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.