mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-04 21:54:27 +08:00
* short test file for MolVS standardize_sm * short test file for MolVS fragment * short test file for MolVS metals * short test file for MolVS normalize * short test file for MolVS reionize * short test file for MolVS tautomer * short test file for MolVS validate * long test file for MolVS standardize smiles * long test file for MolVS fragment * long test file for MolVS metals * long test file for MolVS normalize * long test file for MolVS reionize * long test file for MolVS tautomer * long test file for MolVS validate * Unit tests for MolVS steps * dropping support for Python2 * molvs/__init__.py * molvs/charge.py * molvs/errors.py * molvs/fragment.py * molvs/metal.py * molvs/normalize.py * molvs/resonance.py * molvs/standardize.py * molvs/tautomer.py * molvs/utils.py * molvs/validate.py * molvs/validations.py * molvs/cli.py * adapted and renamed molvs/cli.py to work within $RDBASE/Contrib/MolVS/ * setup MolStandardize directories, source with empty cleanup function, header, CMake files * corrections to empty source, header and test1.cpp * adding empty functions and initializers to MolStandardize * empty Metal source, header and added test * added most of Metal.cpp functionality and made some more tests * empty functions and initializers to Normalize * empty functions and initializers to Validate * added most code for RDKitDefault mode, along with some tests * restructure for abstract base class ValidateMethod * written in isNoneValidation for MolVSValidation * took out isNoneValidation, put in noAtomValidation, neutralValidation, isotopeValidation for MolVSValidation * added in AllowedAtoms * added in disallowedAtoms * corrections to Validate * added code for FragmentRemover * extended fragment functionality to include choose largest fragment, added in tests for fragment catalog, fragment remover. Also added fragmentValidation method in MolStandardize * added another test to testValidate test_fragment * corrections to fragment * corrections to Metal * added code for Normalize * added normalize member function to MolStandardize and added tests * added multi fragment functionality to Normalize.cpp and additional tests * TransformCatalog * tests for Normalize.cpp * first bit of cleanup * added most of Charge functionality and some tests * some corrections to Charge.cpp and some more tests to testCharge.cpp * corrections to Charge.cpp * start of Tautomer Enumerate with some tests * added BondType option to Tautomer Enumeration * correcting for some memory leakage * a few alterations to formatting * sorting out some memory leaks * sorting out some memory leaks * some corrections for PCS test set * redo tests with updated RDKit * fixing memory leak * more fixes after 100kPCS set testing * using tab as delimiter in CSVs rather than comma * tutorial for MolStandardize * still working on Tautomer enumeration * deleted some empty tests * starting writing tautomer canonicalize * rename test_data -> data (the source still needs to be updated) * automatic source reformatting * adjust to directory rename * move the fragment catalog test into the MolStandardize directory do not create separate library for FragmentCatalog * stop building separate libraries for the catalogs * move the CleanupParameters into the MolStandardize namespace * first pass at python wrapper * move the py module to the correct dir; add some python tests; add standardizeSmiles to python wrapper * disabling the compareMolVSTest since that requires command line arguments to run * get this building on windows * put the python lib in the right place * further work on python wrapper for rdMolStandardize * added get and set functions to Metal and wrapped them * added get and set functions to Metal and wrapped them * changed construstor of Reionizer class and input args for reionize, wrapped this default * overload Reionizer constructor so user can input own AcidBaseFile from python * added Uncharger class to Charge and added test for Uncharger * wrapped Fragment, fixed some memory leakage, changed some args and return types, added some tests * wrapped Normalized and changed how Normalizer class is initiated * changing MolVSValidation structure so user can choose which MolVS submethod they want * starting to write Wrap for Validate * now it compiles with Wrap/Validate.cpp * a couple refactorings around validate * move the validate code into the rdMolStandardize module * make sure a valid pointer is returned for standardizeSmiles * rdMolStandardize.MolVSValidation done and tests added * half way through AllowedAtomsValidation * finished AllowedAtomsValidation and DisallowedAtomsValidation * moved charge, fragment, metal, normalize into the rdMolStandardize module * changed tutorial to use wrapped code * added copyrights * added copyrights * move the data files * modify source files to adjust to the move * added validateSmiles functionality * removed std::cout * redid some of the 100k PCS tests * working on the tutorial * adding some documentation * deleting some comment lines * some changes after pull review * More changes after pull review * start of trying to make java wrap * remove some warnings, add some questions * additional warning removals, a bit more reporting * some test cleanups * enable testing of the java code
352 lines
12 KiB
C++
352 lines
12 KiB
C++
//
|
|
// Copyright (C) 2018 Susan H. Leung
|
|
//
|
|
// @@ 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.
|
|
//
|
|
#include "Validate.h"
|
|
#include <RDGeneral/Invariant.h>
|
|
#include <GraphMol/RDKitBase.h>
|
|
#include <GraphMol/ROMol.h>
|
|
#include <GraphMol/SmilesParse/SmilesParse.h>
|
|
#include <GraphMol/SmilesParse/SmilesWrite.h>
|
|
#include <GraphMol/FileParsers/FileParsers.h>
|
|
|
|
#include <iostream>
|
|
|
|
using namespace RDKit;
|
|
using namespace std;
|
|
using namespace MolStandardize;
|
|
|
|
void testRDKitValidation() {
|
|
BOOST_LOG(rdInfoLog) << "-----------------------\n Testing RDKit validation"
|
|
<< std::endl;
|
|
|
|
string smi1, smi2, smi3, smi4;
|
|
RDKitValidation vm;
|
|
|
|
// testing RDKitDefault
|
|
smi1 = "CO(C)C";
|
|
unique_ptr<ROMol> m1(SmilesToMol(smi1, 0, false));
|
|
vector<ValidationErrorInfo> errout1 = vm.validate(*m1, true);
|
|
for (auto &query : errout1) {
|
|
std::string msg = query.message();
|
|
TEST_ASSERT(msg ==
|
|
"INFO: [ValenceValidation] Explicit valence for atom # 1 O, 3, "
|
|
"is greater than permitted");
|
|
}
|
|
|
|
// testing for molecule with no atoms
|
|
smi2 = "";
|
|
unique_ptr<ROMol> m2(SmilesToMol(smi2, 0, false));
|
|
vector<ValidationErrorInfo> errout2 = vm.validate(*m2, true);
|
|
for (auto &query : errout2) {
|
|
std::string msg = query.message();
|
|
TEST_ASSERT(msg == "ERROR: [NoAtomValidation] Molecule has no atoms");
|
|
}
|
|
|
|
// testing molecule with multiple valency errors
|
|
smi3 = "CO(C)CCN(=O)=O";
|
|
unique_ptr<ROMol> m3(SmilesToMol(smi3, 0, false));
|
|
vector<ValidationErrorInfo> errout3 = vm.validate(*m3, true);
|
|
std::vector<string> msgs1;
|
|
std::vector<string> ans1 = {
|
|
"INFO: [ValenceValidation] Explicit valence for atom # 1 O, 3, is "
|
|
"greater than permitted",
|
|
"INFO: [ValenceValidation] Explicit valence for atom # 5 N, 5, is "
|
|
"greater than permitted"};
|
|
for (auto &query : errout3) {
|
|
msgs1.push_back(query.message());
|
|
}
|
|
TEST_ASSERT(msgs1 == ans1);
|
|
|
|
// testing molecule with multiple valency errors and only outputting
|
|
// first error
|
|
smi4 = "CO(C)CCN(=O)=O";
|
|
unique_ptr<ROMol> m4(SmilesToMol(smi4, 0, false));
|
|
vector<ValidationErrorInfo> errout4 = vm.validate(*m4, false);
|
|
std::vector<string> msgs2;
|
|
std::vector<string> ans2 = {
|
|
"INFO: [ValenceValidation] Explicit valence for atom # 1 O, 3, is "
|
|
"greater than permitted"};
|
|
for (auto &query : errout4) {
|
|
msgs2.push_back(query.message());
|
|
}
|
|
TEST_ASSERT(msgs2 == ans2);
|
|
BOOST_LOG(rdInfoLog) << "Finished" << std::endl;
|
|
}
|
|
|
|
void testMolVSValidation() {
|
|
BOOST_LOG(rdInfoLog) << "-----------------------\n Testing MolVS validation"
|
|
<< std::endl;
|
|
string smi1, smi2, smi3, smi4, smi5, smi6;
|
|
MolVSValidation vm;
|
|
|
|
// testing MolVSDefault
|
|
// testing for molecule with no atoms
|
|
smi1 = "";
|
|
unique_ptr<ROMol> m1(SmilesToMol(smi1, 0, false));
|
|
vector<ValidationErrorInfo> errout1 = vm.validate(*m1, true);
|
|
for (auto &query : errout1) {
|
|
std::string msg = query.message();
|
|
TEST_ASSERT(msg == "ERROR: [NoAtomValidation] Molecule has no atoms");
|
|
}
|
|
|
|
smi2 = "O=C([O-])c1ccccc1";
|
|
unique_ptr<ROMol> m2(SmilesToMol(smi2, 0, false));
|
|
vector<ValidationErrorInfo> errout2 = vm.validate(*m2, true);
|
|
for (auto &query : errout2) {
|
|
std::string msg = query.message();
|
|
TEST_ASSERT(msg ==
|
|
"INFO: [NeutralValidation] Not an overall neutral system (-1)");
|
|
}
|
|
|
|
smi3 = "CN=[NH+]CN=N";
|
|
unique_ptr<ROMol> m3(SmilesToMol(smi3, 0, false));
|
|
vector<ValidationErrorInfo> errout3 = vm.validate(*m3, true);
|
|
for (auto &query : errout3) {
|
|
std::string msg = query.message();
|
|
TEST_ASSERT(
|
|
msg ==
|
|
"INFO: [NeutralValidation] Not an overall neutral system (+1)"); // fix
|
|
// to
|
|
// show
|
|
// +
|
|
// sign
|
|
}
|
|
|
|
smi4 = "[13CH4]";
|
|
unique_ptr<ROMol> m4(SmilesToMol(smi4, 0, false));
|
|
vector<ValidationErrorInfo> errout4 = vm.validate(*m4, true);
|
|
for (auto &query : errout4) {
|
|
std::string msg = query.message();
|
|
TEST_ASSERT(msg ==
|
|
"INFO: [IsotopeValidation] Molecule contains isotope 13C");
|
|
}
|
|
|
|
smi5 = "[2H]C(Cl)(Cl)Cl";
|
|
unique_ptr<ROMol> m5(SmilesToMol(smi5, 0, false));
|
|
vector<ValidationErrorInfo> errout5 = vm.validate(*m5, true);
|
|
for (auto &query : errout5) {
|
|
std::string msg = query.message();
|
|
TEST_ASSERT(msg ==
|
|
"INFO: [IsotopeValidation] Molecule contains isotope 2H");
|
|
}
|
|
|
|
smi6 = "[2H]OC([2H])([2H])[2H]";
|
|
unique_ptr<ROMol> m6(SmilesToMol(smi6, 0, false));
|
|
vector<ValidationErrorInfo> errout6 = vm.validate(*m6, true);
|
|
for (auto &query : errout6) {
|
|
std::string msg = query.message();
|
|
TEST_ASSERT(msg ==
|
|
"INFO: [IsotopeValidation] Molecule contains isotope 2H");
|
|
}
|
|
|
|
std::string smi7 = "COc1cccc(C=N[N-]C(N)=O)c1[O-].O.O.O.O=[U+2]=O";
|
|
unique_ptr<ROMol> m7(SmilesToMol(smi7, 0, false));
|
|
vector<ValidationErrorInfo> errout7 = vm.validate(*m7, true);
|
|
TEST_ASSERT(errout7.size() != 0);
|
|
for (auto &query : errout7) {
|
|
std::string msg = query.message();
|
|
TEST_ASSERT(msg == "INFO: [FragmentValidation] water/hydroxide is present");
|
|
}
|
|
|
|
std::string smi8 = "CC(=O)O.NCC(=O)NCCCCCCCCCCNC(=O)CN";
|
|
unique_ptr<ROMol> m8(SmilesToMol(smi8, 0, false));
|
|
vector<ValidationErrorInfo> errout8 = vm.validate(*m8, true);
|
|
TEST_ASSERT(errout8.size() != 0);
|
|
for (auto &query : errout8) {
|
|
std::string msg = query.message();
|
|
TEST_ASSERT(msg ==
|
|
"INFO: [FragmentValidation] acetate/acetic acid is present");
|
|
}
|
|
|
|
std::string smi9 = "N#CC(Br)(Br)C#N.[Br-].[K+]";
|
|
unique_ptr<ROMol> m9(SmilesToMol(smi9, 0, false));
|
|
vector<ValidationErrorInfo> errout9 = vm.validate(*m9, true);
|
|
std::vector<std::string> ans = {
|
|
"INFO: [FragmentValidation] bromine is present",
|
|
"INFO: [FragmentValidation] potassium is present"};
|
|
TEST_ASSERT(errout9.size() == ans.size());
|
|
for (size_t i = 0; i < errout9.size(); ++i) {
|
|
TEST_ASSERT(errout9[i].message() == ans[i]);
|
|
}
|
|
|
|
std::string smi10 = "C1COCCO1.O=C(NO)NO";
|
|
unique_ptr<ROMol> m10(SmilesToMol(smi10, 0, false));
|
|
vector<ValidationErrorInfo> errout10 = vm.validate(*m10, true);
|
|
std::vector<std::string> ans10 = {
|
|
"INFO: [FragmentValidation] 1,2-dimethoxyethane is present",
|
|
"INFO: [FragmentValidation] 1,4-dioxane is present"};
|
|
TEST_ASSERT(errout10.size() == ans10.size());
|
|
for (size_t i = 0; i < errout10.size(); ++i) {
|
|
TEST_ASSERT(errout10[i].message() == ans10[i]);
|
|
}
|
|
BOOST_LOG(rdInfoLog) << "Finished" << std::endl;
|
|
}
|
|
|
|
void testMolVSOptions() {
|
|
BOOST_LOG(rdInfoLog) << "-----------------------\n Testing MolVS Options"
|
|
<< std::endl;
|
|
vector<boost::shared_ptr<MolVSValidations>> validations = {
|
|
boost::make_shared<IsotopeValidation>()};
|
|
MolVSValidation vm(validations);
|
|
|
|
// testing MolVSDefault
|
|
// testing for molecule with no atoms
|
|
string smi1 = "";
|
|
unique_ptr<ROMol> m1(SmilesToMol(smi1, 0, false));
|
|
vector<ValidationErrorInfo> errout1 = vm.validate(*m1, true);
|
|
for (auto &query : errout1) {
|
|
std::string msg = query.message();
|
|
// TEST_ASSERT(msg == "ERROR: [NoAtomValidation] Molecule has no atoms");
|
|
TEST_ASSERT(msg == "");
|
|
}
|
|
|
|
string smi2 = "O=C([O-])c1ccccc1";
|
|
unique_ptr<ROMol> m2(SmilesToMol(smi2, 0, false));
|
|
vector<ValidationErrorInfo> errout2 = vm.validate(*m2, true);
|
|
for (auto &query : errout2) {
|
|
std::string msg = query.message();
|
|
// TEST_ASSERT(msg ==
|
|
// "INFO: [NeutralValidation] Not an overall neutral system
|
|
// (-1)");
|
|
TEST_ASSERT(msg == "");
|
|
}
|
|
BOOST_LOG(rdInfoLog) << "Finished" << std::endl;
|
|
}
|
|
|
|
void testAllowedAtomsValidation() {
|
|
BOOST_LOG(rdInfoLog)
|
|
<< "-----------------------\n Testing AllowedAtoms validation"
|
|
<< std::endl;
|
|
|
|
// std::vector<string> atoms = {"C", "N", "O"};
|
|
std::vector<unsigned int> atoms = {6, 7, 8};
|
|
std::vector<shared_ptr<Atom>> atomList;
|
|
|
|
for (auto &atom : atoms) {
|
|
shared_ptr<Atom> a(new Atom(atom));
|
|
atomList.push_back(a);
|
|
}
|
|
|
|
AllowedAtomsValidation vm(atomList);
|
|
std::string smi1;
|
|
|
|
smi1 = "CC(=O)CF";
|
|
unique_ptr<ROMol> m1(SmilesToMol(smi1));
|
|
vector<ValidationErrorInfo> errout1 = vm.validate(*m1, true);
|
|
for (auto &query : errout1) {
|
|
std::string msg = query.message();
|
|
std::cout << msg << std::endl;
|
|
TEST_ASSERT(
|
|
msg ==
|
|
"INFO: [AllowedAtomsValidation] Atom F is not in allowedAtoms list");
|
|
}
|
|
BOOST_LOG(rdInfoLog) << "Finished" << std::endl;
|
|
}
|
|
|
|
void testDisallowedAtomsValidation() {
|
|
BOOST_LOG(rdInfoLog)
|
|
<< "-----------------------\n Testing DisallowedAtoms validation"
|
|
<< std::endl;
|
|
|
|
// std::vector<string> atoms = {"F", "Cl", "Br"};
|
|
std::vector<unsigned int> atoms = {9, 17, 35};
|
|
std::vector<shared_ptr<Atom>> atomList;
|
|
|
|
for (auto &atom : atoms) {
|
|
shared_ptr<Atom> a(new Atom(atom));
|
|
atomList.push_back(a);
|
|
}
|
|
|
|
DisallowedAtomsValidation vm(atomList);
|
|
std::string smi1;
|
|
|
|
smi1 = "CC(=O)CF";
|
|
unique_ptr<ROMol> m1(SmilesToMol(smi1));
|
|
vector<ValidationErrorInfo> errout1 = vm.validate(*m1, true);
|
|
for (auto &query : errout1) {
|
|
std::string msg = query.message();
|
|
std::cout << msg << std::endl;
|
|
TEST_ASSERT(
|
|
msg ==
|
|
"INFO: [DisallowedAtomsValidation] Atom F is in disallowedAtoms list");
|
|
}
|
|
BOOST_LOG(rdInfoLog) << "Finished" << std::endl;
|
|
}
|
|
|
|
void testFragment() {
|
|
BOOST_LOG(rdInfoLog)
|
|
<< "-----------------------\n Testing fragment validation" << std::endl;
|
|
|
|
string smi1, smi2, smi3, smi4, smi5, smi6;
|
|
MolVSValidation vm;
|
|
|
|
// testing MolVSValidation fragmentValidation
|
|
// FragmentValidation should identify 1,2-dichloroethane.
|
|
smi1 = "ClCCCl.c1ccccc1O";
|
|
unique_ptr<ROMol> m1(SmilesToMol(smi1, 0, false));
|
|
vector<ValidationErrorInfo> errout1 = vm.validate(*m1, true);
|
|
for (auto &query : errout1) {
|
|
std::string msg = query.message();
|
|
std::cout << msg << std::endl;
|
|
TEST_ASSERT(msg ==
|
|
"INFO: [FragmentValidation] 1,2-dichloroethane is present");
|
|
}
|
|
|
|
smi2 = "COCCOC.CCCBr";
|
|
unique_ptr<ROMol> m2(SmilesToMol(smi2, 0, false));
|
|
vector<ValidationErrorInfo> errout2 = vm.validate(*m2, true);
|
|
for (auto &query : errout2) {
|
|
std::string msg = query.message();
|
|
std::cout << msg << std::endl;
|
|
TEST_ASSERT(msg ==
|
|
"INFO: [FragmentValidation] 1,2-dimethoxyethane is present");
|
|
}
|
|
BOOST_LOG(rdInfoLog) << "Finished" << std::endl;
|
|
}
|
|
|
|
void testValidateSmiles() {
|
|
BOOST_LOG(rdInfoLog) << "-----------------------\n Testing ValidateSmiles"
|
|
<< std::endl;
|
|
|
|
// an invalid smiles should throw a ValueErrorException error
|
|
try {
|
|
vector<ValidationErrorInfo> errout1 = validateSmiles("3478q439g98h");
|
|
} catch (const ValueErrorException &e) {
|
|
std::cout << e.message() << std::endl;
|
|
TEST_ASSERT(e.message() ==
|
|
"SMILES Parse Error: syntax error for input: 3478q439g98h")
|
|
};
|
|
|
|
vector<ValidationErrorInfo> errout2 = validateSmiles("");
|
|
for (auto &query : errout2) {
|
|
std::string msg = query.message();
|
|
std::cout << msg << std::endl;
|
|
TEST_ASSERT(msg == "ERROR: [NoAtomValidation] Molecule has no atoms");
|
|
}
|
|
|
|
vector<ValidationErrorInfo> errout3 = validateSmiles("ClCCCl.c1ccccc1O");
|
|
for (auto &query : errout3) {
|
|
std::string msg = query.message();
|
|
TEST_ASSERT(msg ==
|
|
"INFO: [FragmentValidation] 1,2-dichloroethane is present");
|
|
}
|
|
BOOST_LOG(rdInfoLog) << "Finished" << std::endl;
|
|
}
|
|
|
|
int main() {
|
|
testRDKitValidation();
|
|
testMolVSValidation();
|
|
testMolVSOptions();
|
|
testAllowedAtomsValidation();
|
|
testDisallowedAtomsValidation();
|
|
testFragment();
|
|
testValidateSmiles();
|
|
return 0;
|
|
}
|