-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #127 from dlebauer/master
maintainer change
- Loading branch information
Showing
5 changed files
with
135 additions
and
127 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 |
---|---|---|
|
@@ -4,14 +4,16 @@ Description: Species trait data from many different sources, including | |
sequence data from 'NCBI' (<https://www.ncbi.nlm.nih.gov/>), | ||
plant trait data from 'BETYdb', data from 'EOL' 'Traitbank', | ||
'Birdlife' International, and more. | ||
Version: 0.5.0 | ||
Version: 0.5.1 | ||
Authors@R: c( | ||
person("Scott", "Chamberlain", role = c("aut", "cre"), | ||
person("David", "LeBauer", role = c("aut", "cre"), | ||
email = '[email protected]', | ||
comment = c(ORCID = "0000-0001-7228-053X")), | ||
person("Scott", "Chamberlain", role = c("aut"), | ||
email = "[email protected]", | ||
comment = c(ORCID = "0000-0003-1444-9135")), | ||
person("Zachary", "Foster", role = "aut"), | ||
person("Ignasi", "Bartomeus", role = "aut"), | ||
person("David", "LeBauer", role = "aut"), | ||
person("Chris", "Black", role = "aut"), | ||
person("David", "Harris", role = "aut"), | ||
person("Rupert", "Collins", role = "ctb") | ||
|
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
This file was deleted.
Oops, something went wrong.
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,3 +1,117 @@ | ||
[![Project Status: Abandoned](https://www.repostatus.org/badges/latest/abandoned.svg)](https://www.repostatus.org/#abandoned) | ||
traits | ||
======= | ||
|
||
This package has been archived. The former README is now in [README-not](README-not.md). | ||
|
||
|
||
[![cran checks](https://cranchecks.info/badges/worst/traits)](https://cranchecks.info/pkgs/traits) | ||
[![Build Status](https://travis-ci.org/ropensci/traits.svg?branch=master)](https://travis-ci.org/ropensci/traits) | ||
[![codecov](https://codecov.io/gh/ropensci/traits/branch/master/graph/badge.svg)](https://codecov.io/gh/ropensci/traits) | ||
[![rstudio mirror downloads](https://cranlogs.r-pkg.org/badges/traits)](https://github.com/r-hub/cranlogs.app) | ||
[![cran version](https://www.r-pkg.org/badges/version/traits)](https://CRAN.R-project.org/package=traits) | ||
|
||
R client for various sources of species trait data. | ||
|
||
Docs: https://docs.ropensci.org/traits/ | ||
|
||
What is a trait? A "trait" for the purposes of this package is broadly defined as an aspect of a species that can be described or measured, such as physical traits (size, length, height, color), behavioral traits (running speed, etc.), and even variables that make up the niche of the species (e.g., habitat). | ||
|
||
Included in `traits` with the associated function prefix or function name: | ||
|
||
<table> | ||
<colgroup> | ||
<col style="text-align:left;"/> | ||
<col style="text-align:left;"/> | ||
<col style="text-align:left;"/> | ||
<col style="text-align:left;"/> | ||
</colgroup> | ||
|
||
<thead> | ||
<tr> | ||
<th style="text-align:left;">Souce</th> | ||
<th style="text-align:left;">Function prefix</th> | ||
<th style="text-align:left;">Link</th> | ||
</tr> | ||
</thead> | ||
|
||
<tbody> | ||
<tr> | ||
<td style="text-align:left;">BETYdb</td> | ||
<td style="text-align:left;"><code>betydb_</code></td> | ||
<td style="text-align:left;">https://www.betydb.org/</td> | ||
</tr> | ||
<tr> | ||
<td style="text-align:left;">NCBI</td> | ||
<td style="text-align:left;"><code>ncbi_</code></td> | ||
<td style="text-align:left;">https://www.ncbi.nlm.nih.gov/</td> | ||
</tr> | ||
<tr> | ||
<td style="text-align:left;">Encylopedia of Life</td> | ||
<td style="text-align:left;"><code>traitbank_</code></td> | ||
<td style="text-align:left;">https://github.com/EOL/eol_website/blob/master/doc/api.md</td> | ||
</tr> | ||
<tr> | ||
<td style="text-align:left;">Birdlife International</td> | ||
<td style="text-align:left;"><code>birdlife_</code></td> | ||
<td style="text-align:left;">https://www.birdlife.org/</td> | ||
</tr> | ||
<tr> | ||
<td style="text-align:left;">LEDA Traitbase</td> | ||
<td style="text-align:left;"><code>leda_</code></td> | ||
<td style="text-align:left;"></td> | ||
</tr> | ||
<tr> | ||
<td style="text-align:left;">Zanne et al. plant dataset</td> | ||
<td style="text-align:left;"><code>tr_zanne</code></td> | ||
<td style="text-align:left;"></td> | ||
</tr> | ||
<tr> | ||
<td style="text-align:left;">Amniote life history dataset</td> | ||
<td style="text-align:left;"><code>tr_ernest</code></td> | ||
<td style="text-align:left;"></td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
|
||
|
||
Talk to us on the issues page (https://github.com/ropensci/traits/issues) if you know of a source of traits data with an API, and we'll see about including it. | ||
|
||
## Installation | ||
|
||
Stable CRAN version | ||
|
||
|
||
```r | ||
install.packages("traits") | ||
``` | ||
|
||
Or development version from GitHub | ||
|
||
|
||
```r | ||
remotes::install_github("ropensci/traits") | ||
``` | ||
|
||
|
||
```r | ||
library("traits") | ||
library("dplyr") | ||
``` | ||
|
||
## Contributors | ||
|
||
* [Scott Chamberlain](https://github.com/sckott) | ||
* [Zachary Foster](https://github.com/zachary-foster) | ||
* [Ignasi Bartomeus](https://github.com/ibartomeus) | ||
* [David LeBauer](https://github.com/dlebauer) | ||
* [David Harris](https://github.com/davharris) | ||
* [Chris Black](https://github.com/infotroph) | ||
* [Rupert Collins](https://github.com/boopsboops) | ||
|
||
## Meta | ||
|
||
* Please [report any issues or bugs](https://github.com/ropensci/traits/issues). | ||
* License: MIT | ||
* Get citation information for `traits` in R doing `citation(package = 'traits')` | ||
* Please note that this package is released with a [Contributor Code of Conduct](https://ropensci.org/code-of-conduct/). By contributing to this project, you agree to abide by its terms. | ||
|
||
[![ropensci_footer](https://ropensci.org/public_images/github_footer.png)](https://ropensci.org) |
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 |
---|---|---|
|
@@ -44,7 +44,9 @@ | |
{ | ||
"@type": "Person", | ||
"givenName": "David", | ||
"familyName": "LeBauer" | ||
"familyName": "LeBauer", | ||
"email": "[email protected]", | ||
"@id": "https://orcid.org/0000-0001-7228-053X" | ||
}, | ||
{ | ||
"@type": "Person", | ||
|
@@ -67,10 +69,10 @@ | |
"maintainer": [ | ||
{ | ||
"@type": "Person", | ||
"givenName": "Scott", | ||
"familyName": "Chamberlain", | ||
"email": "myrmecocystus@gmail.com", | ||
"@id": "https://orcid.org/0000-0003-1444-9135" | ||
"givenName": "David", | ||
"familyName": "LeBauer", | ||
"email": "dlebauer@gmail.com", | ||
"@id": "https://orcid.org/0000-0001-7228-053X" | ||
} | ||
], | ||
"softwareSuggestions": [ | ||
|