readGFBed: Read genomic feature bed file

Description Usage Arguments Value Author(s) Examples

View source: R/BorderAnalysisMiscFun.R

Description

Function to import a genomic feature bed file. The bed file must contain coordinates of the genomic features. It can be for instance ChIP-seq peak coordinates or functional element coordinates.

Usage

1
readGFBed(GFBedFile, seqInfoChr)

Arguments

GFBedFile

The name of the bed file. If it does not contain an absolute path, the file name is relative to the current working directory.

seqInfoChr

A Seqinfo object for the corresponding genome.

Value

A GRanges object is returned.

Author(s)

Raphael Mourad

Examples

1
2
3
4
bed_file <- system.file("inst/extdata", "BEAF32_Kc167_CS_dm3.bed", package="HiCfeat")
data(dataExample)
seqInfoChr=dataExample$SeqInfoChr
GFBed=readGFBed(bed_file,seqInfoChr)

HiCfeat documentation built on May 2, 2019, 2:11 a.m.