forked from vantage6/v6-kaplan-meier-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalgorithm_store.json
67 lines (67 loc) · 2 KB
/
algorithm_store.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "Kaplan-Meier on OMOP",
"partitioning": "horizontal",
"vantage6_version": "4.5",
"functions": [
{
"name": "kaplan_meier_central",
"databases": [
{
"name": "OMOP CDM Database",
"description": "Database to use for the Kaplan-Meier curve"
}
],
"ui_visualizations": [
{
"name": "Survival time table",
"schema": {
"location": [],
"columns": []
},
"description": "Surival time table for the cohort.",
"type": "table"
},
{
"name": "Kaplan-Meier curve",
"properties": {
"x": "SURV_INT",
"y": "survival_cdf"
},
"description": "Kaplan-Meier curve for the cohort.",
"type": "line"
}
],
"arguments": [
{
"type": "integer",
"description": "Task ID of the task that created the cohort in the database.",
"name": "cohort_task_id"
},
{
"type": "string",
"description": "The cohort ID to use for the Kaplan-Meier curve.",
"name": "shared_cohort_id"
},
{
"type": "string",
"description": "The column name of the time variable.",
"name": "time_column_name"
},
{
"type": "string",
"description": "The column name of the censor.",
"name": "censor_column_name"
},
{
"type": "organization_list",
"description": "List of organizations to include in the analysis.",
"name": "organizations_to_include"
}
],
"description": "Compute a Kaplan-Meier curves for a cohort of patients.",
"type": "central"
}
],
"description": "Compute a Kaplan-Meier curves.",
"image": "harbor2.vantage6.ai/blueberry/kaplan-meier"
}