M3Drop 0.4.50__tar.gz → 0.4.51__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: M3Drop
3
- Version: 0.4.50
3
+ Version: 0.4.51
4
4
  Summary: A Python implementation of the M3Drop single-cell RNA-seq analysis tool.
5
5
  Home-page: https://github.com/PragalvhaSharma/m3DropNew
6
6
  Author: Tallulah Andrews
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: M3Drop
3
- Version: 0.4.50
3
+ Version: 0.4.51
4
4
  Summary: A Python implementation of the M3Drop single-cell RNA-seq analysis tool.
5
5
  Home-page: https://github.com/PragalvhaSharma/m3DropNew
6
6
  Author: Tallulah Andrews
@@ -189,7 +189,8 @@ def NBumiPearsonResidualsCombinedGPU(
189
189
  if n_samples_chunk > 0:
190
190
  # Index Sampling: Zero VRAM overhead compared to Masking
191
191
  # Use flatten indices
192
- sample_indices = cupy.random.choice(chunk_total_items, size=n_samples_chunk, replace=False)
192
+ # [FIXED LINE BELOW] Added int() cast for safety
193
+ sample_indices = cupy.random.choice(int(chunk_total_items), size=n_samples_chunk, replace=False)
193
194
  else:
194
195
  sample_indices = None
195
196
 
@@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
5
5
 
6
6
  setuptools.setup(
7
7
  name="M3Drop", # Name for pip (pip install M3Drop)
8
- version="0.4.50",
8
+ version="0.4.51",
9
9
  author="Tallulah Andrews",
10
10
  author_email="tandrew6@uwo.ca",
11
11
  description="A Python implementation of the M3Drop single-cell RNA-seq analysis tool.",
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes