Skip to content

NCBI-Hackathons/Complex_Phenogeno

Repository files navigation

The Complex Pheno/Geno workflow

Dependencies
  • Python 3.6
  • Plink 1.9
  • Entrez Programming Utilities (E-utilities) API

A. Installing Complex Pheno/Geno

  1. Download Complex PhenoGeno from this repository to your computer.

  2. (Optional, recommended) Create and open a new virtual environment within the Complex PhenoGeno directory. See here on more details on virtual environments.

  3. Open Terminal, cd to the newly downladed Complex PhenoGeno directory and run:

pip3 install -r requirements

This will install all the necessary python modules. It is advised that you create an environment dedicated to Complex Pheno/Geno and you run everything from it.

  1. Open the file "Settings.txt" and change the e-mail to the email you used for registering to E-utilities.

  2. Install plink.

B. Preparing the datasets

Downloading Complex PhenoGeno comes with some dummy data files to make sure everything works smoothly before you run your own data. These dummy data will be used if there is no "files" folder (see below) and you indicate so during the session (you will be asked). If you choose to use the dummy data, you don't need to do any of the steps described below.

Complex Pheno/Geno requires your data to be formated in a specific way. These expectations are nothing more than careful data preprocessing, a good practice for any analysis. Please follow the instructions bellow when preparing your data:

Create a new folder called "files" in the same folder where you dowloaded Complex PhenoGeno. Below are the expected data and their expected formats (you can inspect the dummy data included with the package for an example):

i. VCFs of the patient genotypes in gz compressed format. One vcf per chromosome or any type of fragmentation of the data that suits your needs. Multiple files are expected, so please do not include all your genotype data in one VCF file. This is necessary to speed up this pre-processing step by parallelizing the process. Please consult VCFtools on how to manipulate and split these files. The files need to be gz complessed (i.e. .vcf.gz).

ii. CSVs of the clinical results. The first column has the unique identifiers of each individual in the cohort (same as those in the VCF files). The remainder columns are the different clinical tests performed as well as the endogenour risk factor that will be used as regressor (see Models_clin.py below). Missing values are not allowed. Both continuous and integer values are allowed, categorical values should be represented as dummy variables in their own columns (eg if three individuals, a, b, and c, each belong to categories "A", "B", and "C" respectively, there should be three columns, A, B, C, with values "A":[1,0,0] , "B":[0,1,0] , and "C":[0,0,1]. For more details on dummy variables go here)

iii. CSVs of the behavioral data available for the cohort. Instructions as in (ii).

Only data in the folder files/ will be considered during analysis.

C. Running Complex Pheno/Geno

Once everything is set up, go to Terminal, inside the ComplexPhenoGeno folder, and type:

python3 ComplexPhenoGeno.py

Flow diagram

This will start a guided interactive session that will take you through the steps of the algorithm. Depending on the size of your files, you should expect a minimum of one hour for the entire workflow (approximately 2,000 individuals in cohort). Below are the steps of the Complex Pheno/Geno pipeline:

  1. rsIDs.py You are asked to enter an rsID that you know is strongly causally related to the Complex Disease of interest. Using E-utilities and feedback from PhenVar, this first step identifies other rsIDs that are co-cited with your query rsID in the literarure. Make sure the results' visualization offered by PhenVar in a new browser window (optional) make sense. You are offered the ability to filter the rsIDs by the number of publications supporting their co-citation with the query rsID. The folder Outputs/ is created, and the collected rsIDs are saved in Outputs/rsids.txt.

  2. Genotypes.py The cohort genotypes (in compressed VCF format, as described above) are filtered by the list of rsIDs, created in step 1. This may take a while for large VCF files of big cohorts. You will be given a time estimate. The result of this step is saved as Outputs/Genotypes.csv, where each row is an individual, and each column is an rsID from the list determined in the previous step. The minor allele presence for each individual and each locus is encoded: 0 if not present, 1 if present heterozygous, and 2 if present homozygous.

  3. Models_clin.py Clinical data are modeled against a well-established endogenous risk factor for the disease of interest (e.g. age is a risk factor for age-related macular degeneration or fertility, and a person's BMI is a risk factor for diabetes) and each individual's deviation from the expected model (either its residual or observed/expected ratio for the risk factor used) is calculated. In this way, rather that relying on binary diagnoses, Complex Pheno/Geno uses the entire spectrum of clinical phenotypes to measure how dissimilar each individual's clinical profile is from the expected in a continuous scale, based on the specific risk factor considered. It is important to note that this approach relies on having a big number of control individuals, and a good representation of the range of the clinical measurements and risk factor values.

Releases

No releases published

Packages

No packages published

Languages