AutoDock Vina v1.1.2 설치 소개
Last updated
Last updated
$ module purge
$ module load intel/18.0.3$ tar -xzvf autodock_vina_1_1_2.tgz
$ cd autodock_vina_1_1_2
$ vi src/main/main.cpp
- - - - - [ main.cpp 파일 수정 내용] 참고 - - - - -
$ vi src/split/split.cpp
- - - - - [ split.cpp 파일 수정 내용] 참고 - - - - -
$ cd build/linux/release
$ vi Makefile
- - - - - [ Makefile 파일 수정 내용] 참고 - - - - -
$ make
$ ls vina
vina vina_splitline 50:
<수정 전>
return path(str, boost::filesystem::native);
<수정 후>
return path(str);
line 664:
<수정 전>
std::cerr <"\n\nError: could not open \"" <e.name.native_file_string() <"\" for " <(e.in ? "reading" : "writing") <".\n";
<수정 후>
std::cerr <"\n\nError: could not open \"" <e.name.filename() <"\" for " <(e.in ? "reading" : "writing") <".\n";
line 676:
<수정 전>
std::cerr <"\n\nParse error on line " <e.line <" in file \"" <e.file.native_file_string() <"\": " <e.reason <'\n';
<수정 후>
std::cerr <"\n\nParse error on line " <e.line <" in file \"" <e.file.filename() <"\": " <e.reason <'\n';line 41:
<수정 전>
return path(str, boost::filesystem::native);
<수정 후>
return path(str);
line 211:
<수정 전>
std::cerr <"\n\nError: could not open \"" <e.name.native_file_string() <"\" for " <(e.in ? "reading" : "writing") <".\n";
<수정 후>
std::cerr <"\n\nError: could not open \"" <e.name.filename() <"\" for " <(e.in ? "reading" : "writing") <".\n";
line 223:
<수정 전>
std::cerr <"\n\nParse error on line " <e.line <" in file \"" <e.file.native_file_string() <"\": " <e.reason <'\n';
<수정 후>
std::cerr <"\n\nParse error on line " <e.line <" in file \"" <e.file.filename() <"\": " <e.reason <'\n';BASE=/apps/common/boost/1.68.0
BOOST_VERSION=1_68
BOOST_INCLUDE = $(BASE)/include
C_PLATFORM= -static -pthread -L/apps/compiler/gcc/7.2.0/lib64
GPP=g++
C_OPTIONS= -O3 -DNDEBUG
BOOST_LIB_VERSION=\
include ../../makefile_commonBASE=/apps/common/boost/1.68.0
BOOST_VERSION=1_68
BOOST_INCLUDE = $(BASE)/include
C_PLATFORM= -static -pthread -L/apps/compiler/gcc/7.2.0/lib64
GPP=icpc
C_OPTIONS= -O3 -DNDEBUG
BOOST_LIB_VERSION=
include ../../makefile_common