diff options
author | Frederick Muriuki Muriithi | 2025-05-30 13:53:06 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2025-05-30 13:53:06 -0500 |
commit | 3f3155dfba9d7467237f45af059df376fc82f117 (patch) | |
tree | d0b1b1882983a29fa6efb9bf928fc066382dd4f6 | |
parent | 8ecb5201fcf9cd872659616aa01ec6e5c709938f (diff) | |
download | gn-uploader-3f3155dfba9d7467237f45af059df376fc82f117.tar.gz |
Save standard errors and counts.
-rw-r--r-- | scripts/load_phenotypes_to_db.py | 4 |
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 |