diff --git a/README.md b/README.md index 3d9a87e..78a3f25 100644 --- a/README.md +++ b/README.md @@ -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 + + + +[![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) + -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) +
+ +``` r +# Install development version from GitHub +# install.packages("pak") +pak::pak("rnabioco/cpp11bigwig") +``` + +
+ +``` r +library(cpp11bigwig) ```