diff options
Diffstat (limited to 'uploader/phenotypes/views.py')
-rw-r--r-- | uploader/phenotypes/views.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/uploader/phenotypes/views.py b/uploader/phenotypes/views.py index 434912b..4d733bc 100644 --- a/uploader/phenotypes/views.py +++ b/uploader/phenotypes/views.py @@ -644,7 +644,11 @@ def load_data_to_database( load_job_id, command, "load-new-phenotypes-data", - extra_meta={}), + extra_meta={ + "species_id": species["SpeciesId"], + "population_id": population["Id"], + "dataset_id": dataset["Id"] + }), jobs_db, f"{app.config['UPLOAD_FOLDER']}/job_errors", worker_manager="gn_libs.jobs.launcher") |