-
Notifications
You must be signed in to change notification settings - Fork 2
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 #8 from pepijn-devries/work-in-progress
Release to CRAN v0.20
- Loading branch information
Showing
22 changed files
with
1,239 additions
and
290 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,12 +1,13 @@ | ||
Package: ECOTOXr | ||
Type: Package | ||
Title: Download and Extract Data from US EPA's ECOTOX Database | ||
Version: 0.1.1 | ||
Date: 2021-10-04 | ||
Version: 0.2.0 | ||
Date: 2022-11-17 | ||
Authors@R: c(person("Pepijn", "de Vries", role = c("aut", "cre", "dtc"), | ||
email = "[email protected]")) | ||
email = "[email protected]", | ||
comment = list(ORCID = "0000-0002-7961-6646"))) | ||
Author: | ||
Pepijn de Vries [aut, cre, dtc] | ||
Pepijn de Vries [aut, cre, dtc] (0000-0002-7961-6646) | ||
Maintainer: Pepijn de Vries <[email protected]> | ||
Description: The US EPA ECOTOX database is a freely available database | ||
with a treasure of aquatic and terrestrial ecotoxicological data. | ||
|
@@ -19,13 +20,22 @@ Depends: | |
RSQLite | ||
Imports: | ||
crayon, | ||
dbplyr, | ||
dplyr, | ||
httr, | ||
purrr, | ||
rappdirs, | ||
readr, | ||
rlang, | ||
rvest, | ||
stringr, | ||
tibble, | ||
tidyr, | ||
tidyselect, | ||
utils | ||
Suggests: | ||
Suggests: | ||
DBI, | ||
standartox, | ||
testthat (>= 3.0.0), | ||
webchem | ||
URL: <https://github.com/pepijn-devries/ECOTOXr> | ||
|
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,18 +1,45 @@ | ||
# Generated by roxygen2: do not edit by hand | ||
|
||
export(build_ecotox_sqlite) | ||
export(check_ecotox_availability) | ||
export(cite_ecotox) | ||
export(dbConnectEcotox) | ||
export(dbDisconnectEcotox) | ||
export(download_ecotox_data) | ||
export(get_ecotox_info) | ||
export(get_ecotox_path) | ||
export(get_ecotox_sqlite_file) | ||
export(list_ecotox_fields) | ||
export(search_ecotox) | ||
export(search_query_ecotox) | ||
importFrom(RSQLite,dbConnect) | ||
importFrom(RSQLite,dbDisconnect) | ||
importFrom(RSQLite,dbExecute) | ||
importFrom(RSQLite,dbWriteTable) | ||
# Generated by roxygen2: do not edit by hand | ||
|
||
S3method("[",cas) | ||
S3method("[<-",cas) | ||
S3method("[[",cas) | ||
S3method("[[<-",cas) | ||
S3method(as.character,cas) | ||
S3method(as.data.frame,cas) | ||
S3method(as.double,cas) | ||
S3method(as.integer,cas) | ||
S3method(as.list,cas) | ||
S3method(c,cas) | ||
S3method(format,cas) | ||
S3method(print,cas) | ||
export("%>%") | ||
export(as.cas) | ||
export(build_ecotox_sqlite) | ||
export(cas) | ||
export(check_ecotox_availability) | ||
export(cite_ecotox) | ||
export(dbConnectEcotox) | ||
export(dbDisconnectEcotox) | ||
export(download_ecotox_data) | ||
export(get_ecotox_info) | ||
export(get_ecotox_path) | ||
export(get_ecotox_sqlite_file) | ||
export(get_ecotox_url) | ||
export(is.cas) | ||
export(list_ecotox_fields) | ||
export(search_ecotox) | ||
export(search_ecotox_lazy) | ||
export(search_query_ecotox) | ||
export(show.cas) | ||
importFrom(RSQLite,dbConnect) | ||
importFrom(RSQLite,dbDisconnect) | ||
importFrom(RSQLite,dbExecute) | ||
importFrom(RSQLite,dbWriteTable) | ||
importFrom(dplyr,"%>%") | ||
importFrom(dplyr,collect) | ||
importFrom(dplyr,inner_join) | ||
importFrom(dplyr,left_join) | ||
importFrom(dplyr,select) | ||
importFrom(dplyr,sql) | ||
importFrom(dplyr,tbl) | ||
importFrom(rlang,":=") |
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 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
Oops, something went wrong.