diff --git a/DESCRIPTION b/DESCRIPTION index 926ddab..5ffa2ef 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -8,7 +8,7 @@ Authors@R: c( person(given = "Madison", family = "Feshuk", role = c("ctb","cre"), email = "feshuk.madison@epa.gov", 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 . diff --git a/vignettes/ctxR_03_Bioactivity.Rmd b/vignettes/ctxR_03_Bioactivity.Rmd index ea7b07f..e0ee73d 100644 --- a/vignettes/ctxR_03_Bioactivity.Rmd +++ b/vignettes/ctxR_03_Bioactivity.Rmd @@ -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") ```