Description Usage Arguments Value Author(s) Examples
The different implementations of show function for the DAVIDWebService package classes.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | ## S4 method for signature 'DAVIDResult'
show(object)
## S4 method for signature 'DAVIDGenes'
show(object)
## S4 method for signature 'DAVIDFunctionalAnnotationChart'
show(object)
## S4 method for signature 'DAVIDCluster'
show(object)
## S4 method for signature 'DAVIDFunctionalAnnotationTable'
show(object)
## S4 method for signature 'DAVIDWebService'
show(object)
|
object |
DAVIDXX class members (where XX stands for Result, Genes, Term/GeneCluster, FunctionalAnnotationChart/Table or DAVIDWebService). |
Basic console output.
Cristobal Fresno and Elmer A Fernandez
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | {
##DAVIDGenes example:
##Load Show Gene List file report for the input demo file 1, using data
##function. Then, create a DAVIDGenes object using only the head of the
##loaded data.frame geneList1 (just to keep it simple).
data(geneList1)
davidGenes1<-DAVIDGenes(head(geneList1))
davidGenes1
##DAVIDFunctionalAnnotationChart example
##Load the Functional Annotation Chart file report for the input demo
##file 2, using data function. Then, create a DAVIDFunctionalAnnotationChart
##object using the head of the loaded data.frame funChart2 (just to keep
##it simple).
data(funChart2)
davidFunChart2<-DAVIDFunctionalAnnotationChart(head(funChart2))
davidFunChart2
##DAVIDFunctionalAnnotationTable example:
##Load the Functional Annotation Table file report for the input demo
##file 1, using data function. Then, create a DAVIDFunctionalAnnotationTable
##object using the loaded data.frame annotationTable1.
data(annotationTable1)
davidFunTable1<-DAVIDFunctionalAnnotationTable(annotationTable1)
davidFunTable1
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.