-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
22f461d
commit 1f43990
Showing
1 changed file
with
21 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,27 @@ | ||
`bigwrig`: access bigWig files with R | ||
================ | ||
|
||
`bigwrig` provides read access to bigWig files in R using `libBigWig` from @dpryan79. Data is read into an R `data_frame`. | ||
|
||
``` r | ||
library(bigwrig) | ||
# cpp11bigwig | ||
|
||
<!-- badges: start --> | ||
|
||
[![R-CMD-check](https://github.com/rnabioco/RcppLibBigWig/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/rnabioco/RcppLibBigWig/actions/workflows/R-CMD-check.yaml) | ||
<!-- badges: end --> | ||
|
||
url <- '' | ||
cpp11bigwig provides read access to bigWig files in R using `libBigWig` | ||
from @dpryan79. Data is read into an R `data.frame`. | ||
|
||
read_bigwig(url) | ||
## Installation | ||
|
||
read_bigwig_genome(url) | ||
<div class=".pkgdown-devel"> | ||
|
||
``` r | ||
# Install development version from GitHub | ||
# install.packages("pak") | ||
pak::pak("rnabioco/cpp11bigwig") | ||
``` | ||
|
||
</div> | ||
|
||
``` r | ||
library(cpp11bigwig) | ||
``` |