Thanks to visit codestin.com
Credit goes to github.com

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
Expand Up @@ -8,7 +8,7 @@ Authors@R: c(
person(given = "Madison", family = "Feshuk", role = c("ctb","cre"), email = "[email protected]", comment = c(ORCID = "0000-0002-1390-6405")),
person(given = "Brianna",family = "Dirks", role = "ctb", comment = c(ORCID = "0009-0003-3691-1543")),
person(given = "Carter", family = "Thunes", role = "ctb"),
person(given = "Jason", family = "Brown", role = "ctb", c(ORCID = "0009-0000-2294-641X")))
person(given = "Jason", family = "Brown", role = "ctb", comment = c(ORCID = "0009-0000-2294-641X")))
Description: Access chemical, hazard, bioactivity, and exposure data from the
Computational Toxicology and Exposure ('CTX') APIs
<https://www.epa.gov/comptox-tools/computational-toxicology-and-exposure-apis>.
Expand Down
4 changes: 3 additions & 1 deletion vignettes/ctxR_03_Bioactivity.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,9 @@ assays <- data.table::rbindlist(assays)
```

```{r, echo=FALSE}
knitr::kable(head(assays))%>%
# invitrodb v4.2 data on Bioactivity API returns bad PubMed links so drop citations column
assays$citations <- NULL
knitr::kable(head(assays))%>%
kableExtra::kable_styling("striped") %>%
kableExtra::scroll_box(width = "100%", height="400px")
```
Expand Down