Package: SQLDataFrame
Title: Representation of SQL database in DataFrame metaphor
Version: 1.17.0
Authors@R: c(
    person("Qian", "Liu", email = "qian.liu@roswellpark.org", role = c("aut", "cre"),
    comment = c(ORCID = "0000-0003-1456-5099")),
    person("Martin", "Morgan", email = "martin.morgan@roswellpark.org", role = "aut"))
Description: SQLDataFrame is developed to lazily represent and
    efficiently analyze SQL-based tables in _R_. SQLDataFrame supports
    common and familiar 'DataFrame' operations such as '[' subsetting,
    rbind, cbind, etc.. The internal implementation is based on the
    widely adopted dplyr grammar and SQL commands. In-memory datasets
    or plain text files (.txt, .csv, etc.) could also be easily
    converted into SQLDataFrames objects (which generates a new
    database on-disk).
biocViews: Infrastructure, DataRepresentation
URL: https://github.com/Bioconductor/SQLDataFrame
BugReports: https://github.com/Bioconductor/SQLDataFrame/issues  
Depends:
    R (>= 3.6),
    dplyr (>= 0.8.0.1),
    dbplyr (>= 1.4.0),
    S4Vectors (>= 0.33.3),
Imports:
    DBI,
    lazyeval,
    methods,
    tools,
    stats,
    BiocGenerics,
    RSQLite,
    tibble
License: GPL-3
Encoding: UTF-8
RoxygenNote: 7.2.3
Suggests:
    RMySQL,
    bigrquery,
    testthat,
    knitr,
    rmarkdown,
    DelayedArray,
    GenomicRanges
VignetteBuilder: knitr
