Delete a phenotype category

category_delete(name, conn)

Arguments

name

phenotype category name in the project

conn

gor connection structure, create it using platform_connect

Examples

if (FALSE) {
api_key <- Sys.getenv("GOR_API_KEY")
project <- Sys.getenv("GOR_PROJECT")
conn <- platform_connect(api_key, project)
name <- "testCat"
category_delete(name, conn)
}