Skip to content

Commit b4f86c0

Browse files
committed
Reference info
1 parent f1e6dcf commit b4f86c0

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,6 @@ if(TARGET cifpp)
139139
set(CIFPP_SHARE_DIR share/libcifpp)
140140
set(CIFPP_DATA_DIR ${CIFPP_SOURCE_DIR}/rsrc)
141141
elseif(DEFINED CIFPP_SHARE_DIR)
142-
message(NOTICE "dssp: using ${CIFPP_SHARE_DIR} from CIFPP_SHARE_DIR as CIFPP_DATA_DIR")
143142
set(CIFPP_DATA_DIR ${CIFPP_SHARE_DIR})
144143
else()
145144
message(FATAL_ERROR "dssp: The CIFPP_SHARE_DIR variable is not found in the cifpp configuration files")

libdssp/src/dssp-io.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ void writeDSSP(const dssp &dssp, std::ostream &os)
162162
version.insert(version.end(), 10 - version.length(), ' ');
163163

164164
os << "==== Secondary Structure Definition by the program DSSP, NKI version " << version << " ==== DATE=" << std::put_time(tm, "%F") << " ." << std::endl
165-
<< "REFERENCE W. KABSCH AND C.SANDER, BIOPOLYMERS 22 (1983) 2577-2637 ." << std::endl
165+
<< "REFERENCE M.L. HEKKELMAN ET AL, PROTEIN SCIENCE 34.8 (2025) e70208; W. KABSCH AND C.SANDER, BIOPOLYMERS 22 (1983) 2577-2637    ." << std::endl
166166
<< dssp.get_pdb_header_line(dssp::pdb_record_type::HEADER) << '.' << std::endl
167167
<< dssp.get_pdb_header_line(dssp::pdb_record_type::COMPND) << '.' << std::endl
168168
<< dssp.get_pdb_header_line(dssp::pdb_record_type::SOURCE) << '.' << std::endl

test/unit-test-dssp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ TEST_CASE("ut_dssp")
110110
std::string line_t, line_r;
111111
CHECK((std::getline(test, line_t) and std::getline(reference, line_r)));
112112

113-
char kHeaderLineStart[] = "==== Secondary Structure Definition by the program DSSP, NKI version 4.5.0 ====";
113+
char kHeaderLineStart[] = "==== Secondary Structure Definition by the program DSSP, NKI version 4.5.4 ====";
114114
memcpy(kHeaderLineStart + 69, kVersionNumber, strlen(kVersionNumber));
115115

116116
CHECK(line_t.compare(0, std::strlen(kHeaderLineStart), kHeaderLineStart) == 0);

0 commit comments

Comments
 (0)