Description Usage Arguments Value Author(s) Examples
View source: R/get_binding_sites.R
Retrieve the binding sites and genome location for a given transcription factor.
1 | get_binding_sites(regulondb, transcription_factor, output_format = "GRanges")
|
regulondb |
A |
transcription_factor |
name of the transcription factor. |
output_format |
The output object. Can be either a |
Either a GRanges object or a Biostrings object summarizing information about the binding sites of the transcription factors.
José Alquicira Hernández, Jacques van Helden, Joselyn Chávez
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ## Connect to the RegulonDB database if necessary
if (!exists("regulondb_conn")) regulondb_conn <- connect_database()
## Build the regulon db object
e_coli_regulondb <-
regulondb(
database_conn = regulondb_conn,
organism = "E.coli",
database_version = "1",
genome_version = "1"
)
## Get the binding sites for AraC
get_binding_sites(e_coli_regulondb, transcription_factor = "AraC")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.