-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from learningmatter-mit/docking_catal
Docking catal
- Loading branch information
Showing
10 changed files
with
468 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
mcdocked vdocked |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
23 | ||
|
||
C 2.8824 -0.9488 0.572 | ||
C 1.4172 -0.9826 0.3101 | ||
C 0.617 0.2149 0.0164 | ||
C 1.1534 1.491 0.2607 | ||
C 0.415 2.6507 0.0142 | ||
C -0.8793 2.5564 -0.4785 | ||
C -1.4323 1.3024 -0.7264 | ||
C -0.6986 0.1219 -0.4908 | ||
C -1.3828 -1.195 -0.7917 | ||
C -2.1371 -1.7357 0.4145 | ||
H 3.087 -0.5902 1.5851 | ||
H 3.2955 -1.9588 0.4837 | ||
H 3.4081 -0.3169 -0.1502 | ||
H 0.9012 -1.9173 0.4953 | ||
H 2.1576 1.6066 0.6605 | ||
H 0.853 3.625 0.2135 | ||
H -1.4591 3.4554 -0.6683 | ||
H -2.4492 1.2451 -1.1101 | ||
H -0.6596 -1.934 -1.154 | ||
H -2.0863 -1.0578 -1.6232 | ||
H -1.4677 -1.912 1.2627 | ||
H -2.9137 -1.0361 0.742 | ||
H -2.6216 -2.6843 0.1624 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/bin/bash | ||
|
||
# Runs until the first success is found Also with Monte Carlo docking | ||
echo "" | ||
echo "In this example we must supply the --cation_indexes (start counting after the framework, remember 0 indexing)" | ||
echo "and the --acid_sites (oxygens bonded to the heteroatom)" | ||
echo "" | ||
echo "--acid_sites doesn't need all the acid sites present in the system, you can choose to sample for a preferred one if needed" | ||
echo "" | ||
echo "This example runs the docking of a DEB+ molecule into an Al-UTL zeolite framework" | ||
echo "" | ||
echo "If job fails to reach a final pose you can tune --threshold_catan, --threshold and --attempts parameters" | ||
echo "" | ||
echo "Running Monte Carlo docking" | ||
echo "" | ||
python3 ../../scripts/dock.py structure.cif DEB+.xyz -d mcsuccess -s random -f min_catan_distance -o mcdocked --threshold_catan 3.1 --threshold 1.5 --attempts 20000 --cation_indexes 225 --acid_sites 76,84,92,96 | ||
echo "Final pose save to mcdocked folder" |
Oops, something went wrong.