给 BioCyc SmartTable 添加属性列
biocyc_add_property_column.Rd
此函数用于给现有的 BioCyc SmartTable 添加一个新的属性列
Usage
biocyc_add_property_column(
session,
table_id,
property_id = c("COMMON-NAME", "REACTION-LIST"),
index = 0
)
Examples
if (FALSE) { # \dontrun{
session <- establish_biocyc_session("your_email@example.com", "your_password")
table_id <- "your_smart_table_id"
result <- biocyc_add_property_column(session, table_id, "common-name", 0)
print(result)
} # }