Commit 7513cc19 by Maarten L. Hekkelman

Merge branch 'trunk' into develop

parents ab2dd4b7 c98b8ae5
...@@ -22,9 +22,7 @@ int main() ...@@ -22,9 +22,7 @@ int main()
<< "residues with an OXT are:" << std::endl; << "residues with an OXT are:" << std::endl;
for (const auto& [asym, comp, seqnr]: db.find<std::string,std::string,int>( for (const auto& [asym, comp, seqnr]: db.find<std::string,std::string,int>(
cif::Key("label_atom_id") == "OXT", cif::Key("label_atom_id") == "OXT", "label_asym_id", "label_comp_id", "label_seq_id"))
{ "label_asym_id", "label_comp_id", "label_seq_id" }
))
{ {
std::cout << asym << ' ' << comp << ' ' << seqnr << std::endl; std::cout << asym << ' ' << comp << ' ' << seqnr << std::endl;
} }
......
...@@ -8,5 +8,5 @@ Name: libcifpp ...@@ -8,5 +8,5 @@ Name: libcifpp
Description: C++ library for the manipulation of mmCIF files. Description: C++ library for the manipulation of mmCIF files.
Version: @PACKAGE_VERSION@ Version: @PACKAGE_VERSION@
Libs: -L${libdir} -lcifpp @PRIVATE_LIBS@ Libs: -L${libdir} -lcifpp -lboost_regex -lboost_iostreams
Cflags: -I${includedir} @PRIVATE_INC_DIRS@ Cflags: -I${includedir} -pthread
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment