Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Type: Package
Package: ctxR
Title: Utilities for Interacting with the 'CTX' APIs
Version: 1.1.2.9000
Version: 1.1.3.9000
Authors@R: c(
person(given = "Paul", family = "Kruse", role = c("aut"), comment = c(ORCID = "0000-0001-5516-9717")),
person(given = "Caroline", family = "Ring", email = "[email protected]", role = c("aut"), comment = c(ORCID = "0000-0002-0463-1251")),
Expand Down
6 changes: 6 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# ctxR (development version)

## Minor improvements and fixes

* Removed columns no longer returned from API in `get_fate_by_dtxsid_batch()`.

# ctxR 1.1.3

## Major improvements and fixes
Expand Down
10 changes: 1 addition & 9 deletions R/chemical-APIs-batch.R
Original file line number Diff line number Diff line change
Expand Up @@ -1229,16 +1229,8 @@ get_fate_by_dtxsid_batch <- function(DTXSID = NULL,
indices <- generate_ranges(num_dtxsid)

dt <- data.table::data.table(id = integer(),
description = character(),
minValue = numeric(),
maxValue = numeric(),
valueType = character(),
unit = character(),
dtxsid = character(),
dtxcid = character(),
endpointName = character(),
resultValue = numeric(),
modelSource = character())
dtxcid = character())

for (i in seq_along(indices)){

Expand Down