Description Usage Arguments Value Slots Methods Examples
ENCODESummary objects is the base class of ENCODEBindingConsensus-class and ENCODEExpressionSummary-class objects. It provides methods to query which files were used to build the summary, the names of the grouped elements as well as their metadata.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | ## S4 method for signature 'ENCODESummary'
names(x)
## S4 replacement method for signature 'ENCODESummary,character'
names(x) <- value
## S4 method for signature 'ENCODESummary'
length(x)
## S4 method for signature 'ENCODESummary'
metadata(x)
file_metadata(x)
## S4 method for signature 'ENCODESummary'
file_metadata(x)
files(x)
## S4 method for signature 'ENCODESummary'
files(x)
## S4 method for signature 'ENCODESummary'
show(object)
 | 
| x | The ENCODESummary object. | 
| value | The new names for the elements of the ENCODESummary object. | 
| object | The ENCODESummary object. | 
For names, names<-, a copy of the object. For length,
the number of elements. For files, a character vector. For 
file_metadata, a list of data-frames with each file's metadata. For
metadata, a data-frame with the discriminating metadata of each 
sample group.
filesThe path of the files used in this summary.
file_metadataA list of data-frames representing the ENCODE metadata of the files used to build the per-condition consensus.
metadataA data-frame with the metadata of each element in the summary.
ENCODESummary object can be accessed through a variety of methods:
namesReturns the names of the elements.
names<-Sets the names of the elements.
lengthReturns the number of elements.
filesReturns a character vector of the ENCODE files used to build this object.
file_metadataReturns a list of per-condition metadata of the ENCODE files used to build the object.
metadataReturns a data-frame of the common per-condition metadata of the ENCODE files used to build the object.
showPrint a summary of the object.
| 1 2 3 4 5 |   res = queryConsensusPeaks("22Rv1", "GRCh38", "CTCF")
  names(res)
  files(res)
  metadata(res)
  print(res)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.