phageParser

phageParser is a project to extract and organize CRISPR information from open genetic data.

Come chat with us!
Gitter chat

What is this tool?

Many bacterial and archaeal genomes have been sequenced, and a large fraction of them have CRISPR systems, ranging from deadly human pathogens to archaea living in the harshest environments on earth. Some CRISPR systems have been studied very well, and more is being discovered about CRISPR every day. phageParser is a tool to collect this growing pool of information and generate versatile and useful annotations. These are some of the annotations we include:

We will collect these annotations in a database that can users can query through a GUI (graphical user interface). Neither of these exist yet, and we are looking for contributors!

This tool is currently in development, and it will always be possible to modify and enhance what is included as CRISPR research moves forward. We welcome suggestions for features or annotations you'd like to see! To suggest a feature, create an issue in our issue tracker.

Who is this for?

phageParser is for anyone interested in exploring what we know about CRISPR systems in nature. This includes researchers, educators, and the general public.

Where can I get involved?

We need many different skills and areas of expertise to build this tool, and you can help!

About the CRISPR system

Clustered Regularly Interspaced Short Palindromic Repeats (CRISPR), and associated proteins (Cas) are part of the CRISPR-Cas system in bacteria. First observed in 1987 (Ishino et al., 1987), the CRISPR system is an adaptive immune system for bacteria.

When a virus enters a human body, specialized immune cells are often quick to recognize the virus invader and kill it. Bacteria do not have the benefit of millions of immune cells to protect them against viruses, but they have something else: CRISPR-Cas. The CRISPR-Cas immune response begins with the creation of spacer sequences from the invading virus' DNA followed by the production of small interfering crRNAs. Finally, when the bacterium is invaded again, the crRNAs recognize and cut the viral DNA, preventing infection.

Bacteria store their acquired spacers in their own DNA. The spacers are flanked by short pieces of bacterial DNA called repeats (see figure below).

CRISPR Locus Diagram

Amazingly, CRISPR-Cas immunity is both adaptive and hereditary! After acquiring a spacer, bacteria are both protected against future virus attacks and they can pass on their spacer libraries to their descendants.

More research is needed to better understand how bacteria use their CRISPR systems in nature.

*Ishino, Y., Shinagawa, H., Makino, K., Amemura, M., and Nakata, A. (1987). Nucleotide sequence of the iap gene, responsible for alkaline phosphatase isozyme conversion in Escherichia coli, and identification of the gene product. J. Bacteriol. 169, 5429–5433.

Relevant Literature

CRISPR-Cas Systems: Prokaryotes Upgrade to Adaptive Immunity: a very good review paper on the CRISPR-cas system, the biological backdrop of this project.

Installation

To use the demo Jupyter Notebooks

Fork and clone phageParser

  1. Create a GitHub account if you don't already have one.
  2. Go to https://github.com/phageParser/phageParser and click 'Fork' in the top right corner.
  3. In the terminal, type git clone https://github.com/YourUserName/phageParser.git (with your GitHub username)
  4. In the terminal type cd phageParser to enter the phageParser directory
  5. Add reference to upstream repository: git remote add upstream https://github.com/phageParser/phageParser.git

Now you have a fork and a local clone of phageParser that you can use and modify however you like! You can stay synced with the upstream repo by periodically pulling any changes like this:

cd phageParser
git checkout master
git pull upstream master

Create conda environment

  1. Install Python 3 via Anaconda.
  2. cd phageParser
  3. conda env create -f environment.yml. If any packages don't install, try installing them in the environment with conda install -c conda-forge package-name after running source activate phageParser. Not all the packages are necessary to run the demo notebooks, but some are necessary for running the database-building and analysis scripts.
  4. Important: in order for the conda environments to show up automatically in Jupyter, run this command without activating the phageParser environment (i.e. in your base environment): conda install nb_conda_kernels
  5. To start up the phageParser environment: source activate phageParser. Now your terminal session is running the phageParser conda environment.

Run Jupyter Notebooks

To run the Jupyter notebooks in the demos folder, follow these steps.

  1. cd phageParser/demos
  2. source activate phageParser
  3. jupyter notebook or jupyter lab - this launches Jupyter Notebook or Jupyter Lab in your browser. You should see a list of all the available demo files; double-click to open one.

Debugging the notebooks

  1. ModuleNotFoundError

If you see ModuleNotFoundError: No module named 'Bio' or some other package name in place of Bio, this probably means that the Jupyter notebook is not running the phageParser environment or that a python package is missing. The environment might not be running for two common reasons: either you forgot to source activate phageParser before running jupyter notebook, or Jupyter can't find the right kernel because conda install nb_conda_kernels hasn't been run. You can also try changing the kernel by going to the Kernels menu, clicking 'Change kernel', and looking for phageParser. If a python package is missing, run conda install package-name in the phageParser environment.

For developers

You can download the source code of the project by git: git clone https://github.com/phageParser/phageParser.git

After getting the local copy of the project, it is generally a good idea to create an isolated environment that belongs to the project and its specific packages. For this, python has a tool called virtualenv that can help create a python instance that has different packages than the system's version. To get started:

Make sure you have python3 in your system, if not, you can download python3 via their website

You can then install virtualenv package by pip

pip install virtualenv

For creating a virtualenv with a specific python version, you can supply the path of the python binary as an argument. The virtual python instances are conventionally kept in one place, usually in ~/.virtualenvs. You can create the folder and make an environment for phageParser as such:

mkdir ~/.virtualenvs && cd "$_"

python3 -m venv ~/.virtualenvs/pparserdev

You now have a separate environment which you can use to contribute phageParser. Whenever you're developing for phageParser, use the following command to activate the environment:

source ~/.virtualenvs/pparserdev/bin/activate

To install the required libraries for phageParser, after heading to the project folder containing requirements.txt, activate the project environment and run the following command:

pip install -r requirements.txt

For viewing the database, we recommend the Firefox SQLite Manager plugin. Once installed, launch it from the 'Tools' menu in Firefox.