Skip to content

Commit

Permalink
Merge pull request #9 from jeeberhardt/develop
Browse files Browse the repository at this point in the history
Added new AutoDock-Vina citation
  • Loading branch information
jeeberhardt authored Jul 23, 2021
2 parents 954b8e4 + 23c8a26 commit 28f1d52
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 11 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,5 @@ AutoDock Vina is distributed under the Apache License, Version 2.0.
The installation instructions, documentation and tutorials can be found on [readthedocs.org](https://autodock-vina.readthedocs.io/en/latest/).

## Citations
* Trott, O., & Olson, A. J. (2010). AutoDock Vina: improving the speed and accuracy of docking with a new scoring function, efficient optimization, and multithreading. Journal of computational chemistry, 31(2), 455-461.
* J. Eberhardt, D. Santos-Martins, A. F. Tillack, and S. Forli. (2021). AutoDock Vina 1.2.0: New Docking Methods, Expanded Force Field, and Python Bindings. Journal of Chemical Information and Modeling.
* O. Trott and A. J. Olson. (2010). AutoDock Vina: improving the speed and accuracy of docking with a new scoring function, efficient optimization, and multithreading. Journal of computational chemistry, 31(2), 455-461.
2 changes: 1 addition & 1 deletion build/makefile_common
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ LDFLAGS = -L$(BASE)/lib -L.
# install libboost_thread-mt, but not
# libboost_thread (e.g. macOS)
$(shell echo "int main(){ return 0; }" > linktest.cpp)
$(shell $(CC) $(LDFLAGS) -l boost_thread-mt}${BOOST_LIB_VERSION} linktest.cpp -o linktest >/dev/null 2>&1)
$(shell $(CC) $(LDFLAGS) -l boost_thread-mt${BOOST_LIB_VERSION} linktest.cpp -o linktest >/dev/null 2>&1)
threadmt:=$(shell if [ -f ./linktest ]; then echo "-mt"; rm ./linktest; fi;)
$(shell rm ./linktest.cpp)

Expand Down
2 changes: 1 addition & 1 deletion docs/source/citations.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ AutoDock Vina

AutoDock Vina is a scientific software that is described in academics publications. Please cite these papers when you used AutoDock Vina in your work:

- Santos-Martins, D., Eberhardt, J., Tillack, A.F., Forli, S. (2020). AutoDock Vina 1.2.0. Improved software with new docking methods, expanded force field, and Python bindings.
- Eberhardt, J., Santos-Martins, D., Tillack, A.F., Forli, S. (2021). AutoDock Vina 1.2.0: New Docking Methods, Expanded Force Field, and Python Bindings. Journal of Chemical Information and Modeling.
- Trott, O., & Olson, A. J. (2010). AutoDock Vina: improving the speed and accuracy of docking with a new scoring function, efficient optimization, and multithreading. Journal of computational chemistry, 31(2), 455-461.

Related publications
Expand Down
12 changes: 8 additions & 4 deletions src/lib/vina.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,19 @@ void Vina::cite() {
#################################################################\n\
# If you used AutoDock Vina in your work, please cite: #\n\
# #\n\
# J. Eberhardt, D. Santos-Martins, A. F. Tillack, and S. Forli #\n\
# AutoDock Vina 1.2.0: New Docking Methods, Expanded Force #\n\
# Field, and Python Bindings, J. Chem. Inf. Model. (2021) #\n\
# DOI 10.1021/acs.jcim.1c00203 #\n\
# #\n\
# O. Trott, A. J. Olson, #\n\
# AutoDock Vina: improving the speed and accuracy of docking #\n\
# with a new scoring function, efficient optimization and #\n\
# multithreading, Journal of Computational Chemistry 31 (2010) #\n\
# 455-461 #\n\
# #\n\
# multithreading, J. Comp. Chem. (2010) #\n\
# DOI 10.1002/jcc.21334 #\n\
# #\n\
# Please see http://vina.scripps.edu for more information. #\n\
# Please see https://github.com/ccsb-scripps/AutoDock-Vina for #\n\
# more information. #\n\
#################################################################\n";

std::cout << cite_message << '\n';
Expand Down
12 changes: 8 additions & 4 deletions src/main/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,15 +91,19 @@ Thank you!\n";
#################################################################\n\
# If you used AutoDock Vina in your work, please cite: #\n\
# #\n\
# J. Eberhardt, D. Santos-Martins, A. F. Tillack, and S. Forli #\n\
# AutoDock Vina 1.2.0: New Docking Methods, Expanded Force #\n\
# Field, and Python Bindings, J. Chem. Inf. Model. (2021) #\n\
# DOI 10.1021/acs.jcim.1c00203 #\n\
# #\n\
# O. Trott, A. J. Olson, #\n\
# AutoDock Vina: improving the speed and accuracy of docking #\n\
# with a new scoring function, efficient optimization and #\n\
# multithreading, Journal of Computational Chemistry 31 (2010) #\n\
# 455-461 #\n\
# #\n\
# multithreading, J. Comp. Chem. (2010) #\n\
# DOI 10.1002/jcc.21334 #\n\
# #\n\
# Please see http://vina.scripps.edu for more information. #\n\
# Please see https://github.com/ccsb-scripps/AutoDock-Vina for #\n\
# more information. #\n\
#################################################################\n";

try {
Expand Down

0 comments on commit 28f1d52

Please sign in to comment.