-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from earmingol/new_version
Quick rename of "moving windows" into "sliding windows"
- Loading branch information
Showing
6 changed files
with
18 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,4 +13,4 @@ | |
from cell2cell import tensor | ||
from cell2cell import utils | ||
|
||
__version__ = "0.7.0" | ||
__version__ = "0.7.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
from cell2cell.spatial.distances import (celltype_pair_distance, pairwise_celltype_distances) | ||
from cell2cell.spatial.filtering import (dist_filter_liana, dist_filter_tensor) | ||
from cell2cell.spatial.neighborhoods import (create_spatial_grid, create_moving_windows, calculate_window_size, add_moving_window_info_to_adata) | ||
from cell2cell.spatial.neighborhoods import (create_spatial_grid, create_sliding_windows, calculate_window_size, add_sliding_window_info_to_adata) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Release Notes - cell2cell v0.7.1 | ||
|
||
## New features | ||
- Refer to [v0.7.0 notes](./0.7.0-notes.md) to see the new features. This is a quick fix of that version. | ||
|
||
## Feature updates | ||
- Renamed `cell2cell.spatial.neighborhoods.create_moving_windows()` and | ||
and `cell2cell.spatial.neighborhoods.add_moving_window_info_to_adata()` into | ||
`cell2cell.spatial.neighborhoods.create_sliding_windows()` and | ||
and `cell2cell.spatial.neighborhoods.add_sliding_window_info_to_adata()` respectively. | ||
|
||
## Fixed Bugs |