Skip to content

deepSimDEF offers single- and multi-channel deep learning models for functional analysis of genes using Gene Ontology annotations of gene products (RNAs, proteins, etc).

License

ahmadpgh/deepSimDEF

Repository files navigation

Language Stars Repo Size


deepSimDEF: deep neural embeddings of gene products and Gene Ontology terms for functional analysis of genes



Motivation

The Gene Ontology (GO) is the de facto standard for the functional description of gene products, providing a consistent, information-rich terminology applicable across species and information repositories. Due to the fast increase of biomedical data annotated by GO vocabulary, an intelligent method for functional similarities of genes based on their GO annotations is of the greatest importance. This similarity measurement is highly critical since compared with sequence and structure similarity, the functional similarity is more informative for the understanding of the biological roles and cellular functions of genes. Many important applications in computational molecular biology such as gene clustering, protein function prediction, protein interaction evaluation and disease gene prioritization require functional similarity. Also, to expedite the selection of candidate genes for gene-disease research, genetic association studies, biomarker, and drug target selection, biomedical search engines can retrieve genes based on their functions from proteome databases.

Problem

Existing GO-based gene functional similarity measures combine semantic similarity scores of single GO-term pairs to estimate genes' functional similarity. However, these measures are strictly dependent on the ever-changing topological structure of GO; they are very slow and task-dependent leaving no room for generalization. Our previous model, simDEF, avoided these drawbacks by taking into account the significant advantage of distributed (vector-based) representation of GO terms using their textual definitions. simDEF, however, suffers from some unaddressed yet important shortcomings, many of which are still shared with the previous models. Manual feature engineering, relatively large dimensions of distributed GO-term vectors, the use of traditional metrics to aggregate GO-term similarity scores prior to computation of genes functional similarity, and, resorting to separate evaluation of each sub-ontology in GO (biological process or BP, cellular component or CC, or molecular function or MF) in a biological task, are some of these inadequacies.

Contribution

In this project, by relying on the expressive power of deep neural networks, we introduce and develop deepSimDEF, an efficient method for measuring functional similarity of proteins and other gene products (e.g. microRNA and mRNA) using - natural language definitions of - GO terms annotating those genes. For this purpose, deepSimDEF neural network(s) (single-channel, and multi-channel depicted in Fig. 1) learn low-dimensional vectors of GO terms and gene products and then learn how to calculate the functional similarity of protein pairs using these learned vectors (aka embeddings). Relative to existing similarity measures, validation of deepSimDEF on yeast and human reference datasets yielded increases in protein-protein interactions (PPIs) predictability by >4.5% and ~5%, respectively; a correlation improvement of ~9% and ~6% with yeast and human gene co-expression values; and improved correlation with sequence homology by up to 6% for both organisms studied.




Figure 1: deepSimDEF multi-channel network architecture.

For a picturial view of a single-channel deepSimDEF see: deepSimDEF_single_channel_BP

Datasets for deepSimDEF Evaluation

The table below provides an overview of the prepared datasets for the evaluation tasks in the study (for more details refer to the paper).

Yeast Dataset Human Dataset Task
Number of

gene pairs

Number of

genes

Number of

gene pairs

Number of

genes

Protein-Protein Interaction 50,154 4,591 65,542 14,096 Classification of protein interactions
Sequence Homology 26,757 3,972 381,379 13,626 Prediction of sequence similarity score
Gene Expresion 37,405 2,239 62,470 2,361 Prediction of co-expression value

Code Instruction

The deepSimDEF networks were natively implemented and tested using deep learning API tensorflow 2.4.0. Even though manual installation of python packages is an option, for ease of use and also to avoid any platform misconfiguration and package incompatibility we recommend you have Anaconda downloaded and installed and then create a conda virtual environment with the environment.yml provided with the project using the command:

conda env create -f environment.yml

The first line of the yml file sets the new environment's name.

To activate the environment with the current name use:

conda activate deepSimDEF_env

You should be able to run the project code from this point forward. Also, for further familiarity with conda commands, please refer to managing environments page.

Datasets

The datasets prepared and used in the experiments of the study (see table above) are provided in the data folder of the project under data/species/[human|yeast]/ subdirectories. Since these datasets are generated based on the latest available resources at the time (e.g., annotations of genes from Gene Ontology, or PPI interactions from STRING database, etc) three jupyter notebooks which were responsible to create these datasets from the available data resources are shared in the data directory as well. For the generation of the same or more recent version of the datasets, follow the instruction provided in the jupyter notebooks. Typically the latest releases of the data resources would be downloaded by default unless otherwise is indicated or set by the user. The three jupyter notebooks, namely are:

  • protein_protein_interaction_data_prepration.ipynb
  • sequence_homology_data_prepration.ipynb
  • gene_expression_data_prepration.ipynb

Notice: Since the gene expression dataset is built from the protected GTEx database with restricted access, the generated data is password protected in its directory. Please contact us to see if we can help you with granting access.

Gene Ontology Term Embedding

Ideally, the first layer of a deepSimDEF network gets initialized by pre-trained GO-term embeddings while they get fine-tuned during training. This scheme facilitates network optimization and improves model accuracy. The precomputed GO-term embeddings based on Fig. 2 are provided in data/gene_ontology/definition_embedding/[50|100|150|200|300]_dimensional directory (GO release version: 2021-07-02). Regarding deepSimDEF networks and our experiments GO-term embedding size of 100 yielded the best results (see the paper).



