Skip to content

Commit

Permalink
bump version to v0.4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Zilong-Li committed Apr 8, 2024
1 parent 26dee60 commit e4499fd
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 3 deletions.
1 change: 1 addition & 0 deletions .covrignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
src/vcfpp.h
src/htslib-1.19.1/
src/htslib-1.18/
5 changes: 5 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# vcfppR 0.4.5

* add `vcfcomp` function
* fix memory leaks and pass ASAN check

# vcfppR 0.4.0

* add `setid` option for vcftable
Expand Down
8 changes: 7 additions & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,13 @@ knitr::opts_chunk$set(
[![codecov](https://codecov.io/github/Zilong-Li/vcfppR/graph/badge.svg?token=QE1UFVRH98)](https://app.codecov.io/github/Zilong-Li/vcfppR)
<!-- badges: end -->

The vcfppR package implements various useful functions for rapidly manipulating VCF/BCF files in R using the C++ API of [vcfpp.h](https://github.com/Zilong-Li/vcfpp).
The vcfppR package implements various powerful functions for fast genomics analyses with VCF/BCF files using the C++ API of [vcfpp.h](https://github.com/Zilong-Li/vcfpp).

- Load/save content of VCF/BCF into R objects with highly customizable options
- Visualize and chracterize variants
- Compare two VCF/BCF files and report various statistics
- Streaming read/write VCF/BCF files with fine control of everything
- [Paper](https://doi.org/10.1093/bioinformatics/btae049) shows vcfppR is 20x faster than `vcfR`. Also, much faster than `cyvcf2`

## Installation

Expand Down
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,18 @@ status](https://www.r-pkg.org/badges/version/vcfppR)](https://CRAN.R-project.org
[![codecov](https://codecov.io/github/Zilong-Li/vcfppR/graph/badge.svg?token=QE1UFVRH98)](https://app.codecov.io/github/Zilong-Li/vcfppR)
<!-- badges: end -->

The vcfppR package implements various useful functions for rapidly
manipulating VCF/BCF files in R using the C++ API of
The vcfppR package implements various powerful functions for fast
genomics analyses with VCF/BCF files using the C++ API of
[vcfpp.h](https://github.com/Zilong-Li/vcfpp).

- Load/save content of VCF/BCF into R objects with highly customizable
options
- Visualize and chracterize variants
- Compare two VCF/BCF files and report various statistics
- Streaming read/write VCF/BCF files with fine control of everything
- [Paper](https://doi.org/10.1093/bioinformatics/btae049) shows vcfppR
is 20x faster than `vcfR`. Also, much faster than `cyvcf2`

## Installation

``` r
Expand Down
1 change: 1 addition & 0 deletions codecov.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# sample regex patterns
ignore:
- "src/vcfpp.h" # this is coverged seperately in its own repo
- "src/htslib-1.19.1" # ignore folders and all its contents
- "src/htslib-1.18" # ignore folders and all its contents

0 comments on commit e4499fd

Please sign in to comment.