Cerebra
A tool for fast and accurate summarizing of variant calling format (VCF) files
Install / Use
/learn @czbiohub-sf/CerebraREADME
cerebra
<a href="https://pypi.org/project/cerebra/"><img alt="PyPI" src="https://badge.fury.io/py/cerebra.svg"></a>
What is cerebra?
This tool allows you to quickly summarize and interpret VCF files.
If you're interested in learning the full complement of genomic variants present in your DNA/RNA samples, a typical workflow might involve sequencing, followed by variant calling with a tool such as GATK HaplotypeCaller, which generates variant calling format (VCF) files.
A VCF file looks like this:
##source=HaplotypeCaller
#CHROM POS ID REF ALT QUAL FILTER INFO FORMAT
chr1 631391 . C T 72.28 . AC=2;AF=1.00;AN=2;DP=2;ExcessHet=3.0103;FS=0.000;MLEAC=1;MLEAF=0.500;MQ=NaN;QD=25.36;SOR=2.303 GT:AD:DP:GQ:PL 1/1:0,2:2:6:84,6,0
Note that only a single VCF record is displayed here. A sequencing run can generate on the order of 10<sup>8</sup> unique VCF records. Only a small portion of these VCF records are likely to be relevant to the researcher. Thus drawing conclusions from VCF files remains a substantial challenge.
cerebra provides a fast and intuitive framework for summarizing VCF records across samples.
It comprises three modules that do the following:
1) remove germline variants from samples of interest
2) count the total number of variants in a given sample, on a per-gene basis
3) report protein variants for each sample
cerebra gets its name from the eponymous X-men character, who had the ability to detect mutant individuals among the general public.
If you're working with tumor data, it might be a good idea to limit the variant search space to only known, and potentially actionable, cancer variants.
Therefore cerebra implements an optional method for restricting to variants also found in the COSMIC database.
This tool was developed for, but is certainly not limited to, single-cell RNA sequencing data.
cerebra is free software available under the MIT license.
What makes cerebra different from traditional VCF parsers?
Python libraries exist (i.e. PyVCF and vcfpy) for extracting information from VCF files. Another is GATK VariantsToTable, which produces a file that looks like this:
CHROM POS ID QUAL AC
1 10 . 50 1
1 20 rs10 99 10
This table contains only genomic (i.e. DNA-level) coordinates.
Often the next questions are: what are the genes associated with these variants, and what are the peptide-level effects of these variants?
cerebra queries a reference genome (.fa) and annotation (.gtf) to match each DNA-level variant with its associated gene, and its probable protein variant.
cerebra produces the following outfile:
$ python
> import json
> f = open(/path/to/cerebra/output.json)
> data = json.load(f)
> print(json.dumps(data, indent=4))
{
"CCN1": {
"A16_B000563": [],
"A1_B001546": [],
"A1_B002531": [
"ENSP00000398736.2:p.(Glu189=)"
],
"A1_B002570": [],
"A2_B002558": [],
"A3_B000561": [
"ENSP00000398736.2:p.(Arg209Trp)",
"ENSP00000398736.2:p.(Ile90Val)"
],
"A3_B000568": [],
"A3_B001544": [
"ENSP00000398736.2:p.(Ala82Thr)"
],
"A3_B002090": [],
"A3_B002531": [
"ENSP00000398736.2:p.(Pro217Ser)"
]
}
}
Here CCN1 is a gene name while A16_B000563, A1_B001546, A1_B002531,... are RNA-seq sample IDs.
cerebra reports variants to every gene in the genome, for every sample in a given experiment.
The ENSP* numbers refer to Ensembl translation IDs -- unique identifiers that correspond to exactly one polypeptide in the Ensembl database.
The strings enclosed in parentheses refer to the amino-acid level variants reported in that particular sample.
For example the string Arg209Trp indicates that position 209 of this particular polypeptide should contain an Arg, but the experimental sample instead contains a Trp.
cerebra adheres to HGVS sequence variant nomenclature in reporting amino-acid variants.
Features
germline-filter
Variant calling is often applied to the study of cancer.
If the research project is centered around a “tumor vs. normal” question, then germline-filter is the proper starting point.
This module removes germline variants that are common between tumor and normal samples, and thus excludes variants unlikely to be pathogenic for the cancer under study.
The user provides a very simple metadata file (see USAGE.md) that indicates which tumor samples correspond to which normal samples.
The output of germline-filter is a set of trimmed-down VCF files, which will be used for the next two steps.
If you do not have access to “normal” samples then proceed directly to count-variants or find-peptide-variants.
count-variants
This module reports the raw variant counts for every gene across every sample. The output is a CSV file that contains counts for each sample versus every gene in the genome. If working with cancer variants, the user has the option of limiting the search space to variants also found in the COSMIC database.
find-peptide-variants
This module reports the protein variations associated with each genomic variant. VCF records are converted to peptide-level variants, and then ENSEMBL protein IDs, in accordance to the HGVS sequence variant nomenclature. The output is a hierarchically ordered text file (CSV or JSON) that reports the Ensemble protein ID and the gene associated with each variant, for each experimental sample. The user again has the option of limiting the search space to variants also found in the COSMIC database. This module also has an option to report the number of variant vs. wildtype reads found at each locus.
Dependencies
cerebra depends on some (fairly standard) packages and libraries.
Before installing, it might be a good idea to make sure all of the requisite packages are installed on your system (note: if installing with Docker you can skip this step).
MacOS Dependencies:
sudo pip install setuptools
brew update
brew install openssl
brew install zlib
Linux Dependencies:
sudo apt-get install autoconf automake make gcc perl zlib1g-dev libbz2-dev liblzma-dev libcurl4-gnutls-dev libssl-dev
As of present cerebra is not installable on Windows.
cerebra depends on the pysam library (or rather, pysam is a dependency-of-a-dependency) and currently this library is only available on Unix-like systems.
Windows solutions like WSL exist for overcoming precisely this challenge, however, cerebra has not been tested on WSL or any other Unix-like subsystem for Windows.
Installation (for users)
There are four different methods available to install cerebra.
Choose one of the following:
With Docker (recommended)
docker pull lincolnharris/cerebra
docker run -it lincolnharris/cerebra
warning: this image will take up ~1Gb of space.
With the python standard library venv module
python3 -m venv cerebra
source cerebra/bin/activate
pip3 install cerebra
With conda
conda create -n cerebra python=3.7
conda activate cerebra
pip3 install cerebra
From PyPi (system-wide installation, NOT RECOMMENDED)
For novice users, it's generally a better idea to install packages within virtual environments.
However, cerebra can be installed system-wide, if you so choose.
pip3 install cerebra
# OR, if you dont have root privileges
pip3 install --user cerebra
Installation (for developers)
Here's how to set up cerebra for local development. After installing the requisite dependencies:
-
Fork the
cerebrarepo on GitHub: https://github.com/czbiohub/cerebra -
Clone your fork locally:
$ git clone https://github.com/your-name/cerebra.git -
Install your local copy into a virtualenv. Using the standard library
venvmod
