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.
- {biocypher-0.5.43 → biocypher-0.5.44}/PKG-INFO +1 -1
- {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/_metadata.py +1 -1
- {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/output/write/graph/_neo4j.py +7 -7
- {biocypher-0.5.43 → biocypher-0.5.44}/pyproject.toml +7 -1
- {biocypher-0.5.43 → biocypher-0.5.44}/LICENSE +0 -0
- {biocypher-0.5.43 → biocypher-0.5.44}/README.md +0 -0
- {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/__init__.py +0 -0
- {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/_config/__init__.py +0 -0
- {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/_config/biocypher_config.yaml +0 -0
- {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/_config/test_config.yaml +0 -0
- {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/_config/test_schema_config.yaml +0 -0
- {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/_config/test_schema_config_disconnected.yaml +0 -0
- {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/_config/test_schema_config_extended.yaml +0 -0
- {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/_core.py +0 -0
- {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/_create.py +0 -0
- {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/_deduplicate.py +0 -0
- {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/_get.py +0 -0
- {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/_logger.py +0 -0
- {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/_mapping.py +0 -0
- {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/_misc.py +0 -0
- {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/_ontology.py +0 -0
- {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/_translate.py +0 -0
- {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/output/__init__.py +0 -0
- {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/output/connect/__init__.py +0 -0
- {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/output/connect/_neo4j_driver.py +0 -0
- {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/output/in_memory/__init__.py +0 -0
- {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/output/in_memory/_pandas.py +0 -0
- {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/output/write/__init__.py +0 -0
- {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/output/write/_batch_writer.py +0 -0
- {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/output/write/_get_writer.py +0 -0
- {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/output/write/_writer.py +0 -0
- {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/output/write/graph/__init__.py +0 -0
- {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/output/write/graph/_arangodb.py +0 -0
- {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/output/write/graph/_networkx.py +0 -0
- {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/output/write/graph/_rdf.py +0 -0
- {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/output/write/relational/__init__.py +0 -0
- {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/output/write/relational/_csv.py +0 -0
- {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/output/write/relational/_postgresql.py +0 -0
- {biocypher-0.5.43 → biocypher-0.5.44}/biocypher/output/write/relational/_sqlite.py +0 -0
|
@@ -301,11 +301,13 @@ class _Neo4jBatchWriter(_BatchWriter):
|
|
|
301
301
|
Returns:
|
|
302
302
|
str: The import call.
|
|
303
303
|
"""
|
|
304
|
-
import_call =
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
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.
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{biocypher-0.5.43 → biocypher-0.5.44}/biocypher/_config/test_schema_config_disconnected.yaml
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
|