empyriumz / EM-GAN

EM-GAN is a computational tool, which enables capturing protein structure information from cryo-EM maps more effectively than raw maps. It is based on 3D deep learning. It is aimed to help protein structure modeling from cryo-EM maps.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

EM-GAN


EM-GAN is a computational tool, which enables capturing protein structure information from cryo-EM maps more effectively than raw maps. It is based on 3D deep learning. It is aimed to help protein structure modeling from cryo-EM maps.
Copyright (C) 2021 Sai Raghavendra Maddhuri Venkata Subramaniya, Genki Terashi, Daisuke Kihara, and Purdue University.

License: GPL v3 for academic use. (For commercial use, please contact us for different licensing)

Contact: Daisuke Kihara (dkihara@purdue.edu)

Cite : Sai Raghavendra Maddhuri Venkata Subramaniya, Genki Terashi & Daisuke Kihara. Improved Protein Structure Modeling Using Enhanced Cryo-EM Maps With 3D Deep Generative Networks. In submission (2021).

Google Colab: https://tinyurl.com/3ccxpttx

About EM-GAN

An increasing number of biological macromolecules have been solved with cryo-electron microscopy (cryo-EM). Over the past few years, the resolutions of density maps determined by cryo-EM have largely improved in general. However, there are still many cases where the resolution is not high enough to model molecular structures with standard computational tools. If the resolution obtained is near the empirical border line (3 - 4 Å), improvement in the map quality facilitates improved structure modeling. Here, we report that protein structure modeling can often be substantially improved by using a novel deep learning-based method that prepares an input cryo-EM map for modeling. The method uses a three-dimensional generative adversarial network, which learns density patterns of high and low-resolution density maps.

GAN architecture of EM-GAN is shown below.

Pre-required software


Python 3 : https://www.python.org/downloads/  
pytorch : pip/conda install pytorch   

Dependencies

mrcfile==1.2.0
numpy>=1.19.4
numba>=0.52.0
torch>=1.6.0
scipy>=1.6.0

Availability

This software is free to use under GPL v3 for academic use. For commercial use, please contact us for different licensing.

Timings

Please allow 30 mins on average to get the output, since 3D input processing and inferencing takes some time. Our running time is directly correlated to the size of the structures. For example, a map with 260 * 260 * 260 can take 2 hours to finish.

System requirements and compatibility

OS: Any (e.g CentOS, Linux, Windows, Mac).
Necessary libararies: Please refer to the dependencies above and make sure that they're installed.
GPU: Optional (Any GPU with >4GB RAM should enable faster computation).

Instructions

In the following section, we give a step-by-step guide to run various programs for EM-GAN.

Input file generation

Generate the input file called [your_map_id]_dataset from your map file by following the below 2 steps.

1) Trimmap File generation

data_prep/HLmapData -a [sample_mrc] -b [sample_mrc] [options] > [output_trimmap_filename]
INPUTS:
HLmapData_new expects sample_mrc to be a valid filename. Supported file formats are Situs, CCP4, and MRC2000. Format is deduced from FILE's extension.
OPTIONS:
-a [mrc] Input map file of the experimental map.
-b [mrc] Input map file of the experimental map (Same map as above). If you have a simulated map available and are validating, specify that instead
-A [float] The level of isosurface to generate density values for the first map (map specified with option -a). You can use the author recommended contour level for experimental EM maps. default=0.0
-B [float] The level of isosurface to generate density values for the first map (map specified with option -b) You can use the author recommended contour level for experimental EM maps. If input is simulated map, specify 0.0 default=0.0
-w [integer] This option sets the dimensions of sliding cube used for input data generation. The size of the cube is calculated as 2*w+1. We recommend using a value of 12 for this option that generates input cube of size 25*25*25. Please be mindful while increasing this option as it increases the portion of an EM map a single cube covers. Increasing this value also increases running time. default=5 (->11x11x11)
-s [integer] This option specifies the stride value to be used while generating input cubes We recommend using a value of 4 for this option. Increasing this value also increases running time. default=1
-h, --help, -?, /? Displays the list of above options.

USAGE: data_prep/HLmapData -a protein.mrc -b protein.mrc -A -B -w 12 -s 4 > protein_trimmap


2) Input dataset file generation

This program is used to generate input dataset file from the trimmap file generated in step 1.
This program is a python script and it works with both python2 and python3. They can be downloaded here.

python data_prep/generate_input.py [sample_trimmap] [_data] [dataset_folder]
INPUTS: Inputs to this script are trimmap generated in the previous step, ID is a unique identifier of a map such as EMID, and dataset_folder which is a folder to write dataset files.

USAGE: python data_prep/generate_input.py protein_trimmap 1_data ./data_dir/


GAN-Modified EM map generation

Run EM-GAN program for generating GAN-modified em maps from low-resolution experimental maps.
Use test.py to generate modified map.
This program is a python script and it works with both python2 and python3.

python test.py --dir_path=INPUT_DATA_DIR --res_blocks=5 --batch_size=128 --in_channels=32 --G_path=GENERATOR_MODEL_PATH --D_path=DISCRIMINATOR_MODEL_PATH
INPUT: --dir_path Path to data directory created in the last step --G_path Specify path of Generator model --D_path Specify path of Discriminator model
OUTPUT: This program writes output modified em map cubes to the same directory as input.

USAGE: python test.py --res_blocks=5 --batch_size=128 --in_channels=32 --G_path=model/G_model --D_path=model/D_model --dir_path=data_dir/

Finally, run the below two python scripts to merge the generated cubes generated into a final modified map
python sr_dataprep.py

python avg_model.py

Modified map is written to Merged.mrc file

Tutorial:

Experimental map example (EMD-2788)

The example map of 2788 is available here from data/2788.mrc Use this map file and follow the instructions in step 1 of usage guide to generate input dataset file. The trimmap file is generated as

data_prep/HLmapData -a 2788.mrc -b 2788.mrc -A 0.16 -B 0.16 -w 12 -s 4 > 2788_trimmap

The author recommended contour level for the map EMD-2788 is 0.16 which has been provided as one of the options above.
You can generate the input dataset file as follows,

python data_prep/generate_input.py 2788_trimmap 2788_data ./data_dir

Density Map, 2788.mrc

EM-GAN modified map generation

You can then run the EM-GAN program to generate modified EM map as follows
python test.py --res_blocks=5 --batch_size=128 --in_channels=32 --G_path=model/G_model --D_path=model/D_model --dir_path=./data_dir/
python sr_dataprep.py
python avg_model.py
Modified map is written to Merged.mrc file
An example of generated modified map of EMD-2788 is shown below.

GAN-modified Map, 2788_SR.mrc

About

EM-GAN is a computational tool, which enables capturing protein structure information from cryo-EM maps more effectively than raw maps. It is based on 3D deep learning. It is aimed to help protein structure modeling from cryo-EM maps.

License:GNU General Public License v3.0


Languages

Language:Jupyter Notebook 44.3%Language:CSS 31.8%Language:Python 23.9%