Nothing
test_that("test sharedTraitStudiesQuery works", {
skip_on_cran()
result <- sharedTraitStudiesQuery(
diseaseIds = c("EFO_0004587"),
size = 2,
index = 0
)
expect_true(is.null(result) || tibble::is_tibble(result))
if (!is.null(result) && nrow(result) > 0) {
expect_true(all(c(
"id", "traitFromSource", "projectId",
"publicationFirstAuthor", "publicationDate",
"publicationJournal", "nSamples", "cohorts",
"ldPopulationStructure", "pubmedId"
) %in% colnames(result)))
}
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.