read_rna_encode_caltech: Read ENCODE Caltech bed formatted RNA-Seq file

Description Usage Arguments Value Author(s) See Also Examples

Description

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.

Usage

1
read_rna_encode_caltech(file, chr_discarded = NULL, is_GRanges = TRUE)

Arguments

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.

Value

A GRanges object if is_GRanges is TRUE, otherwise a data.table object.

The GRanges object contains four additional metadata columns:

These columns can be accessed as follows: granges_object$ensembl_id

Author(s)

C.A.Kapourani C.A.Kapourani@ed.ac.uk

See Also

read_chrom_size, read_bs_encode_haib

Examples

1
2
3
# Get the location of the RNA-Seq file
rnaseq_file <- system.file("extdata", "rnaseq.bed", package = "processHTS")
rna_data <- read_rna_encode_caltech(file=rnaseq_file, is_GRanges=FALSE)

andreaskapou/processHTS documentation built on May 12, 2019, 3:33 a.m.