Skip to content

Commit 301b89f

Browse files
committed
sqlites_path -> csvs_path
1 parent e0b428d commit 301b89f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

dataload/08_run_queries/run_queries.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ def main():
2323
neo_data_path = os.path.abspath(os.path.join(neo_path, "data"))
2424
neo_logs_path = os.path.abspath(os.path.join(neo_path, "logs"))
2525

26-
sqlites_path = args.out_sqlites_path
26+
csvs_path = args.out_csvs_path
2727

28-
os.makedirs(sqlites_path)
28+
os.makedirs(csvs_path)
2929

3030
if has_singularity:
3131
cmd = ' '.join([
@@ -36,7 +36,7 @@ def main():
3636
'--bind ' + shlex.quote(neo_logs_path) + ':/logs',
3737
'--bind ' + os.path.abspath(os.path.join(os.environ['GREBI_DATALOAD_HOME'], '08_run_queries/run_queries.dockerpy')) + ':/run_queries.py',
3838
'--bind ' + os.path.abspath(os.environ['GREBI_QUERY_YAMLS_PATH']) + ':/materialised_queries',
39-
'--bind ' + os.path.abspath(args.out_sqlites_path) + ':/out',
39+
'--bind ' + os.path.abspath(args.out_csvs_path) + ':/out',
4040
'--writable-tmpfs',
4141
'--network=none',
4242
'--env NEO4J_AUTH=none',
@@ -51,7 +51,7 @@ def main():
5151
'-v ' + shlex.quote(neo_logs_path) + ':/logs',
5252
'-v ' + os.path.abspath(os.path.join(os.environ['GREBI_DATALOAD_HOME'], '08_run_queries/run_queries.dockerpy')) + ':/run_queries.py',
5353
'-v ' + os.path.abspath(os.environ['GREBI_QUERY_YAMLS_PATH']) + ':/materialised_queries',
54-
'-v ' + os.path.abspath(args.out_sqlites_path) + ':/out',
54+
'-v ' + os.path.abspath(args.out_csvs_path) + ':/out',
5555
'-e NEO4J_AUTH=none',
5656
'ghcr.io/ebispot/grebi_neo4j_with_extras:5.18.0',
5757
'python3 /run_queries.py'

0 commit comments

Comments
 (0)