├── rdkit
├── __init__.py
├── utils
│ ├── __init__.py
│ ├── 12h.gif
│ ├── test1.gif
│ ├── test2.gif
│ ├── test3.gif
│ ├── pydoc_local.py
│ ├── retest.txt
│ └── GUIDs.py
├── Avalon
│ └── __init__.py
├── Chem
│ ├── MolDb
│ │ ├── __init__.py
│ │ └── Loader.py
│ ├── AtomPairs
│ │ ├── __init__.py
│ │ ├── test_data
│ │ │ ├── mols1000.pkl.gz
│ │ │ ├── mols1000.aps.pkl.gz
│ │ │ └── mols1000.tts.pkl.gz
│ │ └── test_list.py
│ ├── ChemUtils
│ │ ├── __init__.py
│ │ └── test_list.py
│ ├── FeatMaps
│ │ ├── __init__.py
│ │ └── test_list.py
│ ├── Features
│ │ └── __init__.py
│ ├── Pharm3D
│ │ ├── __init__.py
│ │ ├── test_data
│ │ │ ├── cdk2-syn-clip100.pkl.gz
│ │ │ ├── mol-r-3.mol
│ │ │ ├── mol-s-3.mol
│ │ │ ├── mol-r.mol
│ │ │ └── mol-s.mol
│ │ └── test_list.py
│ ├── Scaffolds
│ │ ├── __init__.py
│ │ └── test_list.py
│ ├── Subshape
│ │ ├── __init__.py
│ │ └── test_list.py
│ ├── Suppliers
│ │ ├── __init__.py
│ │ └── test_list.py
│ ├── test_data
│ │ ├── Crippen_contribs_regress.pkl
│ │ ├── buildingblocks.smi.gz
│ │ ├── pubchem-hard-set.sdf.gz
│ │ ├── Crippen.csv
│ │ └── dative.mol
│ ├── Draw
│ │ ├── FreeSans.ttf
│ │ └── test_list.py
│ ├── Fingerprints
│ │ ├── __init__.py
│ │ └── test_list.py
│ ├── MolCatalog.py
│ ├── EState
│ │ ├── test_list.py
│ │ └── __init__.py
│ ├── ChemicalForceFields.py
│ └── Pharm2D
│ │ └── test_list.py
├── Logger
│ ├── __init__.py
│ └── test_list.py
├── ML
│ ├── Cluster
│ │ ├── __init__.py
│ │ └── test_list.py
│ ├── Data
│ │ ├── __init__.py
│ │ ├── test_data
│ │ │ ├── test.qdat
│ │ │ └── test.dat
│ │ └── test_list.py
│ ├── MLUtils
│ │ └── __init__.py
│ ├── Neural
│ │ ├── __init__.py
│ │ └── test_list.py
│ ├── SLT
│ │ ├── __init__.py
│ │ └── test_list.py
│ ├── Scoring
│ │ ├── __init__.py
│ │ └── test_list.py
│ ├── Composite
│ │ ├── __init__.py
│ │ ├── test_data
│ │ │ ├── composite_base.pkl
│ │ │ ├── composite_base.both.pkl
│ │ │ ├── composite_base.neural.pkl
│ │ │ ├── composite_base.others.pkl
│ │ │ ├── composite_base.unitnet.pkl
│ │ │ ├── composite_plus_neural.pkl
│ │ │ ├── composite_base.others.net.pkl
│ │ │ ├── composite_base.unittree.pkl
│ │ │ ├── composite_base.others.both.pkl
│ │ │ └── composite_base.others.neural.pkl
│ │ └── test_list.py
│ ├── Descriptors
│ │ ├── __init__.py
│ │ ├── test_data
│ │ │ └── molcalc.dsc
│ │ └── test_list.py
│ ├── ModelPackage
│ │ ├── __init__.py
│ │ ├── test_data
│ │ │ └── Jan9_build3_model.pkl
│ │ └── test_list.py
│ ├── FeatureSelect
│ │ ├── __init__.py
│ │ └── test_list.py
│ ├── InfoTheory
│ │ ├── __init__.py
│ │ └── test_list.py
│ ├── DecTree
│ │ ├── test_data
│ │ │ ├── foo.pdf
│ │ │ └── cdk2-few.pkl.gz
│ │ ├── __init__.py
│ │ └── test_list.py
│ ├── test_data
│ │ ├── humanoral.1.pkl
│ │ ├── humanoral.2.pkl
│ │ ├── ferromag_filt_10_3.pkl
│ │ └── ferromag_shuffle_10_3.pkl
│ ├── KNN
│ │ ├── __init__.py
│ │ ├── test_data
│ │ │ └── sample_pts.csv
│ │ └── test_list.py
│ ├── NaiveBayes
│ │ ├── __init__.py
│ │ └── test_list.py
│ └── __init__.py
├── sping
│ ├── Qt
│ │ └── __init__.py
│ ├── ReportLab
│ │ └── __init__.py
│ ├── util
│ │ └── __init__.py
│ ├── PDF
│ │ ├── __init__.py
│ │ ├── pdfdoc.py
│ │ └── pdfgeom.py
│ ├── TK
│ │ └── __init__.py
│ ├── WX
│ │ └── __init__.py
│ ├── tests
│ │ ├── __init__.py
│ │ └── pstests.py
│ ├── PIL
│ │ ├── __init__.py
│ │ └── pilfonts
│ │ │ ├── courier-8.pbm
│ │ │ ├── courier-8.pil
│ │ │ ├── symbol-10.pbm
│ │ │ ├── symbol-10.pil
│ │ │ ├── symbol-12.pbm
│ │ │ ├── symbol-12.pil
│ │ │ ├── symbol-14.pbm
│ │ │ ├── symbol-14.pil
│ │ │ ├── symbol-18.pbm
│ │ │ ├── symbol-18.pil
│ │ │ ├── symbol-24.pbm
│ │ │ ├── symbol-24.pil
│ │ │ ├── symbol-8.pbm
│ │ │ ├── symbol-8.pil
│ │ │ ├── times-10.pbm
│ │ │ ├── times-10.pil
│ │ │ ├── times-12.pbm
│ │ │ ├── times-12.pil
│ │ │ ├── times-14.pbm
│ │ │ ├── times-14.pil
│ │ │ ├── times-18.pbm
│ │ │ ├── times-18.pil
│ │ │ ├── times-24.pbm
│ │ │ ├── times-24.pil
│ │ │ ├── times-8.pbm
│ │ │ ├── times-8.pil
│ │ │ ├── courier-10.pbm
│ │ │ ├── courier-10.pil
│ │ │ ├── courier-12.pbm
│ │ │ ├── courier-12.pil
│ │ │ ├── courier-14.pbm
│ │ │ ├── courier-14.pil
│ │ │ ├── courier-18.pbm
│ │ │ ├── courier-18.pil
│ │ │ ├── courier-24.pbm
│ │ │ ├── courier-24.pil
│ │ │ ├── courier-8.pil.1
│ │ │ ├── helvetica-8.pbm
│ │ │ ├── helvetica-8.pil
│ │ │ ├── courier-bold-8.pbm
│ │ │ ├── courier-bold-8.pil
│ │ │ ├── helvetica-10.pbm
│ │ │ ├── helvetica-10.pil
│ │ │ ├── helvetica-12.pbm
│ │ │ ├── helvetica-12.pil
│ │ │ ├── helvetica-14.pbm
│ │ │ ├── helvetica-14.pil
│ │ │ ├── helvetica-18.pbm
│ │ │ ├── helvetica-18.pil
│ │ │ ├── helvetica-24.pbm
│ │ │ ├── helvetica-24.pil
│ │ │ ├── times-bold-10.pbm
│ │ │ ├── times-bold-10.pil
│ │ │ ├── times-bold-12.pbm
│ │ │ ├── times-bold-12.pil
│ │ │ ├── times-bold-14.pbm
│ │ │ ├── times-bold-14.pil
│ │ │ ├── times-bold-18.pbm
│ │ │ ├── times-bold-18.pil
│ │ │ ├── times-bold-24.pbm
│ │ │ ├── times-bold-24.pil
│ │ │ ├── times-bold-8.pbm
│ │ │ ├── times-bold-8.pil
│ │ │ ├── courier-bold-10.pbm
│ │ │ ├── courier-bold-10.pil
│ │ │ ├── courier-bold-12.pbm
│ │ │ ├── courier-bold-12.pil
│ │ │ ├── courier-bold-14.pbm
│ │ │ ├── courier-bold-14.pil
│ │ │ ├── courier-bold-18.pbm
│ │ │ ├── courier-bold-18.pil
│ │ │ ├── courier-bold-24.pbm
│ │ │ ├── courier-bold-24.pil
│ │ │ ├── helvetica-bold-8.pbm
│ │ │ ├── helvetica-bold-8.pil
│ │ │ ├── helvetica-bold-10.pbm
│ │ │ ├── helvetica-bold-10.pil
│ │ │ ├── helvetica-bold-12.pbm
│ │ │ ├── helvetica-bold-12.pil
│ │ │ ├── helvetica-bold-14.pbm
│ │ │ ├── helvetica-bold-14.pil
│ │ │ ├── helvetica-bold-18.pbm
│ │ │ ├── helvetica-bold-18.pil
│ │ │ ├── helvetica-bold-24.pbm
│ │ │ ├── helvetica-bold-24.pil
│ │ │ └── removemedium.py
│ ├── PS
│ │ ├── __init__.py
│ │ └── fontinfo.py
│ ├── Pyart
│ │ └── __init__.py
│ ├── SVG
│ │ └── __init__.py
│ ├── __init__.py
│ └── utils.py
├── Dbase
│ ├── Pubmed
│ │ ├── __init__.py
│ │ ├── test_data
│ │ │ ├── counts.xml
│ │ │ ├── nohits.xml
│ │ │ └── haslinks.xml
│ │ └── test_list.py
│ ├── test_data
│ │ ├── dbtest.csv
│ │ ├── dbtest.nulls.csv
│ │ ├── dbtest.xls
│ │ ├── rdtest.sql
│ │ └── dbtest.nulls.xls
│ ├── test_list.py
│ └── __init__.py
├── VLib
│ ├── __init__.py
│ ├── NodeLib
│ │ ├── __init__.py
│ │ └── test_list.py
│ └── test_list.py
├── DataManip
│ ├── __init__.py
│ └── Metric
│ │ └── __init__.py
├── DistanceGeometry
│ └── __init__.py
├── ForceField
│ └── __init__.py
├── Numerics
│ └── __init__.py
├── SimDivFilters
│ ├── test_list.py
│ └── __init__.py
├── Geometry
│ └── __init__.py
├── DataStructs
│ └── test_list.py
├── epydoc.config
└── test_list.py
├── Code
├── GraphMol
│ ├── libs
│ │ └── .cvskeep
│ ├── testExecs
│ │ └── .cvskeep
│ ├── Depictor
│ │ ├── testExecs
│ │ │ └── .cvskeep
│ │ ├── test_list.py
│ │ └── Wrap
│ │ │ ├── test_list.py
│ │ │ └── CMakeLists.txt
│ ├── Subgraphs
│ │ ├── testExecs
│ │ │ └── .cvskeep
│ │ ├── test_list.py
│ │ └── CMakeLists.txt
│ ├── Substruct
│ │ ├── testExecs
│ │ │ └── .cvskeep
│ │ ├── regress.txt
│ │ ├── test_list.py
│ │ └── CMakeLists.txt
│ ├── FileParsers
│ │ ├── testExecs
│ │ │ └── .cvskeep
│ │ ├── test_data
│ │ │ ├── empty2.sdf
│ │ │ ├── empty.sdf
│ │ │ ├── empty.smi
│ │ │ ├── NCI_aids_few.sdf.gz
│ │ │ ├── Issue3482695.sdf
│ │ │ ├── cdk2_stereo.csv
│ │ │ ├── missingCR.sdf
│ │ │ ├── Issue269.mol
│ │ │ ├── mol_nomol.mol2
│ │ │ ├── bondorder0.mol
│ │ │ ├── bondorder9.mol
│ │ │ ├── ringcount_0.mol
│ │ │ ├── ringcount_2.mol
│ │ │ ├── ringcount_3.mol
│ │ │ ├── ringcount_4.mol
│ │ │ ├── ringcount_star.mol
│ │ │ ├── unsaturation.mol
│ │ │ ├── mol_noatoms.mol2
│ │ │ ├── v3k.4a.mol
│ │ │ ├── v3k.4b.mol
│ │ │ ├── lists_plus_values.mol
│ │ │ ├── D_in_CTAB.mol
│ │ │ ├── T_in_CTAB.mol
│ │ │ ├── subst3.mol
│ │ │ ├── subst4.mol
│ │ │ ├── SkipLines.sdf
│ │ │ ├── v3k.rbc.mol
│ │ │ ├── v3k.6a.mol
│ │ │ ├── v3k.6b.mol
│ │ │ ├── Issue142d.mol
│ │ │ ├── simple_e.mol
│ │ │ ├── simple_z.mol
│ │ │ ├── chiral3.mol
│ │ │ ├── chiral3a.mol
│ │ │ ├── chiral4.mol
│ │ │ ├── chiral4a.mol
│ │ │ ├── cistrans.1.mol
│ │ │ ├── cistrans.1a.mol
│ │ │ ├── cistrans.2.mol
│ │ │ ├── cistrans.2a.mol
│ │ │ ├── cistrans.3.mol
│ │ │ ├── simple_either.mol
│ │ │ ├── ChiralityAndBondDir1b.mol
│ │ │ ├── ChiralityAndBondDir2b.mol
│ │ │ ├── AtomProps1.mol
│ │ │ ├── three_coordinate_chirality.1.mol
│ │ │ ├── three_coordinate_chirality.2.mol
│ │ │ ├── three_coordinate_chirality.3.mol
│ │ │ ├── three_coordinate_chirality.4.mol
│ │ │ ├── three_coordinate_chirality.5.mol
│ │ │ ├── three_coordinate_chirality.6.mol
│ │ │ ├── radical.mol
│ │ │ ├── subst1.mol
│ │ │ ├── subst2.mol
│ │ │ ├── v3k.5b.mol
│ │ │ ├── AtomProps2.mol
│ │ │ ├── Issue399a.mol
│ │ │ ├── v3k.5a.mol
│ │ │ ├── not-list-query.mol
│ │ │ ├── ringcount_star2.mol
│ │ │ ├── combined.mol
│ │ │ ├── conflicting-list-query.mol
│ │ │ └── ringcount_star3.mol
│ │ └── test_list.py
│ ├── Fingerprints
│ │ ├── testExecs
│ │ │ └── .cvskeep
│ │ └── test_list.py
│ ├── FragCatalog
│ │ ├── testExecs
│ │ │ └── .cvskeep
│ │ ├── test_data
│ │ │ ├── 4mols.smi
│ │ │ └── mols.smi
│ │ ├── test_list.py
│ │ └── Wrap
│ │ │ ├── test_list.py
│ │ │ ├── rdfragcatalog.h
│ │ │ └── CMakeLists.txt
│ ├── MolTransforms
│ │ ├── testExecs
│ │ │ └── .cvskeep
│ │ ├── ReadMe
│ │ ├── Wrap
│ │ │ ├── test_list.py
│ │ │ └── CMakeLists.txt
│ │ ├── test_list.py
│ │ └── CMakeLists.txt
│ ├── SmilesParse
│ │ ├── regress.txt
│ │ ├── testExecs
│ │ │ └── .cvskeep
│ │ ├── runflex.sh
│ │ ├── test_list.py
│ │ └── primes.h
│ ├── ChemTransforms
│ │ ├── testData
│ │ │ ├── query_file2.txt
│ │ │ ├── ethanol.mol
│ │ │ └── oldcrash.mol
│ │ └── test_list.py
│ ├── regress.txt
│ ├── test_data
│ │ ├── canonSmiles.v1.pkl
│ │ ├── canonSmiles.v2.pkl
│ │ ├── Issue2788233.mol
│ │ ├── Issue2951221.2.mol
│ │ └── Issue2951221.3.mol
│ ├── MolDrawing
│ │ └── CMakeLists.txt
│ ├── MolChemicalFeatures
│ │ ├── test_data
│ │ │ ├── featDef.txt
│ │ │ └── featDef2.txt
│ │ ├── Wrap
│ │ │ ├── test_list.py
│ │ │ └── CMakeLists.txt
│ │ └── test_list.py
│ ├── ForceFieldHelpers
│ │ ├── UFF
│ │ │ └── CMakeLists.txt
│ │ ├── test_data
│ │ │ ├── Issue2378119.2.mol
│ │ │ └── Issue2378119.mol
│ │ ├── Wrap
│ │ │ ├── test_list.py
│ │ │ └── CMakeLists.txt
│ │ ├── test_list.py
│ │ └── CMakeLists.txt
│ ├── PartialCharges
│ │ ├── CMakeLists.txt
│ │ └── Wrap
│ │ │ ├── test_list.py
│ │ │ ├── CMakeLists.txt
│ │ │ └── test_data
│ │ │ └── halgren.smi
│ ├── MolAlign
│ │ ├── Wrap
│ │ │ ├── test_list.py
│ │ │ └── CMakeLists.txt
│ │ ├── test_list.py
│ │ └── CMakeLists.txt
│ ├── MolCatalog
│ │ ├── test_list.py
│ │ ├── Wrap
│ │ │ ├── test_list.py
│ │ │ ├── CMakeLists.txt
│ │ │ └── rdMolCatalog.h
│ │ ├── CMakeLists.txt
│ │ └── MolCatalog.h
│ ├── Descriptors
│ │ ├── Wrap
│ │ │ ├── test_list.py
│ │ │ └── CMakeLists.txt
│ │ └── test_list.py
│ ├── DistGeomHelpers
│ │ ├── Wrap
│ │ │ ├── test_list.py
│ │ │ └── CMakeLists.txt
│ │ └── test_list.py
│ ├── ShapeHelpers
│ │ ├── Wrap
│ │ │ ├── test_list.py
│ │ │ └── CMakeLists.txt
│ │ ├── test_list.py
│ │ └── CMakeLists.txt
│ ├── SLNParse
│ │ ├── Wrap
│ │ │ ├── test_list.py
│ │ │ └── CMakeLists.txt
│ │ └── test_list.py
│ ├── ChemReactions
│ │ ├── Wrap
│ │ │ ├── test_list.py
│ │ │ └── CMakeLists.txt
│ │ └── test_list.py
│ ├── Wrap
│ │ ├── test_list.py
│ │ ├── test_data
│ │ │ └── easy_smiles.txt
│ │ ├── rdmolops.h
│ │ ├── rdmolfiles.h
│ │ └── rdchem.h
│ ├── GraphMol.cpp
│ └── GraphMol.h
├── Query
│ ├── testExecs
│ │ └── .cvskeep
│ ├── test_list.py
│ └── CMakeLists.txt
├── RDGeneral
│ ├── testExecs
│ │ └── .cvskeep
│ ├── test_list.py
│ └── versions.h.cmake
├── DataManip
│ ├── MetricMatrixCalc
│ │ ├── testExecs
│ │ │ └── .cvskeep
│ │ ├── CMakeLists.txt
│ │ ├── test_list.py
│ │ └── Wrap
│ │ │ ├── test_list.py
│ │ │ └── CMakeLists.txt
│ └── CMakeLists.txt
├── ML
│ ├── Cluster
│ │ ├── CMakeLists.txt
│ │ └── Murtagh
│ │ │ └── CMakeLists.txt
│ ├── FeatureSelect
│ │ ├── CMakeLists.txt
│ │ └── Wrap
│ │ │ ├── test_list.py
│ │ │ └── CMakeLists.txt
│ ├── Data
│ │ └── CMakeLists.txt
│ ├── CMakeLists.txt
│ ├── InfoTheory
│ │ ├── Wrap
│ │ │ ├── test_list.py
│ │ │ └── CMakeLists.txt
│ │ └── CMakeLists.txt
│ └── test_list.py
├── Demos
│ ├── RDKit
│ │ ├── Basement
│ │ │ ├── xpcom
│ │ │ │ ├── demo
│ │ │ │ │ ├── rd.js
│ │ │ │ │ └── sorttable.js
│ │ │ │ ├── IRDKit.xpt
│ │ │ │ ├── RDKitImpl.h
│ │ │ │ └── RDMolImpl.h
│ │ │ ├── BinaryIO
│ │ │ │ ├── test_data
│ │ │ │ │ └── triazine.mol.gz
│ │ │ │ ├── test_list.py
│ │ │ │ └── Makefile
│ │ │ └── TemplEnum
│ │ │ │ └── Makefile
│ │ ├── GettingStarted
│ │ │ └── CMakeLists.txt
│ │ └── Draw
│ │ │ └── qtDemo
│ │ │ └── qtdraw_demo.pro
│ └── boost
│ │ ├── cross_module
│ │ ├── readme.txt
│ │ ├── test.py
│ │ ├── moda.cpp
│ │ ├── mods.h
│ │ └── modb.cpp
│ │ ├── any_container
│ │ └── Makefile
│ │ ├── overloads
│ │ └── test.py
│ │ ├── numpy
│ │ └── test.py
│ │ ├── cross_mod_err
│ │ └── moduleB.cpp
│ │ └── smartPtrsAndIters
│ │ └── setup.py
├── Features
│ ├── CMakeLists.txt
│ ├── test_list.py
│ └── Feature.cpp
├── Geometry
│ ├── testData
│ │ └── grid1.bin
│ ├── Wrap
│ │ ├── test_list.py
│ │ └── CMakeLists.txt
│ ├── test_list.py
│ └── Transform.h
├── DataStructs
│ ├── testData
│ │ └── test1.bin
│ ├── Wrap
│ │ ├── testData
│ │ │ ├── isiv.pkl
│ │ │ └── lsiv.pkl
│ │ ├── DataStructs.h
│ │ └── test_list.py
│ └── test_list.py
├── PgSQL
│ └── rdkit
│ │ ├── rdkit.control
│ │ └── sql
│ │ └── inchi.sql
├── RDBoost
│ └── Wrap
│ │ └── CMakeLists.txt
├── ForceField
│ ├── Wrap
│ │ └── CMakeLists.txt
│ └── test_list.py
├── JavaWrappers
│ └── DiversityPick.i
├── ChemicalFeatures
│ ├── Wrap
│ │ ├── testData
│ │ │ ├── feat.pkl
│ │ │ └── featv2.pkl
│ │ ├── test_list.py
│ │ └── CMakeLists.txt
│ ├── test_list.py
│ └── CMakeLists.txt
├── Catalogs
│ ├── CMakeLists.txt
│ ├── Catalog.cpp
│ ├── CatalogParams.cpp
│ └── CatalogEntry.cpp
├── Numerics
│ ├── Alignment
│ │ ├── CMakeLists.txt
│ │ ├── Wrap
│ │ │ ├── test_list.py
│ │ │ └── CMakeLists.txt
│ │ └── test_list.py
│ ├── EigenSolvers
│ │ ├── test_list.py
│ │ └── CMakeLists.txt
│ ├── Optimizer
│ │ ├── CMakeLists.txt
│ │ ├── test_list.py
│ │ ├── BFGSOpt.cpp
│ │ └── LinearSearch.cpp
│ ├── CMakeLists.txt
│ └── test_list.py
├── doxygen
│ ├── rdkdocs_footer.html
│ └── rdkdocs_header.html
├── DistGeom
│ ├── Wrap
│ │ ├── test_list.py
│ │ └── CMakeLists.txt
│ └── test_list.py
└── SimDivPickers
│ ├── Wrap
│ ├── test_list.py
│ └── CMakeLists.txt
│ ├── CMakeLists.txt
│ └── MaxMinPicker.cpp
├── Data
├── RDData.sqlt
├── RDTests.sqlt
├── SmartsLib
│ └── tests
│ │ ├── mols.1000.pkl.gz
│ │ └── fps.1000.counts.pkl.gz
└── DTDs
│ └── validate.py
├── Docs
├── Book
│ ├── RDKit.pdf
│ ├── images
│ │ ├── indole1.png
│ │ ├── cdk2_mol1.png
│ │ ├── cdk2_mol2.png
│ │ ├── picture_0.png
│ │ ├── picture_1.png
│ │ ├── picture_2.png
│ │ ├── picture_3.png
│ │ ├── picture_4.png
│ │ ├── picture_5.png
│ │ ├── picture_6.png
│ │ ├── picture_7.png
│ │ ├── picture_8.png
│ │ ├── picture_9.png
│ │ ├── cdk2_molgrid.png
│ │ ├── picture_10.jpg
│ │ └── cdk2_molgrid_aligned.png
│ └── data
│ │ ├── actives_5ht3.sdf.gz
│ │ └── bzr.smi
├── Images
│ ├── logo.ai
│ ├── logo.png
│ ├── logo.lrg.png
│ └── wiki
│ │ └── morganfp_atomenv1.png
├── Design
│ ├── Query.dia
│ ├── RDKit.dia
│ └── RDUtils.dia
├── RDKit_Overview.odp
├── RDKit_Overview.pdf
├── Programs
│ └── RDPharm3D
│ │ ├── Icon.ico
│ │ ├── RDPharm3D.chm
│ │ ├── References.htm
│ │ ├── Refine-shot1.jpg
│ │ ├── Refine-shot2.jpg
│ │ ├── AddPoints-shot1.jpg
│ │ ├── AddPoints-shot2.jpg
│ │ ├── AddPoints-shot3.jpg
│ │ ├── RDPharm3D-Splash.jpg
│ │ ├── Index.hhk
│ │ └── index.htm
├── Code
│ ├── Chem
│ │ ├── Pharm2D.triangles.ai
│ │ ├── Pharm2D.signatures.ai
│ │ ├── Pharm2D.signatures.jpg
│ │ └── Pharm2D.triangles.jpg
│ └── index.html
└── Analysis
│ ├── ForceField
│ ├── UFF Parameters.ods
│ └── ForceFieldTerms.new.odt
│ └── Descriptors
│ └── Correlations
│ ├── DrugLikeT80_CorrMat.png
│ ├── LeadLikeT80_CorrMat.png
│ └── FragmentLikeT80_CorrMat.png
├── External
├── cmim-1.0
│ ├── README
│ ├── cmim.cc
│ ├── misc.cc
│ ├── misc.h
│ ├── test.sh
│ ├── CMakeLists.txt
│ ├── classifier.h
│ ├── classifier.cc
│ ├── fastentropy.cc
│ ├── fastentropy.h
│ └── create_samples.cc
├── CMakeLists.txt
├── AvalonTools
│ ├── Wrap
│ │ ├── test_list.py
│ │ └── CMakeLists.txt
│ └── test_list.py
└── INCHI-API
│ └── Wrap
│ └── CMakeLists.txt
├── Regress
└── Data
│ ├── queries.txt.gz
│ ├── fptest.pgdump.gz
│ ├── mols.1000.sdf.gz
│ └── mols.1000.txt.gz
├── Projects
├── CMakeLists.txt
├── DbCLI
│ ├── test_list.py
│ └── testData
│ │ └── README
└── test_list.py
├── Contrib
├── mmpa
│ ├── sample_mmps_maxratio.csv
│ ├── sample_cansmirks.txt
│ ├── sample_smirks.txt
│ ├── sample_mmps_maxheavy.csv
│ ├── sample.smi
│ └── sample_mmps_sym_maxheavy.csv
└── PBF
│ └── Makefile
├── rdkit-config-version.cmake.in
├── rdkit-config.cmake.in
└── Web
└── RDExtras
└── .htaccess
/rdkit/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/rdkit/utils/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Code/GraphMol/libs/.cvskeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/rdkit/Avalon/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/rdkit/Chem/MolDb/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/rdkit/Logger/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/rdkit/ML/Cluster/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/rdkit/ML/Data/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/rdkit/ML/MLUtils/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/rdkit/ML/Neural/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/rdkit/ML/SLT/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/rdkit/ML/Scoring/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/rdkit/sping/Qt/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Code/GraphMol/testExecs/.cvskeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Code/Query/testExecs/.cvskeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Code/RDGeneral/testExecs/.cvskeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/rdkit/Chem/AtomPairs/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/rdkit/Chem/ChemUtils/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/rdkit/Chem/FeatMaps/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/rdkit/Chem/Features/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/rdkit/Chem/Pharm3D/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/rdkit/Chem/Scaffolds/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/rdkit/Chem/Subshape/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/rdkit/Chem/Suppliers/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/rdkit/Dbase/Pubmed/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/rdkit/ML/Composite/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/rdkit/ML/Descriptors/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/rdkit/ML/ModelPackage/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/rdkit/sping/ReportLab/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Code/GraphMol/Depictor/testExecs/.cvskeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Code/GraphMol/Subgraphs/testExecs/.cvskeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Code/GraphMol/Substruct/testExecs/.cvskeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/rdkit/VLib/__init__.py:
--------------------------------------------------------------------------------
1 | __all__ = []
2 |
--------------------------------------------------------------------------------
/Code/GraphMol/FileParsers/testExecs/.cvskeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Code/GraphMol/FileParsers/test_data/empty2.sdf:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Code/GraphMol/Fingerprints/testExecs/.cvskeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Code/GraphMol/FragCatalog/testExecs/.cvskeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Code/GraphMol/MolTransforms/testExecs/.cvskeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Code/GraphMol/SmilesParse/regress.txt:
--------------------------------------------------------------------------------
1 | test.exe
--------------------------------------------------------------------------------
/Code/GraphMol/SmilesParse/testExecs/.cvskeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/rdkit/sping/util/__init__.py:
--------------------------------------------------------------------------------
1 | # dummy for now
2 |
--------------------------------------------------------------------------------
/Code/DataManip/MetricMatrixCalc/testExecs/.cvskeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Code/GraphMol/Substruct/regress.txt:
--------------------------------------------------------------------------------
1 | test1.exe
2 |
--------------------------------------------------------------------------------
/rdkit/Chem/test_data/Crippen_contribs_regress.pkl:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/rdkit/DataManip/__init__.py:
--------------------------------------------------------------------------------
1 | __all__=['Metric']
2 |
--------------------------------------------------------------------------------
/rdkit/sping/PDF/__init__.py:
--------------------------------------------------------------------------------
1 | from pidPDF import *
2 |
--------------------------------------------------------------------------------
/rdkit/sping/TK/__init__.py:
--------------------------------------------------------------------------------
1 | from pidTK import *
2 |
--------------------------------------------------------------------------------
/rdkit/sping/WX/__init__.py:
--------------------------------------------------------------------------------
1 | from pidWX import *
2 |
--------------------------------------------------------------------------------
/Code/GraphMol/FileParsers/test_data/empty.sdf:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/Code/ML/Cluster/CMakeLists.txt:
--------------------------------------------------------------------------------
1 | add_subdirectory(Murtagh)
2 |
--------------------------------------------------------------------------------
/Code/ML/FeatureSelect/CMakeLists.txt:
--------------------------------------------------------------------------------
1 | add_subdirectory(Wrap)
2 |
--------------------------------------------------------------------------------
/rdkit/DistanceGeometry/__init__.py:
--------------------------------------------------------------------------------
1 | from DistGeom import *
2 |
--------------------------------------------------------------------------------
/rdkit/ForceField/__init__.py:
--------------------------------------------------------------------------------
1 | from rdForceField import *
2 |
--------------------------------------------------------------------------------
/rdkit/sping/tests/__init__.py:
--------------------------------------------------------------------------------
1 | # dummy package indicator
2 |
--------------------------------------------------------------------------------
/Code/DataManip/CMakeLists.txt:
--------------------------------------------------------------------------------
1 | add_subdirectory(MetricMatrixCalc)
2 |
--------------------------------------------------------------------------------
/rdkit/sping/PIL/__init__.py:
--------------------------------------------------------------------------------
1 | # package
2 | from pidPIL import *
3 |
--------------------------------------------------------------------------------
/rdkit/sping/PS/__init__.py:
--------------------------------------------------------------------------------
1 | # package
2 | from pidPS import *
3 |
--------------------------------------------------------------------------------
/Code/Demos/RDKit/Basement/xpcom/demo/rd.js:
--------------------------------------------------------------------------------
1 | var rdMonkeyLock=true;
2 |
--------------------------------------------------------------------------------
/Code/GraphMol/ChemTransforms/testData/query_file2.txt:
--------------------------------------------------------------------------------
1 | AcidChloride
2 |
--------------------------------------------------------------------------------
/Code/GraphMol/FileParsers/test_data/empty.smi:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rdkit/sping/Pyart/__init__.py:
--------------------------------------------------------------------------------
1 | # sping:: pyart
2 |
3 | from pidPyart import *
4 |
--------------------------------------------------------------------------------
/rdkit/sping/SVG/__init__.py:
--------------------------------------------------------------------------------
1 | # simple __init__.py
2 |
3 | from pidSVG import *
4 |
--------------------------------------------------------------------------------
/Data/RDData.sqlt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Data/RDData.sqlt
--------------------------------------------------------------------------------
/Data/RDTests.sqlt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Data/RDTests.sqlt
--------------------------------------------------------------------------------
/Code/Features/CMakeLists.txt:
--------------------------------------------------------------------------------
1 | rdkit_headers(Feature.h
2 | DEST Features)
3 |
--------------------------------------------------------------------------------
/Code/GraphMol/regress.txt:
--------------------------------------------------------------------------------
1 | test1.exe
2 | querytest.exe
3 | molopstest.exe
4 | itertest.exe
5 |
--------------------------------------------------------------------------------
/Docs/Book/RDKit.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Book/RDKit.pdf
--------------------------------------------------------------------------------
/Docs/Images/logo.ai:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Images/logo.ai
--------------------------------------------------------------------------------
/Docs/Images/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Images/logo.png
--------------------------------------------------------------------------------
/rdkit/utils/12h.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/utils/12h.gif
--------------------------------------------------------------------------------
/Docs/Design/Query.dia:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Design/Query.dia
--------------------------------------------------------------------------------
/Docs/Design/RDKit.dia:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Design/RDKit.dia
--------------------------------------------------------------------------------
/Docs/Design/RDUtils.dia:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Design/RDUtils.dia
--------------------------------------------------------------------------------
/Docs/RDKit_Overview.odp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/RDKit_Overview.odp
--------------------------------------------------------------------------------
/Docs/RDKit_Overview.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/RDKit_Overview.pdf
--------------------------------------------------------------------------------
/rdkit/Dbase/test_data/dbtest.csv:
--------------------------------------------------------------------------------
1 | int col,floatCol,strCol
2 | 1,1,1
3 | 2,2.4,1
4 | 3,3,fiib
5 |
--------------------------------------------------------------------------------
/rdkit/utils/test1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/utils/test1.gif
--------------------------------------------------------------------------------
/rdkit/utils/test2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/utils/test2.gif
--------------------------------------------------------------------------------
/rdkit/utils/test3.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/utils/test3.gif
--------------------------------------------------------------------------------
/Docs/Images/logo.lrg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Images/logo.lrg.png
--------------------------------------------------------------------------------
/External/cmim-1.0/README:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/External/cmim-1.0/README
--------------------------------------------------------------------------------
/External/cmim-1.0/cmim.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/External/cmim-1.0/cmim.cc
--------------------------------------------------------------------------------
/External/cmim-1.0/misc.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/External/cmim-1.0/misc.cc
--------------------------------------------------------------------------------
/External/cmim-1.0/misc.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/External/cmim-1.0/misc.h
--------------------------------------------------------------------------------
/External/cmim-1.0/test.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/External/cmim-1.0/test.sh
--------------------------------------------------------------------------------
/rdkit/ML/FeatureSelect/__init__.py:
--------------------------------------------------------------------------------
1 | from rdkit import DataStructs
2 | from rdFeatSelect import *
3 |
--------------------------------------------------------------------------------
/rdkit/sping/PDF/pdfdoc.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PDF/pdfdoc.py
--------------------------------------------------------------------------------
/Docs/Book/images/indole1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Book/images/indole1.png
--------------------------------------------------------------------------------
/Regress/Data/queries.txt.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Regress/Data/queries.txt.gz
--------------------------------------------------------------------------------
/rdkit/Chem/Draw/FreeSans.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/Chem/Draw/FreeSans.ttf
--------------------------------------------------------------------------------
/rdkit/Dbase/Pubmed/test_data/counts.xml:
--------------------------------------------------------------------------------
1 |
2 | 2
3 |
4 |
--------------------------------------------------------------------------------
/rdkit/sping/PDF/pdfgeom.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PDF/pdfgeom.py
--------------------------------------------------------------------------------
/rdkit/sping/tests/pstests.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/tests/pstests.py
--------------------------------------------------------------------------------
/rdkit/utils/pydoc_local.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/utils/pydoc_local.py
--------------------------------------------------------------------------------
/Code/Demos/boost/cross_module/readme.txt:
--------------------------------------------------------------------------------
1 | Demo showing how to deal with BPL-wrapped objects between modules.
2 |
--------------------------------------------------------------------------------
/Docs/Book/images/cdk2_mol1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Book/images/cdk2_mol1.png
--------------------------------------------------------------------------------
/Docs/Book/images/cdk2_mol2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Book/images/cdk2_mol2.png
--------------------------------------------------------------------------------
/Docs/Book/images/picture_0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Book/images/picture_0.png
--------------------------------------------------------------------------------
/Docs/Book/images/picture_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Book/images/picture_1.png
--------------------------------------------------------------------------------
/Docs/Book/images/picture_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Book/images/picture_2.png
--------------------------------------------------------------------------------
/Docs/Book/images/picture_3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Book/images/picture_3.png
--------------------------------------------------------------------------------
/Docs/Book/images/picture_4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Book/images/picture_4.png
--------------------------------------------------------------------------------
/Docs/Book/images/picture_5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Book/images/picture_5.png
--------------------------------------------------------------------------------
/Docs/Book/images/picture_6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Book/images/picture_6.png
--------------------------------------------------------------------------------
/Docs/Book/images/picture_7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Book/images/picture_7.png
--------------------------------------------------------------------------------
/Docs/Book/images/picture_8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Book/images/picture_8.png
--------------------------------------------------------------------------------
/Docs/Book/images/picture_9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Book/images/picture_9.png
--------------------------------------------------------------------------------
/External/cmim-1.0/CMakeLists.txt:
--------------------------------------------------------------------------------
1 | add_library(fastentropy STATIC fastentropy.cc misc.cc)
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/External/cmim-1.0/classifier.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/External/cmim-1.0/classifier.h
--------------------------------------------------------------------------------
/Regress/Data/fptest.pgdump.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Regress/Data/fptest.pgdump.gz
--------------------------------------------------------------------------------
/Regress/Data/mols.1000.sdf.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Regress/Data/mols.1000.sdf.gz
--------------------------------------------------------------------------------
/Regress/Data/mols.1000.txt.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Regress/Data/mols.1000.txt.gz
--------------------------------------------------------------------------------
/rdkit/Numerics/__init__.py:
--------------------------------------------------------------------------------
1 | """ A module for Numerics stuff
2 |
3 | """
4 | import rdAlignment as Alignment
5 |
--------------------------------------------------------------------------------
/Code/Geometry/testData/grid1.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Code/Geometry/testData/grid1.bin
--------------------------------------------------------------------------------
/Docs/Book/images/cdk2_molgrid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Book/images/cdk2_molgrid.png
--------------------------------------------------------------------------------
/Docs/Book/images/picture_10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Book/images/picture_10.jpg
--------------------------------------------------------------------------------
/Docs/Programs/RDPharm3D/Icon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Programs/RDPharm3D/Icon.ico
--------------------------------------------------------------------------------
/External/cmim-1.0/classifier.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/External/cmim-1.0/classifier.cc
--------------------------------------------------------------------------------
/External/cmim-1.0/fastentropy.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/External/cmim-1.0/fastentropy.cc
--------------------------------------------------------------------------------
/External/cmim-1.0/fastentropy.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/External/cmim-1.0/fastentropy.h
--------------------------------------------------------------------------------
/rdkit/Dbase/test_data/dbtest.nulls.csv:
--------------------------------------------------------------------------------
1 | int col,floatCol,strCol
2 | 1,1,1
3 | 2,2.4,1
4 | 3,3,fiib
5 | 4,NA,foo
6 |
--------------------------------------------------------------------------------
/rdkit/Dbase/test_data/dbtest.xls:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/Dbase/test_data/dbtest.xls
--------------------------------------------------------------------------------
/rdkit/Dbase/test_data/rdtest.sql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/Dbase/test_data/rdtest.sql
--------------------------------------------------------------------------------
/rdkit/ML/InfoTheory/__init__.py:
--------------------------------------------------------------------------------
1 | """ Information Theory functionality
2 |
3 | """
4 | from rdInfoTheory import *
5 |
--------------------------------------------------------------------------------
/Code/DataStructs/testData/test1.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Code/DataStructs/testData/test1.bin
--------------------------------------------------------------------------------
/Docs/Book/data/actives_5ht3.sdf.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Book/data/actives_5ht3.sdf.gz
--------------------------------------------------------------------------------
/Docs/Code/Chem/Pharm2D.triangles.ai:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Code/Chem/Pharm2D.triangles.ai
--------------------------------------------------------------------------------
/External/cmim-1.0/create_samples.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/External/cmim-1.0/create_samples.cc
--------------------------------------------------------------------------------
/rdkit/Chem/Fingerprints/__init__.py:
--------------------------------------------------------------------------------
1 | #
2 | # Copyright (C) 2003 Greg Landrum and Rational Discovery LLC
3 | #
4 |
5 |
--------------------------------------------------------------------------------
/rdkit/ML/DecTree/test_data/foo.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/ML/DecTree/test_data/foo.pdf
--------------------------------------------------------------------------------
/rdkit/ML/test_data/humanoral.1.pkl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/ML/test_data/humanoral.1.pkl
--------------------------------------------------------------------------------
/rdkit/ML/test_data/humanoral.2.pkl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/ML/test_data/humanoral.2.pkl
--------------------------------------------------------------------------------
/Data/SmartsLib/tests/mols.1000.pkl.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Data/SmartsLib/tests/mols.1000.pkl.gz
--------------------------------------------------------------------------------
/Docs/Code/Chem/Pharm2D.signatures.ai:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Code/Chem/Pharm2D.signatures.ai
--------------------------------------------------------------------------------
/Docs/Code/Chem/Pharm2D.signatures.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Code/Chem/Pharm2D.signatures.jpg
--------------------------------------------------------------------------------
/Docs/Code/Chem/Pharm2D.triangles.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Code/Chem/Pharm2D.triangles.jpg
--------------------------------------------------------------------------------
/Docs/Images/wiki/morganfp_atomenv1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Images/wiki/morganfp_atomenv1.png
--------------------------------------------------------------------------------
/Docs/Programs/RDPharm3D/RDPharm3D.chm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Programs/RDPharm3D/RDPharm3D.chm
--------------------------------------------------------------------------------
/Docs/Programs/RDPharm3D/References.htm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Programs/RDPharm3D/References.htm
--------------------------------------------------------------------------------
/External/CMakeLists.txt:
--------------------------------------------------------------------------------
1 | add_subdirectory(cmim-1.0)
2 | add_subdirectory(INCHI-API)
3 | add_subdirectory(AvalonTools)
4 |
5 |
--------------------------------------------------------------------------------
/rdkit/Dbase/test_data/dbtest.nulls.xls:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/Dbase/test_data/dbtest.nulls.xls
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/courier-8.pbm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/courier-8.pbm
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/courier-8.pil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/courier-8.pil
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/symbol-10.pbm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/symbol-10.pbm
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/symbol-10.pil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/symbol-10.pil
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/symbol-12.pbm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/symbol-12.pbm
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/symbol-12.pil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/symbol-12.pil
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/symbol-14.pbm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/symbol-14.pbm
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/symbol-14.pil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/symbol-14.pil
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/symbol-18.pbm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/symbol-18.pbm
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/symbol-18.pil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/symbol-18.pil
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/symbol-24.pbm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/symbol-24.pbm
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/symbol-24.pil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/symbol-24.pil
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/symbol-8.pbm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/symbol-8.pbm
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/symbol-8.pil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/symbol-8.pil
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/times-10.pbm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/times-10.pbm
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/times-10.pil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/times-10.pil
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/times-12.pbm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/times-12.pbm
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/times-12.pil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/times-12.pil
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/times-14.pbm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/times-14.pbm
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/times-14.pil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/times-14.pil
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/times-18.pbm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/times-18.pbm
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/times-18.pil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/times-18.pil
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/times-24.pbm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/times-24.pbm
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/times-24.pil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/times-24.pil
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/times-8.pbm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/times-8.pbm
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/times-8.pil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/times-8.pil
--------------------------------------------------------------------------------
/Docs/Programs/RDPharm3D/Refine-shot1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Programs/RDPharm3D/Refine-shot1.jpg
--------------------------------------------------------------------------------
/Docs/Programs/RDPharm3D/Refine-shot2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Programs/RDPharm3D/Refine-shot2.jpg
--------------------------------------------------------------------------------
/rdkit/SimDivFilters/test_list.py:
--------------------------------------------------------------------------------
1 |
2 | tests=[
3 | ("python","SimilarityPickers.py",{}),
4 | ]
5 |
6 | longTests=[
7 | ]
8 |
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/courier-10.pbm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/courier-10.pbm
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/courier-10.pil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/courier-10.pil
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/courier-12.pbm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/courier-12.pbm
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/courier-12.pil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/courier-12.pil
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/courier-14.pbm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/courier-14.pbm
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/courier-14.pil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/courier-14.pil
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/courier-18.pbm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/courier-18.pbm
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/courier-18.pil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/courier-18.pil
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/courier-24.pbm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/courier-24.pbm
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/courier-24.pil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/courier-24.pil
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/courier-8.pil.1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/courier-8.pil.1
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/helvetica-8.pbm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/helvetica-8.pbm
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/helvetica-8.pil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/helvetica-8.pil
--------------------------------------------------------------------------------
/Code/Demos/RDKit/Basement/xpcom/IRDKit.xpt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Code/Demos/RDKit/Basement/xpcom/IRDKit.xpt
--------------------------------------------------------------------------------
/Code/GraphMol/test_data/canonSmiles.v1.pkl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Code/GraphMol/test_data/canonSmiles.v1.pkl
--------------------------------------------------------------------------------
/Code/GraphMol/test_data/canonSmiles.v2.pkl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Code/GraphMol/test_data/canonSmiles.v2.pkl
--------------------------------------------------------------------------------
/Data/SmartsLib/tests/fps.1000.counts.pkl.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Data/SmartsLib/tests/fps.1000.counts.pkl.gz
--------------------------------------------------------------------------------
/Docs/Analysis/ForceField/UFF Parameters.ods:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Analysis/ForceField/UFF Parameters.ods
--------------------------------------------------------------------------------
/Docs/Book/images/cdk2_molgrid_aligned.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Book/images/cdk2_molgrid_aligned.png
--------------------------------------------------------------------------------
/Docs/Programs/RDPharm3D/AddPoints-shot1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Programs/RDPharm3D/AddPoints-shot1.jpg
--------------------------------------------------------------------------------
/Docs/Programs/RDPharm3D/AddPoints-shot2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Programs/RDPharm3D/AddPoints-shot2.jpg
--------------------------------------------------------------------------------
/Docs/Programs/RDPharm3D/AddPoints-shot3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Programs/RDPharm3D/AddPoints-shot3.jpg
--------------------------------------------------------------------------------
/rdkit/Chem/test_data/buildingblocks.smi.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/Chem/test_data/buildingblocks.smi.gz
--------------------------------------------------------------------------------
/rdkit/ML/DecTree/test_data/cdk2-few.pkl.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/ML/DecTree/test_data/cdk2-few.pkl.gz
--------------------------------------------------------------------------------
/rdkit/ML/test_data/ferromag_filt_10_3.pkl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/ML/test_data/ferromag_filt_10_3.pkl
--------------------------------------------------------------------------------
/rdkit/VLib/NodeLib/__init__.py:
--------------------------------------------------------------------------------
1 | __all__=['SmartsMolFilter','SDSupply','SmartsRemover','SmilesDupeFilter',
2 | 'SmilesOutput']
3 |
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/courier-bold-8.pbm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/courier-bold-8.pbm
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/courier-bold-8.pil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/courier-bold-8.pil
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/helvetica-10.pbm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/helvetica-10.pbm
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/helvetica-10.pil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/helvetica-10.pil
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/helvetica-12.pbm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/helvetica-12.pbm
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/helvetica-12.pil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/helvetica-12.pil
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/helvetica-14.pbm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/helvetica-14.pbm
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/helvetica-14.pil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/helvetica-14.pil
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/helvetica-18.pbm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/helvetica-18.pbm
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/helvetica-18.pil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/helvetica-18.pil
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/helvetica-24.pbm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/helvetica-24.pbm
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/helvetica-24.pil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/helvetica-24.pil
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/times-bold-10.pbm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/times-bold-10.pbm
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/times-bold-10.pil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/times-bold-10.pil
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/times-bold-12.pbm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/times-bold-12.pbm
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/times-bold-12.pil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/times-bold-12.pil
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/times-bold-14.pbm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/times-bold-14.pbm
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/times-bold-14.pil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/times-bold-14.pil
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/times-bold-18.pbm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/times-bold-18.pbm
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/times-bold-18.pil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/times-bold-18.pil
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/times-bold-24.pbm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/times-bold-24.pbm
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/times-bold-24.pil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/times-bold-24.pil
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/times-bold-8.pbm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/times-bold-8.pbm
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/times-bold-8.pil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/times-bold-8.pil
--------------------------------------------------------------------------------
/Code/GraphMol/MolTransforms/ReadMe:
--------------------------------------------------------------------------------
1 |
2 | These are files for doing geometric transformations (rotation,
3 | scaling, etc.) on molecules.
4 |
--------------------------------------------------------------------------------
/Docs/Programs/RDPharm3D/RDPharm3D-Splash.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Programs/RDPharm3D/RDPharm3D-Splash.jpg
--------------------------------------------------------------------------------
/rdkit/Chem/test_data/pubchem-hard-set.sdf.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/Chem/test_data/pubchem-hard-set.sdf.gz
--------------------------------------------------------------------------------
/rdkit/Dbase/Pubmed/test_list.py:
--------------------------------------------------------------------------------
1 |
2 | tests=[
3 | ("python","Searches.py",{}),
4 | ]
5 |
6 |
7 | longTests=[
8 |
9 | ]
10 |
--------------------------------------------------------------------------------
/rdkit/Geometry/__init__.py:
--------------------------------------------------------------------------------
1 | """ A module for Geometry stuff
2 |
3 | """
4 | from rdkit import DataStructs
5 | from rdGeometry import *
6 |
--------------------------------------------------------------------------------
/rdkit/Logger/test_list.py:
--------------------------------------------------------------------------------
1 |
2 | tests=[
3 | ("python","UnitTestLogger.py",{}),
4 | ]
5 |
6 |
7 |
8 | longTests=[
9 | ]
10 |
--------------------------------------------------------------------------------
/rdkit/ML/KNN/__init__.py:
--------------------------------------------------------------------------------
1 | # copyright 2000, greg landrum
2 | """
3 |
4 | Here is the implementation for K-nearest neighbors
5 |
6 | """
7 |
--------------------------------------------------------------------------------
/rdkit/ML/test_data/ferromag_shuffle_10_3.pkl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/ML/test_data/ferromag_shuffle_10_3.pkl
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/courier-bold-10.pbm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/courier-bold-10.pbm
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/courier-bold-10.pil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/courier-bold-10.pil
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/courier-bold-12.pbm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/courier-bold-12.pbm
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/courier-bold-12.pil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/courier-bold-12.pil
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/courier-bold-14.pbm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/courier-bold-14.pbm
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/courier-bold-14.pil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/courier-bold-14.pil
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/courier-bold-18.pbm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/courier-bold-18.pbm
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/courier-bold-18.pil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/courier-bold-18.pil
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/courier-bold-24.pbm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/courier-bold-24.pbm
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/courier-bold-24.pil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/courier-bold-24.pil
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/helvetica-bold-8.pbm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/helvetica-bold-8.pbm
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/helvetica-bold-8.pil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/helvetica-bold-8.pil
--------------------------------------------------------------------------------
/Docs/Analysis/ForceField/ForceFieldTerms.new.odt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Analysis/ForceField/ForceFieldTerms.new.odt
--------------------------------------------------------------------------------
/rdkit/Chem/AtomPairs/test_data/mols1000.pkl.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/Chem/AtomPairs/test_data/mols1000.pkl.gz
--------------------------------------------------------------------------------
/rdkit/Chem/MolCatalog.py:
--------------------------------------------------------------------------------
1 | # $Id$
2 | #
3 | # Copyright (C) 2006 Greg Landrum
4 | #
5 | from rdMolCatalog import *
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/rdkit/ML/Composite/test_data/composite_base.pkl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/ML/Composite/test_data/composite_base.pkl
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/helvetica-bold-10.pbm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/helvetica-bold-10.pbm
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/helvetica-bold-10.pil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/helvetica-bold-10.pil
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/helvetica-bold-12.pbm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/helvetica-bold-12.pbm
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/helvetica-bold-12.pil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/helvetica-bold-12.pil
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/helvetica-bold-14.pbm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/helvetica-bold-14.pbm
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/helvetica-bold-14.pil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/helvetica-bold-14.pil
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/helvetica-bold-18.pbm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/helvetica-bold-18.pbm
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/helvetica-bold-18.pil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/helvetica-bold-18.pil
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/helvetica-bold-24.pbm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/helvetica-bold-24.pbm
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/helvetica-bold-24.pil:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/sping/PIL/pilfonts/helvetica-bold-24.pil
--------------------------------------------------------------------------------
/Code/Demos/RDKit/Basement/xpcom/demo/sorttable.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Code/Demos/RDKit/Basement/xpcom/demo/sorttable.js
--------------------------------------------------------------------------------
/rdkit/Chem/AtomPairs/test_data/mols1000.aps.pkl.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/Chem/AtomPairs/test_data/mols1000.aps.pkl.gz
--------------------------------------------------------------------------------
/rdkit/Chem/AtomPairs/test_data/mols1000.tts.pkl.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/Chem/AtomPairs/test_data/mols1000.tts.pkl.gz
--------------------------------------------------------------------------------
/Projects/CMakeLists.txt:
--------------------------------------------------------------------------------
1 | add_pytest(pythonTestDbCLI
2 | ${CMAKE_CURRENT_SOURCE_DIR}/test_list.py --testDir ${CMAKE_CURRENT_SOURCE_DIR} )
3 |
4 |
--------------------------------------------------------------------------------
/rdkit/Chem/Pharm3D/test_data/cdk2-syn-clip100.pkl.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/Chem/Pharm3D/test_data/cdk2-syn-clip100.pkl.gz
--------------------------------------------------------------------------------
/rdkit/ML/Composite/test_data/composite_base.both.pkl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/ML/Composite/test_data/composite_base.both.pkl
--------------------------------------------------------------------------------
/rdkit/ML/ModelPackage/test_data/Jan9_build3_model.pkl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/ML/ModelPackage/test_data/Jan9_build3_model.pkl
--------------------------------------------------------------------------------
/Code/GraphMol/FileParsers/test_data/NCI_aids_few.sdf.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Code/GraphMol/FileParsers/test_data/NCI_aids_few.sdf.gz
--------------------------------------------------------------------------------
/Contrib/mmpa/sample_mmps_maxratio.csv:
--------------------------------------------------------------------------------
1 | Nc1ccc(-c2cc3ccccc3oc2=O)cc1,O=c1oc2ccccc2cc1-c1ccc(O)cc1,310860,4055843,[*:1]N>>[*:1]O,[*:1]c1ccc(-c2cc3ccccc3oc2=O)cc1
2 |
--------------------------------------------------------------------------------
/rdkit/ML/Composite/test_data/composite_base.neural.pkl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/ML/Composite/test_data/composite_base.neural.pkl
--------------------------------------------------------------------------------
/rdkit/ML/Composite/test_data/composite_base.others.pkl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/ML/Composite/test_data/composite_base.others.pkl
--------------------------------------------------------------------------------
/rdkit/ML/Composite/test_data/composite_base.unitnet.pkl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/ML/Composite/test_data/composite_base.unitnet.pkl
--------------------------------------------------------------------------------
/rdkit/ML/Composite/test_data/composite_plus_neural.pkl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/ML/Composite/test_data/composite_plus_neural.pkl
--------------------------------------------------------------------------------
/rdkit/ML/Composite/test_data/composite_base.others.net.pkl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/ML/Composite/test_data/composite_base.others.net.pkl
--------------------------------------------------------------------------------
/rdkit/ML/Composite/test_data/composite_base.unittree.pkl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/ML/Composite/test_data/composite_base.unittree.pkl
--------------------------------------------------------------------------------
/rdkit/utils/retest.txt:
--------------------------------------------------------------------------------
1 | #ignore
2 | foo bar baz grn
3 | foo #bar baz grn
4 | #ignore
5 | foo bar # baz grn
6 | foo bar # baz grn #
7 | foo bar baz grn #
8 | #ignore
9 |
--------------------------------------------------------------------------------
/Code/Demos/RDKit/Basement/BinaryIO/test_data/triazine.mol.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Code/Demos/RDKit/Basement/BinaryIO/test_data/triazine.mol.gz
--------------------------------------------------------------------------------
/Data/DTDs/validate.py:
--------------------------------------------------------------------------------
1 | import pyRXP
2 | import sys
3 |
4 | parser = pyRXP.Parser()
5 | res = parser.parse(open(sys.argv[1],'r').read())
6 | if res:
7 | print 'SUCCESS'
8 |
--------------------------------------------------------------------------------
/rdkit/ML/Composite/test_data/composite_base.others.both.pkl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/ML/Composite/test_data/composite_base.others.both.pkl
--------------------------------------------------------------------------------
/Code/PgSQL/rdkit/rdkit.control:
--------------------------------------------------------------------------------
1 | comment = 'Cheminformatics functionality for PostgreSQL.'
2 | default_version = '3.3'
3 | module_pathname = '$libdir/rdkit'
4 | relocatable = true
--------------------------------------------------------------------------------
/Docs/Analysis/Descriptors/Correlations/DrugLikeT80_CorrMat.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Analysis/Descriptors/Correlations/DrugLikeT80_CorrMat.png
--------------------------------------------------------------------------------
/Docs/Analysis/Descriptors/Correlations/LeadLikeT80_CorrMat.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Analysis/Descriptors/Correlations/LeadLikeT80_CorrMat.png
--------------------------------------------------------------------------------
/rdkit/ML/Composite/test_data/composite_base.others.neural.pkl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/rdkit/ML/Composite/test_data/composite_base.others.neural.pkl
--------------------------------------------------------------------------------
/Contrib/mmpa/sample_cansmirks.txt:
--------------------------------------------------------------------------------
1 | [*:1]c1ccc([*:2])o1>>[*:1]c1ccc([*:2])cc1 s1
2 | [*:1]c1ccc([*:2])o1>>[*:1]c1ccc([*:2])cc1 s2
3 | [*:1]c1ccc([*:2])o1>>[*:1]c1ccc([*:2])cc1 s3
4 |
--------------------------------------------------------------------------------
/Contrib/mmpa/sample_smirks.txt:
--------------------------------------------------------------------------------
1 | [*:2]c1ccc([*:1])o1>>[*:1]c1ccc([*:2])cc1 s1
2 | [*:1]c1ccc([*:2])o1>>[*:2]c1ccc([*:1])cc1 s2
3 | [*:1]c1ccc([*:2])o1>>[*:2]C1=CC=C([*:1])C=C1 s3
4 |
--------------------------------------------------------------------------------
/rdkit/ML/NaiveBayes/__init__.py:
--------------------------------------------------------------------------------
1 | # copyright 2003, Rational Discovery LLC
2 | """
3 |
4 | An implementation of the Naive Bayes Classifier
5 |
6 | """
7 | from rdkit import rdBase
8 |
--------------------------------------------------------------------------------
/Code/GraphMol/MolDrawing/CMakeLists.txt:
--------------------------------------------------------------------------------
1 | rdkit_headers(DrawingToCairo.h
2 | DrawingToSVG.h
3 | MolDrawing.h
4 | DEST GraphMol/MolDrawing)
5 |
6 |
--------------------------------------------------------------------------------
/Docs/Analysis/Descriptors/Correlations/FragmentLikeT80_CorrMat.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rdkit/rdkit-orig/HEAD/Docs/Analysis/Descriptors/Correlations/FragmentLikeT80_CorrMat.png
--------------------------------------------------------------------------------
/Code/GraphMol/SmilesParse/runflex.sh:
--------------------------------------------------------------------------------
1 |
2 | bison -t -d smiles.y
3 | mv smiles.tab.c smiles.tab.cpp
4 | flex smiles.flex
5 | grep -v unistd lex.yy.c | sed s/lex.yy.c/lex.yy.cpp/ > lex.yy.cpp
6 |
--------------------------------------------------------------------------------
/Code/ML/Data/CMakeLists.txt:
--------------------------------------------------------------------------------
1 | rdkit_python_extension(cQuantize cQuantize.cpp
2 | DEST ML/Data
3 | LINK_LIBRARIES InfoTheory RDGeneral RDBoost )
4 |
--------------------------------------------------------------------------------
/Code/GraphMol/FileParsers/test_data/Issue3482695.sdf:
--------------------------------------------------------------------------------
1 |
2 | RDKit 3D
3 |
4 | 0 0 0 0 0 0 0 0 0 0999 V2000
5 | M END
6 | > (1)
7 | some
8 |
9 | $$$$
10 |
--------------------------------------------------------------------------------
/Code/RDBoost/Wrap/CMakeLists.txt:
--------------------------------------------------------------------------------
1 | rdkit_python_extension(rdBase
2 | RDBase.cpp
3 | LINK_LIBRARIES
4 | RDGeneral RDBoost)
5 |
6 |
--------------------------------------------------------------------------------
/rdkit/sping/__init__.py:
--------------------------------------------------------------------------------
1 | # package indicator for spin Graphics
2 | # $Id$
3 | version_maj_number = 1.1
4 | version_min_number = 0
5 | version = "%s.%s" % (version_maj_number , version_min_number)
6 |
--------------------------------------------------------------------------------
/rdkit/ML/DecTree/__init__.py:
--------------------------------------------------------------------------------
1 | # copyright 2000, greg landrum
2 | """
3 |
4 | Here we're implementing the Decision Tree stuff found in Chapter 3 of Tom Mitchell's Machine Learning Book.
5 |
6 | """
7 |
--------------------------------------------------------------------------------
/Code/PgSQL/rdkit/sql/inchi.sql:
--------------------------------------------------------------------------------
1 | select mol_inchi('c1ccccc1'::mol);
2 | select mol_inchikey('c1ccccc1'::mol);
3 | select mol_inchi('Cc1cc(C)[n+]c(C)c1'::mol);
4 | select mol_inchikey('Cc1cc(C)[n+]c(C)c1'::mol);
5 |
--------------------------------------------------------------------------------
/Code/GraphMol/FileParsers/test_data/cdk2_stereo.csv:
--------------------------------------------------------------------------------
1 | c1cc(Cl)ccc1c(n[o]2)nc2CSC/3=[NH+]/CCN3,mol_14069
2 | [C@@H]12/C=C\[C@@H](C(C(=O)O)C1C(=O)O)c3cccc(c23)[N+]([O-])=O,mol_12186,None,4.50,Scaffold_00,divscreen,0
3 |
--------------------------------------------------------------------------------
/Code/GraphMol/FileParsers/test_data/missingCR.sdf:
--------------------------------------------------------------------------------
1 |
2 | RDKit
3 |
4 | 1 0 0 0 0 0 0 0 0 0999 V2000
5 | 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
6 | M END
7 | >
8 | OK
--------------------------------------------------------------------------------
/rdkit/Chem/test_data/Crippen.csv:
--------------------------------------------------------------------------------
1 | C,0.6361,6.7310
2 | C=C,0.8022,11.2540
3 | C#C,0.2494,9.8900
4 | CO,-0.3915,8.1428
5 | C=O,-0.1849,7.1210
6 | C#[O+],0.0059,5.6315
7 | C(C)(C)(C),1.6623,20.5120
8 | C(C)(C)(C)O,0.7772,21.9718
9 |
--------------------------------------------------------------------------------
/Code/GraphMol/FileParsers/test_data/Issue269.mol:
--------------------------------------------------------------------------------
1 | 0Lv-4
2 | NextMove09291216262D
3 |
4 | 1 0 0 0 0 0 0 0 0999 V2000
5 | 0.0000 0.0000 0.0000 Lv 0 0 0 0 0 0 0 0 0 0 0 0
6 | M CHG 1 1 -4
7 | M END
8 |
--------------------------------------------------------------------------------
/rdkit/ML/KNN/test_data/sample_pts.csv:
--------------------------------------------------------------------------------
1 | id,x,y,val
2 | 1,-4,3,1
3 | 2,-3,3,1.5
4 | 3,-4,2,1.5
5 | 4,-3,2,1
6 | 5,1.5,2,2
7 | 6,3,3,1
8 | 7,4,2,2
9 | 8,3,1,1
10 | 9,3,-1,-1
11 | 10,2,-2.5,-2
12 | 11,4,-2.5,-2
13 | 12,3,-4,-1
14 |
--------------------------------------------------------------------------------
/Code/GraphMol/MolChemicalFeatures/test_data/featDef.txt:
--------------------------------------------------------------------------------
1 | DefineFeature HDonor1 [N,O;!H0]
2 | Family HBondDonor
3 | Weights 1.0
4 | EndFeature
5 | DefineFeature HAcceptor1 [N,O]
6 | Family HBondAcceptor
7 | Weights 1.0
8 | EndFeature
9 |
--------------------------------------------------------------------------------
/Code/ForceField/Wrap/CMakeLists.txt:
--------------------------------------------------------------------------------
1 | rdkit_python_extension(rdForceField ForceField.cpp
2 | DEST ForceField
3 | LINK_LIBRARIES ForceField Optimizer RDGeneral RDGeometryLib RDBoost)
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Code/GraphMol/FragCatalog/test_data/4mols.smi:
--------------------------------------------------------------------------------
1 | S1C2=C(C3=CC=CC4=C3C2=CC=C4)C5=C1C6=C7C(=CC=C6)C=CC=C57 1
2 | C1(/N2)=C/C(C=C3)=N/C3=C\C(N5)=CC=C5\C=C4/N=C(C=C4)/C=C2/C=C1 2
3 | [O-][N+]1=CC2=CC=C[O+]2[Cu]13[O+]4C=CC=C4C=[N+]3[O-] 3
4 | O=C1C=CC(=O)C=C1 4
5 |
--------------------------------------------------------------------------------
/Code/Demos/boost/any_container/Makefile:
--------------------------------------------------------------------------------
1 | CXXFLAGS=-g -I$(RDBASE)/External/$(BOOSTBASE) -I$(RDBASE)/Code/GraphMol
2 |
3 | dict.exe: dict.o $(RDBASE)/Code/GraphMol/Invariant/Invariant.o
4 | g++ -o dict.exe $(CFLAGS) dict.o $(RDBASE)/Code/GraphMol/Invariant/Invariant.o
--------------------------------------------------------------------------------
/rdkit/Dbase/test_list.py:
--------------------------------------------------------------------------------
1 |
2 | tests=[
3 | ("python","UnitTestDbConnect.py",{}),
4 | ("python","UnitTestDbUtils.py",{}),
5 | ("python","UnitTestDbResultSet.py",{}),
6 | ("python","StorageUtils.py",{}),
7 | ]
8 |
9 |
10 |
11 | longTests=[
12 | ]
13 |
--------------------------------------------------------------------------------
/rdkit/sping/PIL/pilfonts/removemedium.py:
--------------------------------------------------------------------------------
1 | import os
2 | import string
3 |
4 | for fname in filter(lambda x:'-' in x,os.listdir(os.curdir)):
5 | newname = string.replace(fname, '-medium-', '-')
6 | if newname != fname:
7 | print newname
8 | os.rename(fname,newname)
9 |
--------------------------------------------------------------------------------
/Code/DataStructs/Wrap/testData/isiv.pkl:
--------------------------------------------------------------------------------
1 | crdkit.DataStructs.cDataStructs
2 | IntSparseIntVect
3 | p1
4 | (S'\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00 \x00\x03\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x00\x10\x00\x00\x03\x00\x00\x00'
5 | tRp2
6 | .
--------------------------------------------------------------------------------
/Code/JavaWrappers/DiversityPick.i:
--------------------------------------------------------------------------------
1 |
2 | %{
3 | #include
4 | #include
5 | #include "DiversityPick.h"
6 | %}
7 |
8 | %template(EBV_Vect) std::vector< ExplicitBitVect >;
9 |
10 | %include "DiversityPick.h";
11 |
12 |
--------------------------------------------------------------------------------
/Docs/Programs/RDPharm3D/Index.hhk:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
9 |
10 |
--------------------------------------------------------------------------------
/rdkit/ML/Data/test_data/test.qdat:
--------------------------------------------------------------------------------
1 | # Testing data
2 | # ----------
3 | # Variable Table
4 | # foo1 []
5 | # foo2 []
6 | # foo3 []
7 | # foo4 []
8 | # res []
9 | # ---------
10 | p1 0 0 0 0 0
11 | p2 0 0 0 1 0
12 | p3 1 0 0 0 1
13 | p4 2 1 0 0 1
14 | p5 2 2 1 0 1
15 |
16 |
--------------------------------------------------------------------------------
/Code/Demos/boost/overloads/test.py:
--------------------------------------------------------------------------------
1 | import overloads
2 |
3 | assert overloads.f1(1)==4
4 | assert overloads.f1(1,4)==5
5 | assert overloads.f1(1.)==4.
6 | assert overloads.f1(1.,5)==6.
7 |
8 | assert overloads.f2(1)==4
9 | assert overloads.f2(1,12)==13
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/Code/GraphMol/FragCatalog/test_data/mols.smi:
--------------------------------------------------------------------------------
1 | OCCC 1
2 | CCC 2
3 | C=CC 3
4 | OC=CC 4
5 | CC(O)C 5
6 | C=C(O)C 6
7 | OCCCC 7
8 | CC(O)CC 8
9 | C=CCC 9
10 | CC=CC 10
11 | OC=CCC 11
12 | CC=C(O)C 12
13 | OCC=CC 13
14 | C=C(O)CC 14
15 | C=CC(O)C 15
16 | C=CCCO 16
17 |
18 |
19 |
--------------------------------------------------------------------------------
/rdkit/SimDivFilters/__init__.py:
--------------------------------------------------------------------------------
1 | #
2 | # Copyright (C) 2004 Rational Discovery LLC
3 | # All Rights Reserved
4 | #
5 | from rdkit import rdBase
6 | try:
7 | import rdSimDivPickers
8 | from rdSimDivPickers import *
9 | except ImportError:
10 | rdSimDivPickers=None
11 |
--------------------------------------------------------------------------------
/Code/ChemicalFeatures/Wrap/testData/feat.pkl:
--------------------------------------------------------------------------------
1 | crdkit.Chem.rdChemicalFeatures
2 | FreeChemicalFeature
3 | p1
4 | (S'\x10\x00\x00\x00\x0b\x00\x00\x00HBondDonor\x00\x0c\x00\x00\x00HBondDonor1\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00@\x00\x00\x00\x00\x00\x00\x08@'
5 | tRp2
6 | .
--------------------------------------------------------------------------------
/Code/GraphMol/ForceFieldHelpers/UFF/CMakeLists.txt:
--------------------------------------------------------------------------------
1 | rdkit_library(ForceFieldHelpers AtomTyper.cpp Builder.cpp
2 | LINK_LIBRARIES SmilesParse SubstructMatch ForceField)
3 |
4 | rdkit_headers(AtomTyper.h
5 | Builder.h DEST GraphMol/ForceFieldHelpers/UFF)
6 |
7 |
--------------------------------------------------------------------------------
/Code/GraphMol/test_data/Issue2788233.mol:
--------------------------------------------------------------------------------
1 |
2 | Marvin 06010908082D
3 |
4 | 2 0 0 0 0 0 999 V2000
5 | -1.2494 1.5483 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0
6 | -1.0123 0.7592 0.0000 Cr 0 0 0 0 0 0 0 0 0 0 0 0
7 | M END
8 |
--------------------------------------------------------------------------------
/Code/ChemicalFeatures/test_list.py:
--------------------------------------------------------------------------------
1 |
2 | tests=[
3 | ("testExecs/main.exe","",{}),
4 |
5 | ]
6 |
7 |
8 | if __name__=='__main__':
9 | import sys
10 | from rdkit import TestRunner
11 | failed,tests = TestRunner.RunScript('test_list.py',0,1)
12 | sys.exit(len(failed))
13 |
--------------------------------------------------------------------------------
/Code/Catalogs/CMakeLists.txt:
--------------------------------------------------------------------------------
1 | rdkit_library(Catalogs
2 | Catalog.cpp CatalogParams.cpp CatalogEntry.cpp
3 | LINK_LIBRARIES RDGeneral)
4 |
5 | rdkit_headers(CatalogEntry.h
6 | Catalog.h
7 | CatalogParams.h DEST Catalogs)
8 |
9 |
10 |
--------------------------------------------------------------------------------
/Code/Demos/boost/cross_module/test.py:
--------------------------------------------------------------------------------
1 | import moda
2 | import modb
3 |
4 | ca = moda.ClassA()
5 | print 'ca:',ca.Get4()
6 |
7 | cb = modb.ClassB()
8 | print 'cb:',cb.Get3()
9 |
10 | newca = cb.ReturnOther()
11 | print 'new:',newca.Get4()
12 |
13 | print 'arg:',cb.AcceptOther(newca)
14 |
--------------------------------------------------------------------------------
/Code/GraphMol/FileParsers/test_data/mol_nomol.mol2:
--------------------------------------------------------------------------------
1 | # Name: benzene
2 | # Creating user name: stiefni2
3 | # Creation time: Thu May 15 13:14:53 2008
4 |
5 | # Modifying user name: stiefni2
6 | # Modification time: Thu May 15 13:16:20 2008
7 |
8 | @ATOM
9 | whatever
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Code/ChemicalFeatures/Wrap/testData/featv2.pkl:
--------------------------------------------------------------------------------
1 | crdkit.Chem.rdChemicalFeatures
2 | FreeChemicalFeature
3 | p1
4 | (S' \x00\x00\x00{\x00\x00\x00\x0b\x00\x00\x00HBondDonor\x00\x0c\x00\x00\x00HBondDonor1\x00\x00\x00\x00\x00\x00\x00\xf0?\x00\x00\x00\x00\x00\x00\x00@\x00\x00\x00\x00\x00\x00\x08@'
5 | tRp2
6 | .
--------------------------------------------------------------------------------
/Code/DataManip/MetricMatrixCalc/CMakeLists.txt:
--------------------------------------------------------------------------------
1 | ### Template library
2 | rdkit_headers(MetricFuncs.h
3 | MetricMatrixCalc.h DEST DataManip/MetricMatrixCalc)
4 |
5 | rdkit_test(testMatCalc testMatCalc.cpp LINK_LIBRARIES RDGeneral)
6 |
7 | add_subdirectory(Wrap)
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Code/GraphMol/ForceFieldHelpers/test_data/Issue2378119.2.mol:
--------------------------------------------------------------------------------
1 |
2 | RDKit 3D
3 |
4 | 2 0 0 0 0 0 0 0 0 0999 V2000
5 | 0.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
6 | 3.0000 0.0000 0.0000 C 0 0 0 0 0 0 0 0 0 0 0 0
7 | M END
8 |
9 |
--------------------------------------------------------------------------------
/Code/Query/test_list.py:
--------------------------------------------------------------------------------
1 |
2 | tests=[
3 | ("testExecs/test.exe","",{}),
4 | ]
5 |
6 |
7 |
8 | longTests=[]
9 |
10 | if __name__=='__main__':
11 | import sys
12 | from rdkit import TestRunner
13 | failed,tests = TestRunner.RunScript('test_list.py',0,1)
14 | sys.exit(len(failed))
15 |
--------------------------------------------------------------------------------
/Code/DataStructs/test_list.py:
--------------------------------------------------------------------------------
1 |
2 | tests=[
3 | ("testExecs/test.exe","",{}),
4 | ]
5 |
6 |
7 |
8 | longTests=[]
9 |
10 | if __name__=='__main__':
11 | import sys
12 | from rdkit import TestRunner
13 | failed,tests = TestRunner.RunScript('test_list.py',0,1)
14 | sys.exit(len(failed))
15 |
--------------------------------------------------------------------------------
/Code/ML/CMakeLists.txt:
--------------------------------------------------------------------------------
1 | if(RDK_BIG_ENDIAN)
2 | message("Skipping build of clustering and cmim libraries on big endian system")
3 | else(RDK_BIG_ENDIAN)
4 | add_subdirectory(Cluster)
5 | add_subdirectory(FeatureSelect)
6 | endif(RDK_BIG_ENDIAN)
7 | add_subdirectory(InfoTheory)
8 | add_subdirectory(Data)
9 |
--------------------------------------------------------------------------------
/Code/ML/InfoTheory/Wrap/test_list.py:
--------------------------------------------------------------------------------
1 |
2 | tests=[
3 | ("python","testRanker.py",{}),
4 | ]
5 |
6 | longTests=[]
7 |
8 | if __name__=='__main__':
9 | import sys
10 | from rdkit import TestRunner
11 | failed,tests = TestRunner.RunScript('test_list.py',0,1)
12 | sys.exit(len(failed))
13 |
--------------------------------------------------------------------------------
/Code/Numerics/Alignment/CMakeLists.txt:
--------------------------------------------------------------------------------
1 | rdkit_library(Alignment AlignPoints.cpp LINK_LIBRARIES RDGeometryLib)
2 |
3 | rdkit_headers(AlignPoints.h DEST Numerics/Alignment)
4 |
5 | rdkit_test(testAlignment testAlignment.cpp LINK_LIBRARIES Alignment RDGeometryLib RDGeneral )
6 |
7 | add_subdirectory(Wrap)
8 |
--------------------------------------------------------------------------------
/Code/RDGeneral/test_list.py:
--------------------------------------------------------------------------------
1 |
2 | tests=[
3 | ("testExecs/testDict.exe","",{}),
4 | ]
5 |
6 |
7 |
8 | longTests=[]
9 |
10 | if __name__=='__main__':
11 | import sys
12 | from rdkit import TestRunner
13 | failed,tests = TestRunner.RunScript('test_list.py',0,1)
14 | sys.exit(len(failed))
15 |
--------------------------------------------------------------------------------
/Code/doxygen/rdkdocs_footer.html:
--------------------------------------------------------------------------------
1 |
3 |