Skip to content

Commit 9095af0

Browse files
Merge pull request #82 from USEPA/81-additional-columns-returned-by-get_fate_by_dtxsid_batch
Removed columns no longer returned by the API.
2 parents 6971d97 + 551dc13 commit 9095af0

File tree

3 files changed

+8
-10
lines changed

3 files changed

+8
-10
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Type: Package
22
Package: ctxR
33
Title: Utilities for Interacting with the 'CTX' APIs
4-
Version: 1.1.2.9000
4+
Version: 1.1.3.9000
55
Authors@R: c(
66
person(given = "Paul", family = "Kruse", role = c("aut"), comment = c(ORCID = "0000-0001-5516-9717")),
77
person(given = "Caroline", family = "Ring", email = "ring.caroline@epa.gov", role = c("aut"), comment = c(ORCID = "0000-0002-0463-1251")),

NEWS.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# ctxR (development version)
2+
3+
## Minor improvements and fixes
4+
5+
* Removed columns no longer returned from API in `get_fate_by_dtxsid_batch()`.
6+
17
# ctxR 1.1.3
28

39
## Major improvements and fixes

R/chemical-APIs-batch.R

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1229,16 +1229,8 @@ get_fate_by_dtxsid_batch <- function(DTXSID = NULL,
12291229
indices <- generate_ranges(num_dtxsid)
12301230

12311231
dt <- data.table::data.table(id = integer(),
1232-
description = character(),
1233-
minValue = numeric(),
1234-
maxValue = numeric(),
1235-
valueType = character(),
1236-
unit = character(),
12371232
dtxsid = character(),
1238-
dtxcid = character(),
1239-
endpointName = character(),
1240-
resultValue = numeric(),
1241-
modelSource = character())
1233+
dtxcid = character())
12421234

12431235
for (i in seq_along(indices)){
12441236

0 commit comments

Comments
 (0)