biocypher 0.5.43__tar.gz → 0.5.44__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.

Potentially problematic release.


This version of biocypher might be problematic. Click here for more details.

Files changed (39) hide show
  1. {biocypher-0.5.43 → biocypher-0.5.44}/PKG-INFO +1 -1
  2. {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/_metadata.py +1 -1
  3. {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/output/write/graph/_neo4j.py +7 -7
  4. {biocypher-0.5.43 → biocypher-0.5.44}/pyproject.toml +7 -1
  5. {biocypher-0.5.43 → biocypher-0.5.44}/LICENSE +0 -0
  6. {biocypher-0.5.43 → biocypher-0.5.44}/README.md +0 -0
  7. {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/__init__.py +0 -0
  8. {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/_config/__init__.py +0 -0
  9. {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/_config/biocypher_config.yaml +0 -0
  10. {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/_config/test_config.yaml +0 -0
  11. {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/_config/test_schema_config.yaml +0 -0
  12. {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/_config/test_schema_config_disconnected.yaml +0 -0
  13. {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/_config/test_schema_config_extended.yaml +0 -0
  14. {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/_core.py +0 -0
  15. {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/_create.py +0 -0
  16. {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/_deduplicate.py +0 -0
  17. {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/_get.py +0 -0
  18. {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/_logger.py +0 -0
  19. {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/_mapping.py +0 -0
  20. {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/_misc.py +0 -0
  21. {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/_ontology.py +0 -0
  22. {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/_translate.py +0 -0
  23. {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/output/__init__.py +0 -0
  24. {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/output/connect/__init__.py +0 -0
  25. {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/output/connect/_neo4j_driver.py +0 -0
  26. {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/output/in_memory/__init__.py +0 -0
  27. {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/output/in_memory/_pandas.py +0 -0
  28. {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/output/write/__init__.py +0 -0
  29. {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/output/write/_batch_writer.py +0 -0
  30. {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/output/write/_get_writer.py +0 -0
  31. {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/output/write/_writer.py +0 -0
  32. {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/output/write/graph/__init__.py +0 -0
  33. {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/output/write/graph/_arangodb.py +0 -0
  34. {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/output/write/graph/_networkx.py +0 -0
  35. {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/output/write/graph/_rdf.py +0 -0
  36. {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/output/write/relational/__init__.py +0 -0
  37. {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/output/write/relational/_csv.py +0 -0
  38. {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/output/write/relational/_postgresql.py +0 -0
  39. {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/output/write/relational/_sqlite.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: biocypher
3
- Version: 0.5.43
3
+ Version: 0.5.44
4
4
  Summary: A unifying framework for biomedical research knowledge graphs
5
5
  Home-page: https://github.com/biocypher/biocypher
6
6
  License: MIT
@@ -19,7 +19,7 @@ import importlib.metadata
19
19
 
20
20
  import toml
21
21
 
22
- _VERSION = "0.5.43"
22
+ _VERSION = "0.5.44"
23
23
 
24
24
 
25
25
  def get_metadata():
@@ -301,11 +301,13 @@ class _Neo4jBatchWriter(_BatchWriter):
301
301
  Returns:
302
302
  str: The import call.
303
303
  """
304
- import_call = (
305
- f"{self.import_call_bin_prefix}neo4j-admin {import_cmd} "
306
- f'--delimiter="{self.escaped_delim}" '
307
- f'--array-delimiter="{self.escaped_adelim}" '
308
- )
304
+ import_call = f"{self.import_call_bin_prefix}neo4j-admin {import_cmd} "
305
+
306
+ import_call += f"{database_cmd}{self.db_name} "
307
+
308
+ import_call += f'--delimiter="{self.escaped_delim}" '
309
+
310
+ import_call += f'--array-delimiter="{self.escaped_adelim}" '
309
311
 
310
312
  if self.quote == "'":
311
313
  import_call += f'--quote="{self.quote}" '
@@ -327,6 +329,4 @@ class _Neo4jBatchWriter(_BatchWriter):
327
329
  for header_path, parts_path in self.import_call_edges:
328
330
  import_call += f'--relationships="{header_path},{parts_path}" '
329
331
 
330
- # Database needs to be at the end starting with Neo4j 5.0+.
331
- import_call += f"{database_cmd}{self.db_name} "
332
332
  return import_call
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "biocypher"
3
- version = "0.5.43"
3
+ version = "0.5.44"
4
4
  description = "A unifying framework for biomedical research knowledge graphs"
5
5
  authors = [
6
6
  "Sebastian Lobentanzer <sebastian.lobentanzer@gmail.com>",
@@ -23,6 +23,12 @@ classifiers = [
23
23
  repository = "https://github.com/biocypher/biocypher"
24
24
  readme = "README.md"
25
25
 
26
+ [project.urls]
27
+ Homepage = "https://biocypher.org"
28
+ Documentation = "https://biocypher.org"
29
+ Repository = "https://github.com/biocypher/biocypher.git"
30
+ Issues = "https://github.com/biocypher/biocypher/issues"
31
+
26
32
  [tool.poetry.dependencies]
27
33
  python = "^3.9"
28
34
  PyYAML = ">=5.0"
File without changes
File without changes
File without changes