From daa3a9cade431b21bbc48b690c16dcb8746f3dce Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Wed, 21 Dec 2022 03:39:52 +0300 Subject: gn3: (gn3.random -> gn3.chancy): Rename module to avoid conflicts. Rename the `gn3.random` module to gn3.chancy to avoid conflicts with Python's `random` module. * gn3/random.py -> gn3/chancy.py: rename module * gn3/commands.py: update import * gn3/computations/partial_correlations.py: update import * gn3/computations/qtlreaper.py: update import * gn3/computations/rust_correlation.py: update import * gn3/db/correlations.py: update import * gn3/db/traits.py: update import * gn3/heatmaps.py: update import * tests/integration/conftest.py: update import --- gn3/db/correlations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gn3/db/correlations.py') diff --git a/gn3/db/correlations.py b/gn3/db/correlations.py index a8a72bc..aec8eac 100644 --- a/gn3/db/correlations.py +++ b/gn3/db/correlations.py @@ -6,7 +6,7 @@ import os from functools import reduce from typing import Any, Dict, Tuple, Union, Optional -from gn3.random import random_string +from gn3.chancy import random_string from gn3.data_helpers import partition_all from gn3.db.species import translate_to_mouse_gene_id -- cgit v1.2.3