Skip to content

Projects

Projects group related runs, cohorts, and publications under a named research effort (e.g. "Evolution project", "BRCA/HRD project").

Fields

Field Description
Code Short unique slug used in URLs and the SDK (e.g. evolution)
Name Human-readable project name
Description One-line summary
Owner User who created the project
README Markdown notes — edit via the detail page

Creating a project

Open Projects → + New. Code and Name are required. Code must be globally unique and URL-safe (lowercase, hyphens OK).

Linking entities

On the project detail page, click Edit to enable edits, then use the Linked entities section to connect publications, cohorts, and runs.

SDK

# R
projects <- list_projects(client)
proj     <- get_project(client, code = "evolution")
# Python
projects = client.list_projects()
proj     = client.get_project("evolution")