synkit 0.0.17__tar.gz → 1.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {synkit-0.0.17 → synkit-1.1.0}/.gitignore +5 -2
- {synkit-0.0.17 → synkit-1.1.0}/PKG-INFO +6 -5
- {synkit-0.0.17 → synkit-1.1.0}/README.md +5 -4
- {synkit-0.0.17 → synkit-1.1.0}/pyproject.toml +5 -7
- synkit-1.1.0/synkit/CRN/DAG/dag.py +671 -0
- synkit-1.1.0/synkit/CRN/DAG/sf.py +321 -0
- synkit-1.1.0/synkit/CRN/DAG/target_dag.py +504 -0
- synkit-1.1.0/synkit/CRN/Hypergraph/__init__.py +35 -0
- synkit-1.1.0/synkit/CRN/Hypergraph/backend.py +87 -0
- synkit-1.1.0/synkit/CRN/Hypergraph/conversion.py +931 -0
- synkit-1.1.0/synkit/CRN/Hypergraph/dag.py +398 -0
- synkit-1.1.0/synkit/CRN/Hypergraph/hyperedge.py +71 -0
- synkit-1.1.0/synkit/CRN/Hypergraph/hypergraph.py +602 -0
- synkit-1.1.0/synkit/CRN/Hypergraph/rxn.py +283 -0
- synkit-1.1.0/synkit/CRN/Path/realizability.py +656 -0
- synkit-1.1.0/synkit/CRN/Petri/__init__.py +42 -0
- synkit-1.1.0/synkit/CRN/Petri/analyzer.py +219 -0
- synkit-1.1.0/synkit/CRN/Petri/net.py +161 -0
- synkit-1.1.0/synkit/CRN/Petri/persistence.py +83 -0
- synkit-1.1.0/synkit/CRN/Petri/semiflows.py +67 -0
- synkit-1.1.0/synkit/CRN/Petri/structure.py +207 -0
- synkit-1.1.0/synkit/CRN/Props/__init__.py +85 -0
- synkit-1.1.0/synkit/CRN/Props/deficiency.py +872 -0
- synkit-1.1.0/synkit/CRN/Props/injectivity.py +693 -0
- synkit-1.1.0/synkit/CRN/Props/stoich.py +855 -0
- synkit-1.1.0/synkit/CRN/Props/thermo.py +107 -0
- synkit-1.1.0/synkit/CRN/Props/utils.py +129 -0
- synkit-1.1.0/synkit/CRN/Topo/automorphism.py +382 -0
- synkit-1.1.0/synkit/CRN/Topo/canon.py +631 -0
- synkit-1.1.0/synkit/CRN/__init__.py +81 -0
- synkit-1.1.0/synkit/CRN/dev_crn/__init__.py +83 -0
- synkit-1.1.0/synkit/CRN/dev_crn/configs/loader.py +203 -0
- synkit-1.1.0/synkit/CRN/dev_crn/configs/models.py +299 -0
- synkit-1.1.0/synkit/CRN/dev_crn/constants.py +47 -0
- synkit-1.1.0/synkit/CRN/dev_crn/crn_formula.py +455 -0
- synkit-1.1.0/synkit/CRN/dev_crn/enumerator.py +289 -0
- synkit-1.1.0/synkit/CRN/dev_crn/exceptions.py +97 -0
- synkit-1.1.0/synkit/CRN/dev_crn/explorer.py +249 -0
- synkit-1.1.0/synkit/CRN/dev_crn/helpers.py +87 -0
- synkit-1.1.0/synkit/CRN/dev_crn/motif.py +371 -0
- synkit-1.1.0/synkit/CRN/dev_crn/network.py +272 -0
- synkit-1.1.0/synkit/CRN/dev_crn/pathway.py +119 -0
- synkit-1.1.0/synkit/CRN/dev_crn/properties.py +310 -0
- synkit-1.1.0/synkit/CRN/dev_crn/reaction.py +174 -0
- synkit-1.1.0/synkit/CRN/dev_crn/utils.py +118 -0
- synkit-1.1.0/synkit/CRN/dev_crn/viz.py +494 -0
- synkit-1.1.0/synkit/CRN/viz/crn_vis.py +199 -0
- synkit-1.1.0/synkit/Chem/Molecule/atom_features.py +385 -0
- synkit-1.1.0/synkit/Chem/Molecule/descriptors.py +464 -0
- synkit-1.1.0/synkit/Chem/Molecule/formula.py +249 -0
- synkit-1.1.0/synkit/Chem/Molecule/graph_annotator.py +301 -0
- synkit-1.1.0/synkit/Chem/Molecule/standardize.py +856 -0
- synkit-1.1.0/synkit/Chem/Molecule/valence.py +127 -0
- synkit-1.1.0/synkit/Chem/Reaction/Mapper/__init__.py +8 -0
- synkit-1.1.0/synkit/Chem/Reaction/Mapper/wl_mapper.py +2345 -0
- synkit-1.1.0/synkit/Chem/Reaction/__init__.py +9 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Chem/Reaction/radical_wildcard.py +6 -4
- synkit-1.1.0/synkit/Chem/__init__.py +1 -0
- synkit-1.1.0/synkit/Graph/Feature/Descriptors/topology.py +854 -0
- synkit-1.1.0/synkit/Graph/Matcher/approx_mcs.py +2272 -0
- synkit-1.1.0/synkit/Graph/Matcher/auto_est.py +496 -0
- synkit-1.1.0/synkit/Graph/Matcher/automorphism.py +292 -0
- synkit-1.1.0/synkit/Graph/Matcher/mcs_matcher.py +777 -0
- synkit-1.1.0/synkit/Graph/Matcher/orbit.py +320 -0
- synkit-1.1.0/synkit/Graph/Matcher/partial_matcher.py +751 -0
- synkit-1.1.0/synkit/Graph/Matcher/sing.py +516 -0
- synkit-1.1.0/synkit/Graph/Matcher/subgraph_matcher.py +565 -0
- synkit-1.1.0/synkit/Graph/Matcher/wl_sel.py +513 -0
- synkit-1.1.0/synkit/Graph/Wildcard/graph_wc.py +314 -0
- synkit-1.1.0/synkit/Graph/Wildcard/its_merge.py +540 -0
- synkit-1.1.0/synkit/Graph/Wildcard/wc_matcher.py +592 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/IO/chem_converter.py +129 -1
- synkit-1.1.0/synkit/IO/data_process.py +141 -0
- synkit-1.1.0/synkit/IO/mol_to_graph.py +480 -0
- synkit-1.1.0/synkit/Synthesis/Reactor/__init__.py +0 -0
- synkit-1.1.0/synkit/Synthesis/Reactor/rbl_engine.py +1588 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Synthesis/Reactor/syn_reactor.py +40 -10
- synkit-1.1.0/synkit/Synthesis/__init__.py +0 -0
- synkit-1.1.0/synkit/Utils/__init__.py +0 -0
- synkit-1.1.0/synkit/Vis/crn_vis.py +975 -0
- synkit-1.1.0/synkit/__init__.py +0 -0
- synkit-0.0.17/synkit/Chem/Molecule/standardize.py +0 -167
- synkit-0.0.17/synkit/Chem/Reaction/__init__.py +0 -9
- synkit-0.0.17/synkit/Chem/__init__.py +0 -1
- synkit-0.0.17/synkit/Data/aldol.json.gz +0 -1
- synkit-0.0.17/synkit/Data/paracetamol.json.gz +0 -1
- synkit-0.0.17/synkit/Graph/Matcher/mcs_matcher.py +0 -202
- synkit-0.0.17/synkit/Graph/Matcher/partial_matcher.py +0 -214
- synkit-0.0.17/synkit/Graph/Matcher/sing.py +0 -216
- synkit-0.0.17/synkit/Graph/Matcher/subgraph_matcher.py +0 -1162
- synkit-0.0.17/synkit/IO/data_process.py +0 -48
- synkit-0.0.17/synkit/IO/mol_to_graph.py +0 -354
- synkit-0.0.17/synkit/Synthesis/Reactor/rbl_engine.py +0 -122
- {synkit-0.0.17 → synkit-1.1.0}/LICENSE +0 -0
- {synkit-0.0.17/synkit/Chem/Cluster → synkit-1.1.0/synkit/CRN/DAG}/__init__.py +0 -0
- {synkit-0.0.17/synkit/Synthesis/CRN → synkit-1.1.0/synkit/CRN/DAG}/crn.py +0 -0
- {synkit-0.0.17/synkit/Synthesis/CRN → synkit-1.1.0/synkit/CRN/DAG}/dcrn.py +0 -0
- {synkit-0.0.17/synkit/Synthesis/CRN → synkit-1.1.0/synkit/CRN/DAG}/mod_crn.py +0 -0
- {synkit-0.0.17/synkit/Chem/Fingerprint → synkit-1.1.0/synkit/CRN/Path}/__init__.py +0 -0
- {synkit-0.0.17/synkit/Chem/Molecule → synkit-1.1.0/synkit/CRN/Stochastic}/__init__.py +0 -0
- {synkit-0.0.17/synkit/Data → synkit-1.1.0/synkit/CRN/Topo}/__init__.py +0 -0
- {synkit-0.0.17/synkit/Graph/Context → synkit-1.1.0/synkit/CRN/dev_crn/configs}/__init__.py +0 -0
- {synkit-0.0.17/synkit/Graph/Feature/Fingerprint → synkit-1.1.0/synkit/Chem/Cluster}/__init__.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Chem/Cluster/butina.py +0 -0
- {synkit-0.0.17/synkit/Graph/Hyrogen → synkit-1.1.0/synkit/Chem/Fingerprint}/__init__.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Chem/Fingerprint/fp_calculator.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Chem/Fingerprint/smiles_featurizer.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Chem/Fingerprint/transformation_fp.py +0 -0
- {synkit-0.0.17/synkit/Graph/MTG → synkit-1.1.0/synkit/Chem/Molecule}/__init__.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Chem/Reaction/aam_validator.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Chem/Reaction/balance_check.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Chem/Reaction/canon_rsmi.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Chem/Reaction/cleaning.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Chem/Reaction/deionize.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Chem/Reaction/fix_aam.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Chem/Reaction/neutralize.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Chem/Reaction/standardize.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Chem/Reaction/tautomerize.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Chem/utils.py +0 -0
- {synkit-0.0.17/synkit/Graph/Wildcard → synkit-1.1.0/synkit/Data}/__init__.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Data/gen_partial_aam.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/Canon/__init__.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/Canon/canon_algs.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/Canon/canon_graph.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/Canon/nauty.py +0 -0
- {synkit-0.0.17/synkit/Rule/Apply → synkit-1.1.0/synkit/Graph/Context}/__init__.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/Context/hier_context.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/Context/radius_expand.py +0 -0
- {synkit-0.0.17/synkit/Rule/Compose → synkit-1.1.0/synkit/Graph/Feature/Fingerprint}/__init__.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/Feature/Fingerprint/wl_rxn_fps.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/Feature/__init__.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/Feature/graph_descriptors.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/Feature/graph_fps.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/Feature/graph_signature.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/Feature/hash_fps.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/Feature/morgan_fps.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/Feature/path_fps.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/Feature/wl_hash.py +0 -0
- {synkit-0.0.17/synkit/Rule/Modify → synkit-1.1.0/synkit/Graph/Hyrogen}/__init__.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/Hyrogen/_misc.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/Hyrogen/hcomplete.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/Hyrogen/hextend.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/ITS/__init__.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/ITS/its_builder.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/ITS/its_construction.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/ITS/its_decompose.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/ITS/its_destruction.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/ITS/its_expand.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/ITS/its_relabel.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/ITS/normalize_aam.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/ITS/partial_its.py +0 -0
- {synkit-0.0.17/synkit/Synthesis/CRN → synkit-1.1.0/synkit/Graph/MTG}/__init__.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/MTG/group_comp.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/MTG/groupoid.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/MTG/mcs_matcher.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/MTG/mtg.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/MTG/mtg_explore.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/MTG/utils.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/Matcher/__init__.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/Matcher/batch_cluster.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/Matcher/graph_cluster.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/Matcher/graph_matcher.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/Matcher/graph_morphism.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/Matcher/multi_turbo_iso.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/Matcher/turbo_iso.py +0 -0
- {synkit-0.0.17/synkit/Synthesis/MSR → synkit-1.1.0/synkit/Graph/Wildcard}/__init__.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/Wildcard/fuse_graph.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/Wildcard/radwc.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/Wildcard/wildcard.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/__init__.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/canon_graph.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/syn_graph.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Graph/utils.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/IO/__init__.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/IO/combinatorial/__init__.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/IO/combinatorial/gml_to_graph.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/IO/combinatorial/graph_to_gml.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/IO/combinatorial/graph_to_smarts.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/IO/combinatorial/smarts_expander.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/IO/combinatorial/smarts_generalizer.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/IO/combinatorial/smarts_to_graph.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/IO/data_io.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/IO/debug.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/IO/dg_to_gml.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/IO/gml_to_nx.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/IO/graph_to_mol.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/IO/nx_to_gml.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/IO/smiles_to_id.py +0 -0
- {synkit-0.0.17/synkit/Synthesis/Metrics → synkit-1.1.0/synkit/Rule/Apply}/__init__.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Rule/Apply/reactor_rule.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Rule/Apply/retro_reactor.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Rule/Apply/rule_matcher.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Rule/Apply/rule_rbl.py +0 -0
- {synkit-0.0.17/synkit/Synthesis/Reactor → synkit-1.1.0/synkit/Rule/Compose}/__init__.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Rule/Compose/compose_rule.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Rule/Compose/rule_compose.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Rule/Compose/rule_mapping.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Rule/Compose/seq_comp.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Rule/Compose/valence_constrain.py +0 -0
- {synkit-0.0.17/synkit/Synthesis → synkit-1.1.0/synkit/Rule/Modify}/__init__.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Rule/Modify/implict_rule.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Rule/Modify/longest_path.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Rule/Modify/molecule_rule.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Rule/Modify/prune_templates.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Rule/Modify/rule_utils.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Rule/Modify/strip_rule.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Rule/__init__.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Rule/syn_rule.py +0 -0
- {synkit-0.0.17/synkit/Utils → synkit-1.1.0/synkit/Synthesis/MSR}/__init__.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Synthesis/MSR/multi_steps.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Synthesis/MSR/path_finder.py +0 -0
- {synkit-0.0.17/synkit → synkit-1.1.0/synkit/Synthesis/Metrics}/__init__.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Synthesis/Metrics/_base.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Synthesis/Metrics/_plot.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Synthesis/Metrics/_ranking.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Synthesis/Reactor/batch_reactor.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Synthesis/Reactor/benchmark.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Synthesis/Reactor/imba_engine.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Synthesis/Reactor/mod_aam.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Synthesis/Reactor/mod_reactor.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Synthesis/Reactor/partial_engine.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Synthesis/Reactor/post_syn.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Synthesis/Reactor/rule_filter.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Synthesis/Reactor/single_predictor.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Synthesis/Reactor/strategy.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Synthesis/reactor_utils.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Utils/utils.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Vis/__init__.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Vis/chemical_space.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Vis/embedding.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Vis/graph_visualizer.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Vis/pdf_writer.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Vis/rule_vis.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/Vis/rxn_vis.py +0 -0
- {synkit-0.0.17 → synkit-1.1.0}/synkit/examples.py +0 -0
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
*cachedir
|
|
3
3
|
*.csv
|
|
4
4
|
*/catboost_info/*
|
|
5
|
-
|
|
5
|
+
|
|
6
6
|
*.json
|
|
7
7
|
*.pkl.gz
|
|
8
8
|
*.pdf
|
|
@@ -11,9 +11,11 @@
|
|
|
11
11
|
dev/*
|
|
12
12
|
*.rdf
|
|
13
13
|
test_syn_reactor.py
|
|
14
|
+
*.ipynb
|
|
14
15
|
Data/Benchmark/*
|
|
15
|
-
# *.png
|
|
16
16
|
*.json.gz
|
|
17
|
+
# *.png
|
|
18
|
+
|
|
17
19
|
run.sh
|
|
18
20
|
docs/*
|
|
19
21
|
run_rdcanon.py
|
|
@@ -21,3 +23,4 @@ Data/Fragment/*
|
|
|
21
23
|
test_partial.py
|
|
22
24
|
Data/Benchmark/synthesis/*
|
|
23
25
|
Data/USPTO/*
|
|
26
|
+
crn/*
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: synkit
|
|
3
|
-
Version:
|
|
3
|
+
Version: 1.1.0
|
|
4
4
|
Summary: Utility for reaction modeling using graph grammar
|
|
5
5
|
Project-URL: homepage, https://github.com/TieuLongPhan/SynKit
|
|
6
6
|
Project-URL: source, https://github.com/TieuLongPhan/SynKit
|
|
@@ -44,7 +44,7 @@ Description-Content-Type: text/markdown
|
|
|
44
44
|
|
|
45
45
|
**Toolkit for Synthesis Planning**
|
|
46
46
|
|
|
47
|
-
SynKit is a collection of tools designed to support the planning and execution of chemical synthesis.
|
|
47
|
+
SynKit is a collection of tools designed to support the planning and execution of chemical synthesis. Check out the [documentation](https://tieulongphan.github.io/SynKit/) for a comprehensive description of its features.
|
|
48
48
|
|
|
49
49
|

|
|
50
50
|
|
|
@@ -96,7 +96,7 @@ For more details on each utility within the repository, please refer to the docu
|
|
|
96
96
|
```bash
|
|
97
97
|
docker pull tieulongphan/synkit:latest
|
|
98
98
|
# or a specific version:
|
|
99
|
-
docker pull tieulongphan/synkit:
|
|
99
|
+
docker pull tieulongphan/synkit:1.0.0
|
|
100
100
|
```
|
|
101
101
|
Run a container (sanity check):
|
|
102
102
|
```
|
|
@@ -105,7 +105,7 @@ For more details on each utility within the repository, please refer to the docu
|
|
|
105
105
|
|
|
106
106
|
## Contribute
|
|
107
107
|
|
|
108
|
-
We're welcoming new contributors to build this project better. Please not hesitate to inquire me via [email]
|
|
108
|
+
We're welcoming new contributors to build this project better. Please not hesitate to inquire me via [email](tieu@bioinf.uni-leipzig.de).
|
|
109
109
|
|
|
110
110
|
Before you start, ensure your local development environment is set up correctly. Pull the latest version of the `main` branch to start with the most recent stable code.
|
|
111
111
|
|
|
@@ -166,10 +166,11 @@ git pull
|
|
|
166
166
|
- [Tieu-Long Phan](https://tieulongphan.github.io/)
|
|
167
167
|
- [Klaus Weinbauer](https://github.com/klausweinbauer)
|
|
168
168
|
- [Phuoc-Chung Nguyen Van](https://github.com/phuocchung123)
|
|
169
|
+
- [Tuyet-Minh Phan](https://github.com/tuyetminhphan)
|
|
169
170
|
|
|
170
171
|
## Publication
|
|
171
172
|
|
|
172
|
-
[**SynKit**:
|
|
173
|
+
[**SynKit**: A Graph-Based Python Framework for Rule-Based Reaction Modeling and Analysis](https://pubs.acs.org/doi/full/10.1021/acs.jcim.5c02123)
|
|
173
174
|
|
|
174
175
|
|
|
175
176
|
## License
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
|
|
14
14
|
**Toolkit for Synthesis Planning**
|
|
15
15
|
|
|
16
|
-
SynKit is a collection of tools designed to support the planning and execution of chemical synthesis.
|
|
16
|
+
SynKit is a collection of tools designed to support the planning and execution of chemical synthesis. Check out the [documentation](https://tieulongphan.github.io/SynKit/) for a comprehensive description of its features.
|
|
17
17
|
|
|
18
18
|

|
|
19
19
|
|
|
@@ -65,7 +65,7 @@ For more details on each utility within the repository, please refer to the docu
|
|
|
65
65
|
```bash
|
|
66
66
|
docker pull tieulongphan/synkit:latest
|
|
67
67
|
# or a specific version:
|
|
68
|
-
docker pull tieulongphan/synkit:
|
|
68
|
+
docker pull tieulongphan/synkit:1.0.0
|
|
69
69
|
```
|
|
70
70
|
Run a container (sanity check):
|
|
71
71
|
```
|
|
@@ -74,7 +74,7 @@ For more details on each utility within the repository, please refer to the docu
|
|
|
74
74
|
|
|
75
75
|
## Contribute
|
|
76
76
|
|
|
77
|
-
We're welcoming new contributors to build this project better. Please not hesitate to inquire me via [email]
|
|
77
|
+
We're welcoming new contributors to build this project better. Please not hesitate to inquire me via [email](tieu@bioinf.uni-leipzig.de).
|
|
78
78
|
|
|
79
79
|
Before you start, ensure your local development environment is set up correctly. Pull the latest version of the `main` branch to start with the most recent stable code.
|
|
80
80
|
|
|
@@ -135,10 +135,11 @@ git pull
|
|
|
135
135
|
- [Tieu-Long Phan](https://tieulongphan.github.io/)
|
|
136
136
|
- [Klaus Weinbauer](https://github.com/klausweinbauer)
|
|
137
137
|
- [Phuoc-Chung Nguyen Van](https://github.com/phuocchung123)
|
|
138
|
+
- [Tuyet-Minh Phan](https://github.com/tuyetminhphan)
|
|
138
139
|
|
|
139
140
|
## Publication
|
|
140
141
|
|
|
141
|
-
[**SynKit**:
|
|
142
|
+
[**SynKit**: A Graph-Based Python Framework for Rule-Based Reaction Modeling and Analysis](https://pubs.acs.org/doi/full/10.1021/acs.jcim.5c02123)
|
|
142
143
|
|
|
143
144
|
|
|
144
145
|
## License
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "synkit"
|
|
7
|
-
version = "
|
|
7
|
+
version = "1.1.0"
|
|
8
8
|
description = "Utility for reaction modeling using graph grammar"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
long-description = { file = "CHANGELOG.md" }
|
|
@@ -45,12 +45,10 @@ issues = "https://github.com/TieuLongPhan/SynKit/issues"
|
|
|
45
45
|
documentation = "https://tieulongphan.github.io/SynKit/"
|
|
46
46
|
|
|
47
47
|
[tool.hatch.build]
|
|
48
|
-
# ship your code as normal
|
|
49
48
|
packages = ["synkit"]
|
|
50
49
|
|
|
51
|
-
|
|
52
|
-
[
|
|
53
|
-
"synkit/Data" = "synkit/Data"
|
|
50
|
+
[tool.hatch.build.targets.wheel]
|
|
51
|
+
include = ["synkit/Data/**"]
|
|
54
52
|
|
|
55
|
-
[tool.hatch.build.targets.sdist
|
|
56
|
-
|
|
53
|
+
[tool.hatch.build.targets.sdist]
|
|
54
|
+
include = ["synkit/Data/**"]
|