Skip to content

bio-ontology-research-group/ontology-tutorial

Repository files navigation

Tutorial: Semantic Similarity and Machine Learning with Ontologies

Preparations for JOWO 2019

Please follow these steps before the tutorial:

  • Download and install Docker.
  • Pull the docker image with: docker pull coolmaksat/embeddings:latest

You can then start the notebooks during the tutorial like this:

  • Run the image and jump directly into the Jupyter notebook: docker run -i -t -p 8888:8888 coolmaksat/embeddings:latest /bin/bash -c "jupyter notebook --notebook-dir=/home/borg/ontology-tutorial/ --ip='0.0.0.0' --port=8888 --no-browser --allow-root"
  • After the notebook started, copy the address and the token and paste it into you web browser. The URL should look similar to the following: 127.0.0.1:8888/?token=f14e6316a48016b2cf4cbed5dd7b89d9dc524da49f553dc7.
  • All is now set up. There is no need to download and install any additional packages or data files.

JOWO 2019 Slides

Past events

Parts of the material in this repository were taught at

  • ECCB 2016 (Imane Boudellioua, Robert Hoehndorf, Paul Schofield, Luke Slater)
  • ISMB 2017 (Michel Dumontier, Robert Hoehndorf)
  • ISMB 2018 (Michel Dumontier, Robert Hoehndorf)
  • University of Cambridge, Bioinformatics Training Program, 2018 (Robert Hoehndorf, Paul Schofield)
  • ICBO 2019, 2019 (Robert Hoehndorf)
  • JOWO 2019, 2019 (Robert Hoehndorf, Maxat Kulmanov)
  • CCBOT 2019, 2019 (Robert Hoehndorf)

Overview

Ontologies have long provided a core foundation in the organization of biomedical entities, their attributes, and their relationships. With over 500 biomedical ontologies currently available there are a number of new and exciting new opportunities emerging in using ontologies for large scale data sharing and data analysis. This tutorial will help you understand what ontologies are and how they are being used in computational biology and bioinformatics.

Intended audience and level: The tutorial will be of interest to any researcher who will use or produce large structured datasets in computational biology. The tutorial will be at an intermediate level and will describe current research directions and challenges. A particular focus will be given on the use of ontologies to compute semantic similarity, and the use of ontologies in machine learning.

Learning objectives

This is an intermediate-level course to ontologies and ontology-based data analysis in bioinformatics. In this tutorial, participants will learn:

  • what ontologies are and where to find them (briefly)
  • how to understand and use ontology semantics through automated reasoning
  • how to measure semantic similarity
  • how to combine ontologies and deep learning
  • how to incorporate ontologies and semantic similarity measures in bioinformatics analyses

Before the tutorial (important)

The tutorial will contain a hands-on part. If you want to participate (instead of just watching the presentation), please install the required software locally or use our Docker image (preferred/faster).

Local installation on your computer:

