0
|
1 # lifelines_tool - lifelines statistical package wrapped as a Galaxy tool.
|
|
2
|
|
3 ## Galaxy tool to run failure time models using lifelines
|
|
4
|
|
5 ## Install to your Galaxy server from the toolshed - search for lifelines_tool owned by fubar2
|
|
6
|
|
7 ### More at https://lazarus.name/demo/
|
|
8
|
|
9 #### Using the Rossi sample input data from lifelines, tool outputs include:
|
|
10
|
|
11 ![KM plot sample](lifelines_rossi_km.png)
|
|
12 and
|
|
13 ![KM plot sample](lifelines_rossi_schoenfeld.png)
|
|
14 and
|
|
15 ![KM plot sample](lifelines_report.png)
|
|
16
|
|
17
|
|
18 Runs Kaplan-Meier and generates a plot. Optional grouping variable.
|
|
19 If 2 groups, runs a log-rank test for difference.
|
|
20 Plots show confidence intervals
|
|
21
|
|
22 If a list of covariate column names is provided, these are used in a
|
|
23 Cox Proportional Hazards model with tests for proportionality.
|
|
24
|
|
25 Should work with any tabular data with the required columns - time and status for observations.
|
|
26
|
|
27 Issues to https://github.com/fubar2/lifelines_tool please.
|
|
28 Autogenerated so pull requests are possibly meaningless but regeneration of a new version is easy so please tell me what is needed.
|
|
29
|
|
30 ## Tool made with the Galaxy ToolFactory: https://github.com/fubar2/galaxy_tf_overlay
|
|
31 The current release includes this and a generic tabular version, and a java .jar wrapper in a history where the generating
|
|
32 ToolFactory form can be recreated using the redo button. Editing the tool id will make a new tool, so all other edits to parameters can be
|
|
33 made and the new tool generated without destroying the original sample.
|
|
34
|
|
35
|