This project contains MATLAB/R codes for the decentralized learning framework of meta-survival-analysis for development of robust prognostic models as published in the following papers:
Yi Cui, Bailiang Li, and Ruijiang Li. "Decentralized Learning Framework of Meta-Survival Analysis for Developing Robust Prognostic Signatures." JCO Clinical Cancer Informatics 1 (2017): 1-13.
"demo.m" contains a demo matlab code for leave-one-dataset-out testing of the proposed method for 9 ovarian cancer datasets. Before running this code, please run "save2matlab.R" in the "R codes" folder. This will do all the required preprocessing steps before model training which include:
-
collapsing multiple columns corresponding to the same gene by selecting the column with the maximum mean
-
keeping common genes across different datasets
-
transforming gene expression to normalized percentile ranks
-
computing the meta-p-values for each feature
The net result of running "save2matlab.R" is to save the processed datasets into a matlab file "surv_os_ovary_rank_ci.mat" which will be later used by "demo.m".
The workhorse funciton of our method is "cvMeta.m" which performance cross-validation to select the optimal regularization and return the corresponding estimated coefficients. This function relies on the open source optimization tool L1General by Mark Schmidt which can be freely downloaded at: http://www.cs.ubc.ca/~schmidtm/Software/minFunc.html. The sources codes for L1General is also included here for convenience. The L1General folder as well as its subfolders needs to be added to the search path in matlab.