Skip to contents

此函数用于给现有的 BioCyc SmartTable 添加一个新的属性列

Usage

biocyc_add_property_column(
  session,
  table_id,
  property_id = c("COMMON-NAME", "REACTION-LIST"),
  index = 0
)

Arguments

session

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

table_id

字符串,SmartTable的唯一标识符

property_id

字符串,要添加的属性名称

index

整数,基于哪一列添加新的转换列,从0开始计数(默认0)

Value

布尔值,表示操作是否成功

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)
} # }