Skip to contents

此函数用于检索 BioCyc SmartTable 的内容

Usage

biocyc_retrieve_smart_table(session, table_id, format = c("json", "tsv"))

biocyc_get_smart_table(session, table_id, format = c("json", "tsv"))

Arguments

session

httr::handle对象,表示已建立的BioCyc会话

table_id

字符串,SmartTable的唯一标识符

format

字符串,返回格式,可选 "json" 或 "tsv",默认 "json"

Value

根据指定格式返回SmartTable的内容

Examples

if (FALSE) { # \dontrun{
session <- establish_biocyc_session("your_email@example.com", "your_password")
table_id <- "your_smart_table_id"
result <- retrieve_smart_table(session, table_id)
print(result)
} # }