pubtatordb (version 0.1.3)

pt_columns: List the column names for a table in the PubTator sqlite database

Description

List the column names for a table in the PubTator sqlite database

Usage

pt_columns(db_con, table_name)

Arguments

db_con

A connection to the PubTator sqlite database, as created via pubator_connector.

table_name

The name of the table of interest. Valid tables can be found using pt_tables. Capitalization does not matter.

Value

A character vector of the column names for a given table.

Examples

Run this code
# NOT RUN {
db_con <- pt_connector(pt_path)
pubtator_columns(db_con, "gene")
# }

Run the code above in your browser using DataCamp Workspace