eaglewarrior / frailty

Frailty analysis including FRIGHT age and AFRAID clock

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Age and life expectancy clocks based on machine learning analysis of mouse frailty

See our easy-to-use webapp, where users can upload their data and calculate FRIGHT age and AFRAID score: http://frailtyclocks.sinclairlab.org

This repository contains machine learning-derived models to predict age and lifespan from frailty assesment. The FRIGHT (Frailty Inferred Geriatric Health Timeline) age model is designed to predict chronological age and the AFRAID (Analysis of Frailty and Death) score is designed to predict time to death using frailty the 31 parameter murine frailty index (Whitehead et al. 2014).

The models are packaged as fright_age.sav and afraid_score.sav. The iPython notebook shows how to load these models and use them on the data from our biorxiv preprint (https://www.biorxiv.org/content/10.1101/2019.12.20.884452v1).

Python Environment Requirements

Implementation of the FRIGHT and AFRAID models via the iPython notebook in the repository require Python version 3.6.x and the following packages:

  • jupyter (5.0.0)
  • scikit-learn (0.19.0)
  • pandas (0.20.1)
  • numpy (1.14.0)
  • scipy (1.0.0)
  • seaborn (0.8.1)

Note that the most recent version of Anaconda (2019.07) comes with these packages pre-installed. Currently the iPython script will work with a current Anaconda installation. However, to avoid issues with dependencies and future releases, a conda environment can be used.

conda create -n frailtyEnv -c conda-forge python=3.6 pandas=0.20.1 seaborn=0.8.1 numpy=1.14.0 jupyter=5.0.0 scipy=1.0.0 scikit-learn=0.20.3

You can then activate the new environment on OS/linux using source activate frailtyEnv in the terminal, or on Windows using conda activate frailtyEnv in AnacondaPrompt.

Once you've gotten started with the current version of Python via Anaconda, or with the frailtyEnv Conda environment, download the Git repository to your computer by clicking the 'Clone or Download' button (unzip the folder after it's downloaded), or using a git command (git clone https://github.com/xxx).

Navigate to the downloaded Git repository on your computer in the terminal or AnacondaPrompt and then start a Jupyter notebook (jupyter notebook).

Running the FRIGHT and AFRAID models

The FRIGHT and AFRAID models are packaged as fright_age.sav and afraid_score.sav in the repository. We've also included data from the methionine restriction intervention from the paper to provide an example of how to run the models.

Running the iPython notebook will show how to load the data, load the models and calculate FRIGHT age and AFRAID score on the data.

Note that the column names for your data must match the formatting in the iPython script as listed in the frightVariables and afraidVariables objects. If you're running into trouble running your data through the model it may be because the column names from your data doesn't exactly match the column names that the models are expecting.

About

Frailty analysis including FRIGHT age and AFRAID clock


Languages

Language:Jupyter Notebook 100.0%