ctrGenerateQueries(
searchPhrase = "antibody AND covid",
recruitment = "ongoing")
urls <- ctrGenerateQueries(
intervention = "antibody",
phase = "phase 3",
population = "P+A",
startAfter = "12/31/2020",
completedBefore = "2025-01-01")
# open queries in register web interface
sapply(urls, utils::browseURL)
# For CTIS to accept such a search URL and show results,
# consider the extension, script and documentation at
# https://rfhb.github.io/ctrdata/index.html#
# id_2-script-to-automatically-copy-users-query-from-web-browser
# find potential research platform and platform trials
urls <- ctrGenerateQueries(
searchPhrase = paste0(
"basket OR platform OR umbrella OR master protocol OR ",
"multiarm OR multistage OR subprotocol OR substudy OR ",
"multi-arm OR multi-stage OR sub-protocol OR sub-study"),
phase = "phase 3",
startAfter = "01/31/2010",
countries = c("DE", "US", "United Kingdom"))
if (FALSE) {
# count trials found
lapply(urls, ctrLoadQueryIntoDb, only.count = TRUE)
# load queries into database collection
dbc <- nodbi::src_sqlite(collection = "my_collection")
sapply(urls, ctrLoadQueryIntoDb, con = dbc, euctrprotocolsall = FALSE)
}
Run the code above in your browser using DataLab