diff options
author | Frederick Muriuki Muriithi | 2025-05-28 16:13:02 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2025-05-28 16:13:02 -0500 |
commit | 15c33a5c1f49cce6e229ed616598771ec79acc01 (patch) | |
tree | 51cac69ff7a5f6124eefe8f225e604ea657d052e | |
parent | d8ca7f5c916eadb40fb8e4ea55a853f46f065ae4 (diff) | |
download | gn-uploader-15c33a5c1f49cce6e229ed616598771ec79acc01.tar.gz |
Add missing import.
-rw-r--r-- | scripts/load_phenotypes_to_db.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/load_phenotypes_to_db.py b/scripts/load_phenotypes_to_db.py index 9ba91a0..766001a 100644 --- a/scripts/load_phenotypes_to_db.py +++ b/scripts/load_phenotypes_to_db.py @@ -11,8 +11,10 @@ from MySQLdb.cursors import Cursor, DictCursor from gn_libs import jobs, mysqldb, sqlite3 from r_qtl import r_qtl2 as rqtl2 -from uploader.phenotypes.models import save_phenotypes_data from uploader.samples.models import samples_by_species_and_population +from uploader.phenotypes.models import ( + save_phenotypes_data, + create_new_phenotypes) from uploader.publications.models import ( create_new_publications, fetch_publication_by_id) |