Skip to content

Commit a215c9b

Browse files
authored
Merge pull request #8 from libefp2/flex
Flex
2 parents eb7d467 + 26d68bd commit a215c9b

13 files changed

Lines changed: 80 additions & 7 deletions

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ cmake_minimum_required(VERSION 3.0)
22
# project_VERSION* variables populated from project(... VERSION x.x.x) string
33
cmake_policy(SET CMP0048 NEW)
44

5-
project(libefp VERSION 1.5.0 LANGUAGES C)
6-
set(libefp_AUTHORS "Ilya A. Kaliman")
5+
project(libefp VERSION 1.7.2 LANGUAGES C)
6+
set(libefp_AUTHORS "Ilya A. Kaliman, Lori A. Burns, Dmitry Morozov, Carlos H. Borca, Yen (Terri) Bui, Yongbin Kim, Lyudmila V. Slipchenko")
77
set(libefp_DESCRIPTION "Parallel implementation of the Effective Fragment Potential method")
8-
set(libefp_URL "https://libefp.github.io/")
8+
set(libefp_URL "https://github.com/libefp2/libefp")
99
set(libefp_LICENSE "BSD 2-clause")
1010

1111
list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake)

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@ Lori A. Burns
55
Dmitry Morozov
66
Carlos H. Borca
77
Yen (Terri) Bui
8+
Yongbin Kim
89
Lyudmila V. Slipchenko
910

Makefile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,16 @@ install: all
2626
install -d $(PREFIX)/include
2727
install -d $(PREFIX)/lib
2828
install -d $(FRAGLIB)/databases
29+
install -d $(FRAGLIB)/flex_efp_protein
2930
install -m 0755 efpmd/src/efpmd $(PREFIX)/bin
30-
install -m 0755 efpmd/tools/cubegen.pl $(PREFIX)/bin
31-
install -m 0755 efpmd/tools/trajectory.pl $(PREFIX)/bin
31+
install -m 0644 tools/* $(PREFIX)/bin
3232
install -m 0644 src/efp.h $(PREFIX)/include
3333
install -m 0644 src/libefp.a $(PREFIX)/lib
3434
install -m 0644 fraglib/*.efp $(FRAGLIB)
3535
install -m 0644 fraglib/makefp.inp $(FRAGLIB)
3636
install -m 0644 fraglib/databases/* $(FRAGLIB)/databases
37+
install -m 0644 fraglib/flex_efp_protein/* $(FRAGLIB)/flex_efp_protein
38+
3739

3840
dist:
3941
git archive --format=tar.gz --prefix=libefp/ -o libefp.tar.gz HEAD

fraglib/flex_efp_protein/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
## Amino acid parameters as published
2+
3+
aa_flex_params_631Gd.tar.gz : parameters in 6-31G(d) basis
4+
aa_flex_params_631Gd-631+G3df2p.tar.gz: parameters in a hybrid 6-31G(d) / 6-31-+G(3df,2p) basis (diffuse functions on H atoms only)
5+
aa_flex_params_631Gd-6311++G3df2p.tar.gz: parameters in a hybrid 6-31G(d) / 6-311++G(3df,2p) basis (standard hybrid basis)
6+
12.6 MB
Binary file not shown.
Binary file not shown.
7.82 MB
Binary file not shown.

src/efp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1728,7 +1728,7 @@ efp_banner(void)
17281728
" - Kaliman and Slipchenko, JCC 2015.\n"
17291729
" DOI: http://dx.doi.org/10.1002/jcc.23772\n"
17301730
"\n"
1731-
"Project web site: https://libefp.github.io/\n";
1731+
"Project web site: https://github.com/libefp2/libefp/\n";
17321732

17331733
return banner;
17341734
}

src/efp.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ extern "C" {
4040
#endif
4141

4242
/** Version string. */
43-
#define LIBEFP_VERSION_STRING "1.5.0"
43+
#define LIBEFP_VERSION_STRING "1.7.2"
4444

4545
/** Result of an operation. */
4646
enum efp_result {

tools/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
## Scripts and tools
22

33
Flexible_V5.py: flexible EFP script by Yongbin Kim
4+
5+
create_hybrid_basis.py: generates a hybrid-basis potential from two original potentials in different basis sets; first (small) basis: elec, elec screening; second (large) basis: pol, disp, exrep, by Yongbin Kim

0 commit comments

Comments
 (0)