Skip to contents

use a snapshot of CuratedQueryAtlasR through duckdb

Usage

queryCHCA(con, inst = FALSE)

Arguments

con

connection to duckdb::duckdb(...)

inst

logical(1) if TRUE install httpfs in duckdb

Value

dplyr::tbl for metadata

Examples

if (interactive()) {
con = DBI::dbConnect(duckdb::duckdb())
queryCHCA(con) |> select(sample_) |> head()
DBI::dbDisconnect(con)
}