| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Developed at Prof. Costas Maranas Lab at The Pennsylvania State University by Veda Sheersh Boorla
📧 Any bugs/comments/questions to be addressed to: mailforveda@gmail.com
If you use this package, please cite the following article. Thanks!
@article{Chowdhury2020,
author = {Chowdhury, R. and Grisewood, M.J. and Boorla, V.S. and Yan, Q. and Pfleger, B.F. and Maranas, C.D.},
title = {IPRO+/−: Computational Protein Design Tool Allowing for Insertions and Deletions},
journal = {Structure},
year = {2020}
}Make sure your system has these installed before running the package:
The package needs two input files:
Scenario 1: Delete residues 14, 15, 16 from CHAIN_A.
Input file:
DELETE CHAIN_A 14-16
or equivalently
DELETE CHAIN_A 14,15,16
Scenario 2: Insert the stretch of residues PPP after residue 20 in CHAIN_A.
Input file:
INSERT CHAIN_A 20_PPP
Scenario 3: Replace residues 5, 6, 7 of CHAIN_A with G, L, A respectively.
Input file:
MUTATE CHAIN_A 5_G,6_L,7_A
Scenario 4: Combine the above modifications.
Input file:
DELETE CHAIN_A 14-16 INSERT CHAIN_A 20_PPP MUTATE CHAIN_A 5_G,6_L,7_A
Navigate to the root directory of InDelMutator in a shell and run the following command:
python main.py demo demo.pdb demo.inputAfter the run is complete (which could take a few minutes), you should see your results in ./results/demo/
To read the help about possible arguments to main.py, run
python main.py -h0 -230.1 1 -233.3 2 -220.3 3 -210.9
Fails if the PDB file has non-integer residue numbers (e.g., 12B).
Workaround: Modify the PDB file so that all residue numbers are integers. A script clean_pdb.py is provided in ./scripts/ for this purpose.
The accuracy of the package generally drops with the number of insertions or deletions due to the cumulative effect. See the IPRO+/- publication for a benchmark on reproducing crystal structures of indel variants of antibodies.
| Back | FazBrowse Home | New Git URL |