I noticed that people are staring this repo recently. It might because deepmind released alphafold as an independent project last month. But this is a project I worked on when I was a sophomore and some parts of the project doesn't really work well. So I decide to resume working on it this summer and next semester. Updates coming soon.
A simplified drug discovery pipeline -- generating SMILE molecular with AlphaSMILES, predicting protein structure with AlphaFold, and checking the druggability with fPocket/Amber.
- 64-bit Linux, we will use
mamba
for package management so distribution is not a problem.
Updates coming soon
If the default framework used by keras is Theanos, use the following line to switch to TensorFlow print Using TensorFlow backend.
/ Using Theanos backend.
when you launch the program:
export KERAS_BACKEND='tensorflow'
- AlphaSMILES uses 3D calculation(DFT) library Gaussian 09 by default. If you want this functionality works well, here are some guides how to set up Gaussian 09 on Ubuntu.
- I use RECONSTRUCT to reconstruct protein tertiary structure in
.pdb
format from contact map. This software does not works as expected so far, it's still a beta version and the organization is working on it. It's expected to provide an easy way to reconstruct protein tertiary structure. For chemistry professionals, see Recovery of protein structure from contact maps. They use Tinker to reconstruct the protein tertiary structure.
- Download AlphaFold weight data from here.
- Install Gaussian 09 and make sure
g09
works well in your terminal - Extract the sample input data in
AlphaSMILES/data_in
provided in.tar.xz
and.tar.gz
format. - Make a new subfolder
alphafold_pytorch/model
and extract the weight folders intomodel
. - Modify the variable in
fmol.py
according to your PC. - Run
./fmol.py
Please check doc for usage tutorial. Cyril-Grl has made a brilliant documentation for it. I provide some additional input data, sample configurations for rnn
and mcts
, and a sample output using the sample configurations. There is also a local version of the documentation if Cyril's website shuts down, it's in AlphaSMILES/doc/_build/html/index.html
If you have Gaussian 09 set up and g09
works well in your terminal and just want a quick start:
- Extract the sample input data in
AlphaSMILES/data_in
provided in.tar.xz
and.tar.gz
format. - Change the options in
AlphaSMILES/main.py
- Simply run
AlphaSMILES/main.py
- To run the project, you need to firstly download pre-trained weights from Deepmind repos.
- Create a folder named
model
underalpha_fold_pytorch
- Extract the weights downloaded in step 1 and move
873731
,916425
, and941521
3 folders into themodel
folder. - The samples inputs is provided, so simply run
./alphafold_pytorch/alphafold.sh
to run the project.
- Technically we can use original deepmind AlphaFold rather than alphafold_pytorch. But I got too many error warnings when I run their code and they didn't provide a good way to visualize the output. So I choose alphafold_pytorch at last.
- For more details, check alphafold_pytorch readme
- If you encounter issue that says out of GPU memory, uncomment line 16 of
alphafold_pytorch/alphafold.sh
. That allows you to run 3 trainings at a time, not all 8 trainings by default.
I provide a method to convert CAPS13-RR file to contact map file that RECONSTRUCT accepts. It create a contact map file in .cm
file format within the same folder as the input .rr
file.
- input(string) - path to the input file
- None
- Use the
install_fpocket.sh
shell script underscripts
folder to install fpocket on your machine. - For more information check their repo
Updates coming soon
- The output file of alphafold comes in
.rr
casp13-rr format. It stores the probability of two atoms on the protein chain could contact within 8 angstroms. But fpocket only accept input file in.pdb
format, which basically stores the 3-D coordinate information of each atom. Reconstructing reliable PDB file from the CASP13-RR file is still an unsolved problem in academic circles. RECONSTRUCT is a third-party software using TINKER package aiming to reconstruct PDB file from.cm
contact map file format, but does not work well. I wrote a tool to convert CASP13-RR format into contact map format(seeutils.rr_to_cm
). - Deepmind didn't open-source the procedure of protein tertiary structure prediction, especially the part of training model from CASP PDB dataset. However, it's essential to the accuracy of prediction of arbitrary protein structure.
- Reconstruct the project.
- Using Tinker to reconstruct protein tertiary structure is a classical approach.
To make the project easier to deploy on the cloud, I copied and merged some repos into this project according to their licence.