Description Usage Arguments Value Author(s) See Also Examples
read_rna_encode_caltech
reads a file containing promoter annotation
data together with gene expression levels from RNA-Seq experiments using the
scan
function. The RNA-Seq file should be in ENCODE Caltech
bed
format, e.g. use gtf2bed
tool if your initial file is in
gtf
format.
1 | read_rna_encode_caltech(file, chr_discarded = NULL, is_GRanges = TRUE)
|
file |
The name of the file to read data values from. |
chr_discarded |
A vector with chromosome names to be discarded. |
is_GRanges |
Logical: if TRUE a GRanges object is returned, otherwise a data.frame object is returned. |
A GRanges
object if is_GRanges
is
TRUE, otherwise a data.table
object.
The GRanges object contains three additional metadata columns:
id
: IDs (e.g. Ensembl) of each gene promoter.
gene_name
: Gene name.
gene_fpkm
: Expression level in
FPKM.
These columns can be accessed as follows:
granges_object$id
C.A.Kapourani C.A.Kapourani@ed.ac.uk
read_chrom_size
, read_bs_encode_haib
1 2 3 4 5 6 7 | # Obtain the path to the file and then read it
rnaseq_file <- system.file("extdata", "rnaseq.bed", package = "BPRMeth")
rna_data <- read_rna_encode_caltech(rnaseq_file)
# Extract the gene name and gene expression in fpkm
gene_name <- rna_data$gene_name
gene_fpkm <- rna_data$gene_fpkm
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.