Figure 2: deepSimDEF definition-based GO-term embedding approach.

Since Gene Ontology gets constantly updated by having new terms added and a few old ones marked as obsolete (if needed), the jupyter notebook gene_ontology_term_embedding.ipynb allows you to create GO-term embeddings of the latest release of GO in the future (follow the instruction in the jupyter notebook and make certain you have enough physical memory). In case not enough resources are available, for the new GO term, the avarage of all the current GO-terms embeddings (or their immediate neighbor GO-terms embeddings) could also represent the embeddings and most probabely help with your application. Additionally, the jupyter networks embeddings_similarity_evaluation.ipynb allows to evaluate the quality of the generated embeddings based on their "semantic" similarity.

Gene-GO term Associations

The Gene Ontology Consortium stores annotation data, the representation of gene product attributes using GO terms, in standardized tab-delimited text files named GAF files. Each line in the file represents a single association between a gene product and a GO term, with an evidence code and the reference to support the link. These annotations from the latest GAF files for Yeast and Human are processed and the results annotations for the genes of interest are saved in data/species/[human|yeast]/association_file/processed/ directories (IEA+ and IEA-). Additionally, the jupyter notebook of this process is included in the data directory for future use; it is named: gene_association_and_annotations_preprocessing.ipynb.

deepSimDEF Model and Networks

With respect to the three experiments described above three different main python scripts are provided:

  • deepSimDEF_for_protein_protein_interaction.py
  • deepSimDEF_for_sequence_homology.py
  • deepSimDEF_for_gene_expression.py

We recommend running these scripts on GPUs with a command similar to:

CUDA_VISIBLE_DEVICES=gpu-number python deepSimDEF_for_protein_protein_interaction.py arguments

A sample of such run for human species and BP sub-ontology (hence single-channel deepSimDEF) would be:

CUDA_VISIBLE_DEVICES=0 python deepSimDEF_for_protein_protein_interaction.py --species human --sub_ontology bp

All these scripts make use of the deepSimDEF network implementation provided in networks.py script. We strictly advise you to read the description of the arguments in these main files as they provide ample information regarding how to set a run of your interest properly. Briefly, though, these scripts could be run on one of the three --deepsimdef_mode: training (default), evaluation, or production.

  • In training mode, as the name suggests, the model(s) would be trained and evaluated on the fly (number of models would be equal to the number of training folds). During this process, the statistical results would be logged and the network(s) would be checkpointed according to the provided setting in the arguments. For training and evaluation, by default, the model(s) use data provided with this project unless you provide another set of data with --inpute_file (ideally prepared by the preparation .ipynb files).
  • In evaluation mode, after providing checkpointed model(s), the statistical results of interests for the test split(s) would be printed out (should obtain similar results from the same epoch in the training mode). These statistical results are F1-score for the PPI experiment, and Pearson's and Spearman's correlation values for the sequence homology and gene expression experiments.
  • In production mode, after providing a checkpointed model (typically "trained" on all existing data by setting --nb_fold 1) as well as a file of (typically new) gene-product pairs, the estimated scores of them would be saved or printed out. For this purpose, in the --production_input_file each gene-product pair should be shown on one line while gene names are separated by a tab or space). NOTICE: In this mode, if a gene in the gene pair is not present in the given processed association files or it has GO annotations not seen before during training, their pairs would be eliminated in the output. To deal with this matter, before training a model, you need to make sure the association files are up-to-date, and also relax our restriction in the study (i.e., modify the main .py and data and association .ipynb files as we consider only genes that are annotated by all three GO sub-ontologies).

Depending also on the GO sub-ontology of your choice using the argument --sub_ontology, if you provide bp, cc, or mf, automatically single-channel deepSimDEF would be set. However, if --sub_ontology all (default) multi-channel deepSimDEF would be triggered. These types of settings should be consistent across the deepSimDEF modes described above.

Cite

Please cite our papers, code, and dataset if you use them in your work.

deepSimDEF paper, and aforementioned code, and dataset:

@article{pesaranghader2022deepsimdef,
  title = {deepSimDEF: deep neural embeddings of gene products and Gene Ontology terms for functional analysis of genes},
  author = {Pesaranghader, Ahmad and Matwin, Stan and Sokolova, Marina and Grenier, Jean-Christophe and Beiko, Robert G and Hussin, Julie},
  journal = {Bioinformatics},
  year = {2022},
  publisher={Oxford University Press}
}

simDEF paper:

@article{pesaranghader2016simdef,
  title={simDEF: definition-based semantic similarity measure of gene ontology terms for functional similarity analysis of genes},
  author={Pesaranghader, Ahmad and Matwin, Stan and Sokolova, Marina and Beiko, Robert G},
  journal={Bioinformatics}, volume={32}, number={9},
  pages={1380--1387}, year={2016}, publisher={Oxford University Press}
}

Ahmad Pesaranghader © 2022

About

deepSimDEF offers single- and multi-channel deep learning models for functional analysis of genes using Gene Ontology annotations of gene products (RNAs, proteins, etc).

Resources

License

Stars

Watchers

Forks

Packages

No packages published