From 6812756faeb00bbe5859bf386c4415e14e4091b1 Mon Sep 17 00:00:00 2001 From: Charles Tapley Hoyt Date: Mon, 8 Apr 2024 09:31:32 +0200 Subject: [PATCH] Renames --- scripts/anatomy/anatomy-landscape.ipynb | 2 +- scripts/anatomy/{build.py => anatomy.py} | 0 scripts/cell/cell-landscape.ipynb | 4 ++-- scripts/cell/{cells.py => cell.py} | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename scripts/anatomy/{build.py => anatomy.py} (100%) rename scripts/cell/{cells.py => cell.py} (100%) diff --git a/scripts/anatomy/anatomy-landscape.ipynb b/scripts/anatomy/anatomy-landscape.ipynb index b85f3fd..73df79e 100644 --- a/scripts/anatomy/anatomy-landscape.ipynb +++ b/scripts/anatomy/anatomy-landscape.ipynb @@ -7,7 +7,7 @@ "metadata": {}, "outputs": [], "source": [ - "from build import CONFIGURATION\n", + "from anatomy import CONFIGURATION\n", "\n", "from semra.analysis.landscape import get_mesh_category_curies, notebook\n", "\n", diff --git a/scripts/anatomy/build.py b/scripts/anatomy/anatomy.py similarity index 100% rename from scripts/anatomy/build.py rename to scripts/anatomy/anatomy.py diff --git a/scripts/cell/cell-landscape.ipynb b/scripts/cell/cell-landscape.ipynb index 0ea3111..260765a 100644 --- a/scripts/cell/cell-landscape.ipynb +++ b/scripts/cell/cell-landscape.ipynb @@ -17,9 +17,9 @@ } ], "source": [ - "from cells import CONFIGURATION, SUBSETS\n", + "from cell import CONFIGURATION, SUBSETS\n", "\n", - "from semra.analysis.landscape import get_terms, notebook" + "from semra.analysis.landscape import notebook" ] }, { diff --git a/scripts/cell/cells.py b/scripts/cell/cell.py similarity index 100% rename from scripts/cell/cells.py rename to scripts/cell/cell.py