1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
//
// Copyright (C) 2024 Novartis Biomedical Research and other RDKit contributors
//
// @@ All Rights Reserved @@
// This file is part of the RDKit.
// The contents are covered by the terms of the BSD license
// which is included in the file license.txt, found at the root
// of the RDKit source tree.
//
#define USE_BETTER_ENUMS
#include "MolFragmenterJSONParser.h"
#include <RDGeneral/BoostStartInclude.h>
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/json_parser.hpp>
#include <RDGeneral/BoostEndInclude.h>
namespace RDKit {
void parseMolzipParametersJSON(MolzipParams ¶ms, const char *details_json) {
if (!details_json || !strlen(details_json)) {
return;
}
boost::property_tree::ptree pt;
std::istringstream ss;
ss.str(details_json);
boost::property_tree::read_json(ss, pt);
std::string label;
label = pt.get<std::string>("Label", label);
if (MolzipLabel::_is_valid(label.c_str())) {
params.label = MolzipLabel::_from_string(label.c_str());
}
auto atomSymbolsIt = pt.find("AtomSymbols");
if (atomSymbolsIt != pt.not_found()) {
const auto &jsonVect = atomSymbolsIt->second;
params.atomSymbols.resize(jsonVect.size());
std::transform(
jsonVect.begin(), jsonVect.end(), params.atomSymbols.begin(),
[](const auto &atomSymbolNode) {
return atomSymbolNode.second.template get_value<std::string>();
});
}
params.atomProperty =
pt.get<std::string>("AtomProperty", params.atomProperty);
params.enforceValenceRules =
pt.get<bool>("EnforceValenceRules", params.enforceValenceRules);
params.generateCoordinates =
pt.get<bool>("GenerateCoordinates", params.generateCoordinates);
}
} // end namespace RDKit
|