Get a specific phenotype in the current project.
get_phenotype(name, conn)
Unique (lowercase) phenotype name in the project
gor connection structure, create it using platform_connect
a list with the phenotype object
if (FALSE) {
api_key <- Sys.getenv("GOR_API_KEY")
project <- Sys.getenv("GOR_PROJECT")
conn <- platform_connect(api_key, project)
name <- "height"
phenotype <- get_phenotype(name, conn)
}