chemrecon 0.1.1__tar.gz → 0.1.2__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.
- {chemrecon-0.1.1 → chemrecon-0.1.2}/PKG-INFO +3 -3
- {chemrecon-0.1.1 → chemrecon-0.1.2}/README.md +2 -2
- {chemrecon-0.1.1 → chemrecon-0.1.2}/pyproject.toml +2 -2
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/__init__.py +1 -1
- chemrecon-0.1.2/src/chemrecon/database/connection_params/chemrecon_dev_do.dbinfo +5 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/database/connection_params/chemrecon_pub.dbinfo +2 -2
- chemrecon-0.1.2/src/chemrecon/database/connection_params/chemrecon_pub_do.dbinfo +5 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/scripts/initialize_database.py +9 -6
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/chem/__init__.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/chem/chemreaction.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/chem/constant_compounds.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/chem/create_mol.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/chem/elements.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/chem/gml/__init__.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/chem/gml/gml.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/chem/gml/gml_reactant_matching.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/chem/gml/gml_to_rdk.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/chem/mol.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/chem/sumformula.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/connection.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/core/__init__.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/core/id_types.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/core/ontology.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/core/populate_query_handler.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/core/query_handler.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/database/__init__.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/database/connect.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/database/connection_params/local_docker_dev.dbinfo +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/database/connection_params/local_docker_init.dbinfo +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/database/connection_params/local_docker_pub.dbinfo +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/database/params.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/entrygraph/draw.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/entrygraph/entrygraph.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/entrygraph/explorationprotocol.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/entrygraph/explore.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/entrygraph/explore_procedure.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/entrygraph/filter.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/entrygraph/scoring.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/query/__init__.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/query/create_entry.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/query/default_protocols.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/query/find_entry.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/query/get_relations.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/query/get_structures_from_compound.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/schema/__init__.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/schema/db_object.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/schema/direction.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/schema/entry_types/__init__.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/schema/entry_types/aam.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/schema/entry_types/aam_repr.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/schema/entry_types/compound.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/schema/entry_types/enzyme.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/schema/entry_types/molstructure.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/schema/entry_types/molstructure_repr.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/schema/entry_types/reaction.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/schema/enums.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/schema/procedural_relation_entrygraph.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/schema/relation_types_composed/__init__.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/schema/relation_types_composed/compound_has_molstructure_relation.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/schema/relation_types_composed/reaction_has_aam_relation.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/schema/relation_types_procedural/__init__.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/schema/relation_types_procedural/aam_convert_relation.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/schema/relation_types_procedural/compound_select_structure_proceduralrelation.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/schema/relation_types_procedural/compound_similarlity_proceduralrelation.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/schema/relation_types_procedural/molstructure_convert_relation.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/schema/relation_types_procedural/reaction_select_aam_proceduralrelation.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/schema/relation_types_procedural/reaction_similarity_proceduralrelation.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/schema/relation_types_source/__init__.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/schema/relation_types_source/aam_involves_molstructure_relation.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/schema/relation_types_source/aam_repr_involves_molstructure_repr_relation.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/schema/relation_types_source/compound_has_structure_representation_relation.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/schema/relation_types_source/compound_reference_relation.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/schema/relation_types_source/molstructure_standardisation_relation.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/schema/relation_types_source/ontology/__init__.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/schema/relation_types_source/ontology/compound_ontology.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/schema/relation_types_source/ontology/enzyme_ontology.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/schema/relation_types_source/ontology/reaction_ontology.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/schema/relation_types_source/reaction_has_aam_representation_relation.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/schema/relation_types_source/reaction_has_enzyme_relation.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/schema/relation_types_source/reaction_involves_compound_relation.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/schema/relation_types_source/reaction_reference_relation.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/utils/copy_signature.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/utils/encodeable_list.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/utils/get_id_type.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/utils/hungarian.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/utils/reactant_matching.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/utils/rxnutils.py +0 -0
- {chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/utils/set_cwd.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: chemrecon
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: The ChemRecon library for integration and exploration of interconnected biochemical databases.
|
|
5
5
|
Keywords: bioinformatics
|
|
6
6
|
Author: Casper Asbjørn Eriksen
|
|
@@ -31,7 +31,7 @@ Provides-Extra: docs
|
|
|
31
31
|
Description-Content-Type: text/markdown
|
|
32
32
|
|
|
33
33
|
# ChemRecon
|
|
34
|
-
*v. 0.1.
|
|
34
|
+
*v. 0.1.2*
|
|
35
35
|
|
|
36
36
|
ChemRecon is a Python library and consolidated meta-database designed to simplify the integration and exploration of
|
|
37
37
|
biochemical data from a range of sources.
|
|
@@ -77,7 +77,7 @@ See the [GraphViz Python package](https://pypi.org/project/graphviz/) for instru
|
|
|
77
77
|
|
|
78
78
|
## Documentation
|
|
79
79
|
The documentation, including instructions on usage, tutorials, and complete description covering the types of entries
|
|
80
|
-
and relations supported, is available on the [ChemRecon homepage](https://
|
|
80
|
+
and relations supported, is available on the [ChemRecon homepage](https://chemrecon.org).
|
|
81
81
|
|
|
82
82
|
## Usage
|
|
83
83
|
The following is an example of a typical ChemRecon workflow, producing the graph seen above.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# ChemRecon
|
|
2
|
-
*v. 0.1.
|
|
2
|
+
*v. 0.1.2*
|
|
3
3
|
|
|
4
4
|
ChemRecon is a Python library and consolidated meta-database designed to simplify the integration and exploration of
|
|
5
5
|
biochemical data from a range of sources.
|
|
@@ -45,7 +45,7 @@ See the [GraphViz Python package](https://pypi.org/project/graphviz/) for instru
|
|
|
45
45
|
|
|
46
46
|
## Documentation
|
|
47
47
|
The documentation, including instructions on usage, tutorials, and complete description covering the types of entries
|
|
48
|
-
and relations supported, is available on the [ChemRecon homepage](https://
|
|
48
|
+
and relations supported, is available on the [ChemRecon homepage](https://chemrecon.org).
|
|
49
49
|
|
|
50
50
|
## Usage
|
|
51
51
|
The following is an example of a typical ChemRecon workflow, producing the graph seen above.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = 'chemrecon'
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.2"
|
|
4
4
|
description = 'The ChemRecon library for integration and exploration of interconnected biochemical databases.'
|
|
5
5
|
authors = [
|
|
6
6
|
{name = 'Casper Asbjørn Eriksen', email = 'casbjorn@imada.sdu.dk'}
|
|
@@ -33,7 +33,7 @@ classifiers = [
|
|
|
33
33
|
|
|
34
34
|
#[project.urls]
|
|
35
35
|
Homepage = 'https://chemrecon.org'
|
|
36
|
-
Documentation = 'https://
|
|
36
|
+
Documentation = 'https://chemrecon.org'
|
|
37
37
|
Repository = 'https://gitlab.com/casbjorn/chemrecon'
|
|
38
38
|
#Changelog = ''
|
|
39
39
|
|
|
@@ -143,14 +143,10 @@ def initialise_database(
|
|
|
143
143
|
public_group = sql.Identifier('public_group')
|
|
144
144
|
))
|
|
145
145
|
|
|
146
|
+
conn.commit()
|
|
147
|
+
|
|
146
148
|
# Create users/roles
|
|
147
149
|
# ----------------------------------------------------------------------------------------------------------
|
|
148
|
-
c.execute(sql.SQL(
|
|
149
|
-
'CREATE USER {dev_username} WITH PASSWORD {dev_password};'
|
|
150
|
-
).format(
|
|
151
|
-
dev_username = sql.Identifier(db_user_dev),
|
|
152
|
-
dev_password = db_pass_dev,
|
|
153
|
-
))
|
|
154
150
|
c.execute(sql.SQL(
|
|
155
151
|
'CREATE USER {pub_username} WITH PASSWORD {pub_password} IN GROUP {public_group};'
|
|
156
152
|
).format(
|
|
@@ -159,6 +155,13 @@ def initialise_database(
|
|
|
159
155
|
public_group = sql.Identifier('public_group')
|
|
160
156
|
))
|
|
161
157
|
|
|
158
|
+
c.execute(sql.SQL(
|
|
159
|
+
'CREATE USER {dev_username} WITH PASSWORD {dev_password};'
|
|
160
|
+
).format(
|
|
161
|
+
dev_username = sql.Identifier(db_user_dev),
|
|
162
|
+
dev_password = db_pass_dev,
|
|
163
|
+
))
|
|
164
|
+
|
|
162
165
|
except psycopg.errors.DuplicateObject as e:
|
|
163
166
|
# Already exists, reset
|
|
164
167
|
conn.commit()
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/database/connection_params/local_docker_dev.dbinfo
RENAMED
|
File without changes
|
|
File without changes
|
{chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/database/connection_params/local_docker_pub.dbinfo
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/schema/relation_types_composed/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/schema/relation_types_procedural/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{chemrecon-0.1.1 → chemrecon-0.1.2}/src/chemrecon/schema/relation_types_source/ontology/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|