Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactored test cases #97

Merged
merged 25 commits into from
Dec 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
0412f43
regenerated test file for test_align
anushka255 Nov 22, 2024
624b635
regenerated test file for test_model_selection
anushka255 Nov 22, 2024
ff2508b
regenerated test file for test_paste
anushka255 Nov 24, 2024
c30ace7
minor update
anushka255 Nov 24, 2024
abb7859
regenerated test file for test_paste_2
anushka255 Nov 24, 2024
1c4ae77
regenerated test file for test_paste_helpers
anushka255 Nov 25, 2024
ab6f07e
regenerated test file for test_visualization
anushka255 Nov 25, 2024
c08d407
consolidating test files in a single directory; getting rid of tests/…
anushka255 Nov 25, 2024
ee9a567
Merge branch 'main' into aa/refact_test
anushka255 Nov 25, 2024
b341bde
pre-commit checked
anushka255 Nov 25, 2024
d1d737d
fixed docs
anushka255 Nov 25, 2024
ad64987
added tolerance;
anushka255 Nov 25, 2024
1547bb4
lowered tolerance
anushka255 Nov 25, 2024
20fb152
upgraded numpy
anushka255 Nov 25, 2024
32f09c3
upgraded pinned dependencies to latest versions
anushka255 Nov 25, 2024
3476c3c
unpinning some dep
anushka255 Nov 25, 2024
f8d603c
unpinning some dep
anushka255 Nov 25, 2024
bf974e7
unpinning some deps
anushka255 Nov 25, 2024
d6eb368
unpinning some deps
anushka255 Nov 25, 2024
3cf3ee5
unpinning some deps
anushka255 Nov 25, 2024
9e0ac5e
reverting requirement changes
anushka255 Nov 25, 2024
ce5ad12
Merge branch 'main' into aa/refact_test
anushka255 Dec 2, 2024
a82210a
updated requirements
anushka255 Dec 2, 2024
82959f3
unpinned everything in pyproject.toml
anushka255 Dec 2, 2024
a7b889e
unpinned everything expect POT
anushka255 Dec 3, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/source/notebooks/paste2_tutorial.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@
"metadata": {},
"outputs": [],
"source": [
"sliceA_filename = \"../../../tests/data/input/151673.h5ad\"\n",
"sliceB_filename = \"../../../tests/data/input/151674.h5ad\"\n",
"sliceC_filename = \"../../../tests/data/input/151675.h5ad\"\n",
"sliceD_filename = \"../../../tests/data/input/151676.h5ad\"\n",
"sliceA_filename = \"../../../tests/data/151673.h5ad\"\n",
"sliceB_filename = \"../../../tests/data/151674.h5ad\"\n",
"sliceC_filename = \"../../../tests/data/151675.h5ad\"\n",
"sliceD_filename = \"../../../tests/data/151676.h5ad\"\n",
"sliceA = sc.read_h5ad(sliceA_filename)\n",
"sliceB = sc.read_h5ad(sliceB_filename)\n",
"sliceC = sc.read_h5ad(sliceC_filename)\n",
Expand Down
4 changes: 2 additions & 2 deletions docs/source/notebooks/paste_tutorial.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"metadata": {},
"outputs": [],
"source": [
"data_dir = \"../../../tests/data/input/\"\n",
"data_dir = \"../../../tests/data/\"\n",
"\n",
"\n",
"# Assume that the coordinates of slices are named slice_name + \"_coor.csv\"\n",
Expand Down Expand Up @@ -609,7 +609,7 @@
"metadata": {},
"outputs": [],
"source": [
"data_dir = \"../../../tests/data/input/\"\n",
"data_dir = \"../../../tests/data/\"\n",
"\n",
"\n",
"# Assume that the coordinates of slices are named slice_name + \"_coor.csv\"\n",
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ classifiers = [
]

dependencies = [
"anndata==0.10.9",
"anndata",
"scanpy",
"POT>=0.9.5",
"numpy<2",
"numpy",
"scipy",
"scikit-learn",
"IPython",
Expand Down Expand Up @@ -50,7 +50,7 @@ dev = [
]

docs = [
"sphinx==6.2.1",
"sphinx",
"myst-parser",
"sphinx-autodoc-typehints",
"nbsphinx",
Expand Down
Loading
Loading