about summary refs log tree commit diff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/load_phenotypes_to_db.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/load_phenotypes_to_db.py b/scripts/load_phenotypes_to_db.py
index 12183e2..53009d8 100644
--- a/scripts/load_phenotypes_to_db.py
+++ b/scripts/load_phenotypes_to_db.py
@@ -275,8 +275,8 @@ def load_data(conn, job):
         conn, tuple(dataidmap.values()))
     # 5. If standard errors and N exist, save them too
     #    (use IDs returned in `3. b.` above).
-    data_se = save_phenotypes_se(conn, dataidmap, samples, _control_data, _outdir)
-    data_n = save_phenotypes_n(conn, dataidmap, samples, _control_data, _outdir)
+    _data_se = save_phenotypes_se(conn, dataidmap, samples, _control_data, _outdir)
+    _data_n = save_phenotypes_n(conn, dataidmap, samples, _control_data, _outdir)
     # 6. If entirely new data, update authorisations (break this down)
     update_auth(_user, _species, _population, _dataset, _phenos)
     return 0