https://github.com/richelbilderbeek/ribir
My personal R package
https://github.com/richelbilderbeek/ribir
Last synced: 2 months ago
JSON representation
My personal R package
- Host: GitHub
- URL: https://github.com/richelbilderbeek/ribir
- Owner: richelbilderbeek
- Created: 2016-02-22T15:46:19.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2021-08-17T10:59:07.000Z (over 3 years ago)
- Last Synced: 2024-12-19T15:35:53.520Z (4 months ago)
- Language: R
- Size: 273 KB
- Stars: 1
- Watchers: 3
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - richelbilderbeek/ribir - My personal R package (R)
README
# ribir
Branch|[](https://travis-ci.org)|[](https://www.appveyor.com)|[](https://www.codecov.io)
---|---|---|---
master|[](https://travis-ci.org/richelbilderbeek/ribir)|[](https://ci.appveyor.com/project/richelbilderbeek/ribir)|[](https://codecov.io/github/richelbilderbeek/ribir/branch/master)
develop|[](https://travis-ci.org/richelbilderbeek/ribir)|[](https://ci.appveyor.com/project/richelbilderbeek/ribir)|[](https://codecov.io/github/richelbilderbeek/ribir/branch/develop)This package tries to bring phylogenetics code closer to real English.
For example:
```r
if (class(p) == "phylo") print("p is a phylogeny")
```becomes:
```r
if (is_phylogeny(p)) print("p is a phylogeny")
```This package
* tries to follow all [R-CodingStandard](https://github.com/richelbilderbeek/R-CodingStandard) guidelines
* can be built without warnings and/or notes
* will not trigger any warning by `lintr`## Build status of builds that `ribir` relies on
master|develop|project
---|---|---
[](https://travis-ci.org/rsetienne/PBD) [](https://codecov.io/github/rsetienne/PBD?branch=master) | [](https://travis-ci.org/rsetienne/PBD) [](https://codecov.io/github/rsetienne/PBD?branch=master) | [PBD](https://github.com/rsetienne/PBD)## I want to collaborate
Great! These are your options:
* Add an Issue
* Submit a Pull RequestPull Requests should
* try to follow the [R-CodingStandard](https://github.com/richelbilderbeek/R-CodingStandard) guidelines
* keep the package to be built without warnings and/or notes
* not trigger any warning by `lintr`## I think I have found a bug
Awesome! These are your options:
* Add an Issue, with the test that fails
* Submit a Pull Request, where the test is added to the `tests/testthat` folderPull Requests should
* try to follow the [R-CodingStandard](https://github.com/richelbilderbeek/R-CodingStandard) guidelines
* keep the package to be built without warnings and/or notes
* not trigger any warning by `lintr`## There's something else I want to say
Sure, just add an Issue. Or send an email.