Download and install Jupyter Notebook (http://jupyter.org/) with a SciJava kernel (follow instructions here), and run the first cell in https://github.com/bio-ontology-research-group/ontology-tutorial/raw/master/ontology-analysis.ipynb (on Jupyter). This will download the required dependencies (OWLAPI, ELK, SML) which are quite large. You must also download our data package from here, here and for the last part of the tutorial some vectors from here.

It is fine to skip this step and still follow the tutorial, but if you want to play with the methods yourself, and go away with some running code examples that you can build on, downloading and running the code is necessary.

Detailed instructions:

  • Download Jupyter Notebook from http://jupyter.org/ and install
  • Install the SciJava Jupyter kernel following instructions on https://github.com/scijava/scijava-jupyter-kernel
  • Install dependencies with conda install --file requirements.txt
  • Download the Jupyter Notebook file (direct download): and store on your disk.
  • Run Jupyter Notebook using jupyter notebook
    • This will open a web browser, or browser window, with the Jupyter environment.
    • We have received some reports of memory problems. To resolve them, try running JAVA_OPTS="-Xmx12G" jupyter notebook or _JAVA_OPTIONS="-Xmx12G" jupyter notebook to set allowed memory for jupyter to 12GB (adjust for your particular environment).
  • In your browser, find the ontology-analysis.ipynb file and open
  • In the first Groovy box, press Shift+Return
    • Depending on your Internet connection, this may take some time!
    • This code will download the libraries necessary to run the remaining code.
  • Download the data package and store on your disk. Unzip it with gunzip: tar xvzf ontology-tutorial.tar.gz.
  • Download the EL-Embeddings data and store on your disk. Unzip it with unzip: tar xvzf embeddings-data.tar.gz.
  • Download the ontology embeddings and store on your disk (ideally in the /misc subdirectory.

Using the Docker image:

  • Download and install Docker.
  • Assign at least 8 GB (better 10 or 12GB) to the Docker engine after the installation. (the following is required in the Mac OSX version: Docker -> Preferences -> Advanced -> Memory followed by Apply & Restart)
  • Pull the tutorial image: altermeister/bio-ontology-ontology-tutorial-docker:latest, i.e. in Linux/OSX using a terminal: docker pull altermeister/bio-ontology-ontology-tutorial-docker:latest
  • Run the image and jump directly into the Jupyter notebook: docker run -i -t -p 8888:8888 altermeister/bio-ontology-ontology-tutorial-docker /bin/bash -c "source activate java_env && export JAVA_OPTS=-Xmx12G && _JAVA_OPTIONS=-Xmx12G jupyter notebook --notebook-dir=/home/bioonto/ontology-tutorial/ --ip='0.0.0.0' --port=8888 --no-browser"
  • After the notebook started, copy the address and the token and paste it into you web browser. The URL should look similar to the following: 127.0.0.1:8888/?token=f14e6316a48016b2cf4cbed5dd7b89d9dc524da49f553dc7.
  • All is now set up. There is no need to download and install any additional packages or data files. Just step through the Groovy boxes.

To copy a file from or to a running docker image:

To copy a file from the running docker image to you local (host) computer, please use the following recepie:

  1. Find out the ID of the running container: Exceute docker container list in a terminal. The result should look similar to the following:
CONTAINER ID        IMAGE                                                COMMAND                  CREATED             STATUS              PORTS                    NAMES
0cd1f8da3c1f        altermeister/bio-ontology-ontology-tutorial-docker   "/usr/bin/tini -- /b…"   9 seconds ago       Up 7 seconds        0.0.0.0:8888->8888/tcp   pedantic_mendeleev
  1. Copy the corresponding container ID (in this example 0cd1f8da3c1f) and in a terminal copy a file using the following command:

docker cp 0cd1f8da3c1f:/home/bioonto/ontology-tutorial/phenomenet-inferred.owl .

The command has the following form:

docker cp <CONTAINER ID>:<SRC_PATH> <DEST_PATH> or docker cp <SRC_PATH> <CONTAINER ID>:<DEST_PATH:. The first copies a file from the container to the destination directory, while the other copies a file from the source to a destination into the running container.

Schedule

  1. General overview: what are ontologies, where to find them (ontology portals), how they are used (for annotation)
  2. Semantic Web: basic technologies underlying ontologies; understanding ontologies through OWL
  3. Ontologies and graphs: how to go from ontologies to graphs and back (preliminary step for computing semantic similarity)
  4. Semantic similarity: computing similarity between classes, sets of classes, and between biological entities (genes, diseases, drugs)
  5. Machine learning and ontologies: using deep learning to encode knowledge graphs, ontologies, and connections between ontologies
  6. Applications: how to apply the methods for biomedical data analysis: finding protein-protein interaction, prioritize disease genes, and more

Reading materials

Resources

Slides

Slides will be updated on demand. The latest version (source and PDF) are in the (/slides/) folder. There are introduction slides (https://github.com/bio-ontology-research-group/ontology-tutorial/blob/master/slides/introduction-slides-pns.pdf by Paul Schofield and https://github.com/bio-ontology-research-group/ontology-tutorial/blob/master/slides/2018-ismb-tutorial-part-1.pdf by Michel Dumontier) and more technical slides (https://github.com/bio-ontology-research-group/ontology-tutorial/blob/master/slides/all.pdf by Robert Hoehndorf).

Questions and Requests

You can use the Issue Tracker for questions and requests.

Contributors

  • Imane Boudellioua
  • Michel Dumontier
  • Robert Hoehndorf
  • Andreas Karwath
  • Maxat Kulmanov
  • Paul Schofield
  • Fatima Smaili

License

The tutorial materials are under a CC-BY license.