Skip to content

(check out instaGRAAL for a faster, updated program!) This program is from Marie-Nelly et al., Nature Communications, 2014 (High-quality genome assembly using chromosomal contact data), also Marie-Nelly et al., 2013, PhD thesis (https://www.theses.fr/2013PA066714)

Notifications You must be signed in to change notification settings

koszullab/GRAAL

Repository files navigation

GRAAL

GRAAL (Genome Re-Assembly Assessing Likelihood) is a Hi-C data based reassembler written in Python and CUDA. It uses an MCMC (Markov Chain Monte Carlo) method to find and evaluate the most likely genome given a set of genome-wide contact data through a succession of various operations (cut, insert, flip, swap, etc.) performed at various scales based on the initial genome's restriction fragments. A complete description and demonstration are available in full here.

Note that a new version of GRAAL, instaGRAAL, is available here

This repo provides the software and the datasets used in the above paper - see below if you want to use GRAAL to reassemble your own genome.

Requirements (Hardware)

  • NVIDIA graphic card (computing capability >=2.0, RAM >= 1.5Go)
  • Linux (Recommended Ubuntu >= 13.10), OSX, Windows

Requirements (Software)

First, install the Cuda Toolkit from NVidia's website.

On Ubuntu 16.04, all software requirements except CUDA Toolkit and PyCuda with OpenGL support can be installed by running the command pip install -r requirements.txt. If not using ubuntu, see the list at the end of this section.

Finally, install PyCuda with opengl support, by following the instructions here, until you reach the command starting with "./configure.py". Append "--cuda-enable-gl" to that command and then continue as normal.

If you are not using Ubuntu, manually install these packages:

  • hdf5
  • hf5py
  • CUDA (Cuda Toolkit >= 5.5)
  • pycuda (with opengl support)
  • OpenGL
  • wx
  • wxpython
  • wxpython-version
  • numpy
  • matplotlib
  • scipy
  • PyOpenGL

Installation

  • Open a terminal
  • Create a directory your_dir
  • Extract graal.zip to your_dir
  • Create a directory your_dir/data
  • Extract fasta.zip, S1.zip and tricho_qm6a to your_dir/data
  • cd your_dir/graal
  • python main_window.py
  • Follow the instructions in the GUI

Description

(Detailed explanation of GRAAL's algorithm)

A pyramid of contact matrices, P = {M0, M1, ..., Mk}, is a data structure representing the 3C/HiC data at different scales. The level 0 corresponds to the fragment contact matrix M0. If x is the subsampling/scaling factor, we construct Mi by creating bins of x^i collinear restriction fragments. G0 is the initial genome used to align the reads.

The following steps refers to numbers and letters indicated in the pdf documents “start_graal.pdf” and “pending_graal.pdf”.

  1. Load data set.

    • Select the folder your_dir/data/S1 or your_dir/data/tricho_qm6a

      • size of pyramid = 6 for tricho_qm6a ( t.reesei)
      • size of pyramid = 4 for S1 ( s.cerevisiae)
      • sub sampling factor = 3
  2. Load the corresponding fasta file located in your_dir/data/fasta

  3. Build the pyramid

  4. Load the pyramid

  5. Click on the "GRAAL" button

  6. Fill the parameters

  7. Click "start" to begin the simulation, and enter in the terminal the ID of the GPU used for computing.

  8. Export trace and histogram of the selected variables

A) The updated contact matrix B) Real time representation of the genome. Each floating ball corresponds to a bin of restriction fragments C) Real time visualisation of the parameters of the simulation

The visualisation is made in a 3D OpenGl window. Left click and drag in the OpenGl window to move into the graph.

Right click and drag to zoom in/out

Press ‘w’ to change the background color

Press 'p' to increase the size of the fragments

Press 'm' to decrease the size of the fragments

Press ‘d’ to decrease the contrast of the matrix

Press ‘b’ to increase the contrast of the matrix

Datasets

Generating your own datasets

If you wish to generate custom datasets in order to reassemble your own genome, you may do so with HiC-Box using paired-end read files and FASTA genome as inputs. The so-called pyramid files generated by the box are also used by GRAAL and are treated the same way as the above three datasets.

Dataset format

GRAAL needs a folder containing at minimum three files to properly function:

  • A file named abs_fragments_contacts_weighted.txt, containing the (sparse) Hi-C map itself. The first line must be "id_frag_a id_frag_b n_contact". All subsequent lines must represent the map's contact in coordinate format (id_frag_a being the row indices, id_frag_b being the column indices, n_contact being the number of contacts between each locus or index pair, e.g. if 5 contacts are found between fragments #2 and #3, there should be a line reading "2 3 5" in the file). n_contact must be an integer. The list should be sorted according to id_frag_a first, then id_frag_b. Fragment ids start at 0.
  • A file named fragments_list.txt containing information related to each fragment of the genome. The first line must be "id chrom start_pos end_pos size gc_content", and subsequent lines (representing the fragments themselves) should follow that template. The fields should be self-explanatory; notably, "chrom" can be any string representing the chromosome's name to which the fragment at a given line belongs, and fragment ids should start over at 1 when the chromosome name changes. Aside from the "chrom" field and the "gc" field which is currently unused in this version and can be filled with any value, all fields should be integers. Note that start_pos starts at 0.
  • A file named info_contigs.txt containing information related to each contig/scaffold/chromosome in the genome. The first line must be "contig length_kb n_frags cumul_length". Field names should be again self-explanatory; naturally the contig field must contain names that are consistent with those found in fragments_list.txt. Also length_kb should be an integer (rounded up or down if need be), and n_frags and cumul_length are supposed to be consistent with each other in that the cumulated length (in fragments) of contig N should be equal to the sum of the fields found in n_frags for the N-1 preceding lines. Note that cumul_length starts at 0.

All fields (including those in the files' headers) must be separated by tabs.

About

(check out instaGRAAL for a faster, updated program!) This program is from Marie-Nelly et al., Nature Communications, 2014 (High-quality genome assembly using chromosomal contact data), also Marie-Nelly et al., 2013, PhD thesis (https://www.theses.fr/2013PA066714)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published