diff options
author | Frederick Muriuki Muriithi | 2024-09-03 14:55:48 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-09-03 16:51:26 -0500 |
commit | 61688c00e8734adee4d825571a9c43d926dca001 (patch) | |
tree | 0a53c7eff5ec2bb1376be2eb2bdd2333c606ba11 /uploader/expression_data/samples.py | |
parent | 2876fe6251bd4dfceef06f638ee74c2728ad1207 (diff) | |
download | gn-uploader-61688c00e8734adee4d825571a9c43d926dca001.tar.gz |
Initialise the populations package and update references.
Diffstat (limited to 'uploader/expression_data/samples.py')
-rw-r--r-- | uploader/expression_data/samples.py | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/uploader/expression_data/samples.py b/uploader/expression_data/samples.py index 0715d14..d430aa9 100644 --- a/uploader/expression_data/samples.py +++ b/uploader/expression_data/samples.py @@ -28,13 +28,10 @@ from uploader.db_utils import ( with_db_connection, database_connection, with_redis_connection) -from uploader.db import ( - species_by_id, - save_population, - population_by_id, - populations_by_species, - species as fetch_species) from uploader.species.models import species_by_id, all_species as fetch_species +from uploader.population.models import(save_population, + population_by_id, + populations_by_species) samples = Blueprint("samples", __name__) |