peaks_metadata_annotationhub | R Documentation |
A subset of metadata from AnnotationHub that only includes entries for peaks (narrowPeak and broadPeak).
data("peaks_metadata_annotationhub")
An object of class data.table
(inherits from data.frame
) with 12483 rows and 24 columns.
meta <- search_annotationhub()
searches <- construct_searches(keys = c("broadpeak","narrowpeak","genericpeak"))
search_strings <- paste(unname(unlist(searches)),collapse = "|")
peaks_metadata_annotationhub <- meta[with(meta,
grepl(search_strings,
paste(title,description,sourcetype,sourceurl),
ignore.case = TRUE)
),
]
PeakyFinders:::drop_empty_cols(peaks_metadata_annotationhub)
usethis::use_data(peaks_metadata_annotationhub, overwrite = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.