M3Drop 0.4.56__tar.gz → 0.4.57__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.
- {m3drop-0.4.56 → m3drop-0.4.57/M3Drop.egg-info}/PKG-INFO +1 -1
- {m3drop-0.4.56/M3Drop.egg-info → m3drop-0.4.57}/PKG-INFO +1 -1
- {m3drop-0.4.56 → m3drop-0.4.57}/m3Drop/NormalizationCPU.py +4 -4
- {m3drop-0.4.56 → m3drop-0.4.57}/m3Drop/NormalizationGPU.py +5 -4
- {m3drop-0.4.56 → m3drop-0.4.57}/setup.py +1 -1
- {m3drop-0.4.56 → m3drop-0.4.57}/LICENSE +0 -0
- {m3drop-0.4.56 → m3drop-0.4.57}/M3Drop.egg-info/SOURCES.txt +0 -0
- {m3drop-0.4.56 → m3drop-0.4.57}/M3Drop.egg-info/dependency_links.txt +0 -0
- {m3drop-0.4.56 → m3drop-0.4.57}/M3Drop.egg-info/requires.txt +0 -0
- {m3drop-0.4.56 → m3drop-0.4.57}/M3Drop.egg-info/top_level.txt +0 -0
- {m3drop-0.4.56 → m3drop-0.4.57}/README.md +0 -0
- {m3drop-0.4.56 → m3drop-0.4.57}/m3Drop/ControlDeviceCPU.py +0 -0
- {m3drop-0.4.56 → m3drop-0.4.57}/m3Drop/ControlDeviceGPU.py +0 -0
- {m3drop-0.4.56 → m3drop-0.4.57}/m3Drop/CoreCPU.py +0 -0
- {m3drop-0.4.56 → m3drop-0.4.57}/m3Drop/CoreGPU.py +0 -0
- {m3drop-0.4.56 → m3drop-0.4.57}/m3Drop/DiagnosticsCPU.py +0 -0
- {m3drop-0.4.56 → m3drop-0.4.57}/m3Drop/DiagnosticsGPU.py +0 -0
- {m3drop-0.4.56 → m3drop-0.4.57}/m3Drop/__init__.py +0 -0
- {m3drop-0.4.56 → m3drop-0.4.57}/pyproject.toml +0 -0
- {m3drop-0.4.56 → m3drop-0.4.57}/setup.cfg +0 -0
|
@@ -115,7 +115,7 @@ def NBumiPearsonResidualsCombinedCPU(
|
|
|
115
115
|
else:
|
|
116
116
|
sampling_rate = TARGET_SAMPLES / total_points
|
|
117
117
|
|
|
118
|
-
print(f"
|
|
118
|
+
print(f"Phase [1/2]: Visualization Sampling Rate: {sampling_rate*100:.4f}% (Target: {TARGET_SAMPLES:,} points)")
|
|
119
119
|
|
|
120
120
|
# 2. Accumulators (Numpy Arrays - Small memory footprint)
|
|
121
121
|
acc_raw_sum = np.zeros(ng_filtered, dtype=np.float64)
|
|
@@ -256,10 +256,10 @@ def NBumiPearsonResidualsCombinedCPU(
|
|
|
256
256
|
flat_approx = np.array([])
|
|
257
257
|
flat_full = np.array([])
|
|
258
258
|
|
|
259
|
-
print(f"
|
|
259
|
+
print(f"Phase [Viz]: Samples Collected... n = {len(flat_approx):,}")
|
|
260
260
|
|
|
261
261
|
# --- FILE 1: SUMMARY (1080p) ---
|
|
262
|
-
print(f"
|
|
262
|
+
print(f"Saving Summary Plot to {plot_summary_filename}")
|
|
263
263
|
fig1, ax1 = plt.subplots(1, 2, figsize=(16, 7))
|
|
264
264
|
|
|
265
265
|
# Plot 1: Variance Stabilization
|
|
@@ -299,7 +299,7 @@ def NBumiPearsonResidualsCombinedCPU(
|
|
|
299
299
|
plt.close()
|
|
300
300
|
|
|
301
301
|
# --- FILE 2: DETAIL (4K) ---
|
|
302
|
-
print(f"
|
|
302
|
+
print(f"Saving plot detail plot to: {plot_detail_filename}")
|
|
303
303
|
fig2, ax2 = plt.subplots(figsize=(20, 11))
|
|
304
304
|
|
|
305
305
|
if len(flat_approx) > 0:
|
|
@@ -116,7 +116,7 @@ def NBumiPearsonResidualsCombinedGPU(
|
|
|
116
116
|
else:
|
|
117
117
|
sampling_rate = TARGET_SAMPLES / total_points
|
|
118
118
|
|
|
119
|
-
print(f"
|
|
119
|
+
print(f"Phase [1/2]: Visualization Sampling Rate: {sampling_rate*100:.4f}% (Target: {TARGET_SAMPLES:,} points)")
|
|
120
120
|
|
|
121
121
|
# 2. Accumulators for Plot 1 (Variance) - EXACT MATH
|
|
122
122
|
acc_raw_sum = cupy.zeros(ng_filtered, dtype=cupy.float64)
|
|
@@ -289,10 +289,10 @@ def NBumiPearsonResidualsCombinedGPU(
|
|
|
289
289
|
flat_approx = np.array([])
|
|
290
290
|
flat_full = np.array([])
|
|
291
291
|
|
|
292
|
-
print(f"
|
|
292
|
+
print(f"Phase [Viz]: Samples Collected... n = {len(flat_approx):,}")
|
|
293
293
|
|
|
294
294
|
# --- FILE 1: SUMMARY (1080p) ---
|
|
295
|
-
print(f"
|
|
295
|
+
print(f"Saving Summary Plot to {plot_summary_filename}")
|
|
296
296
|
fig1, ax1 = plt.subplots(1, 2, figsize=(16, 7))
|
|
297
297
|
|
|
298
298
|
# Plot 1: Variance Stabilization
|
|
@@ -341,7 +341,7 @@ def NBumiPearsonResidualsCombinedGPU(
|
|
|
341
341
|
plt.close()
|
|
342
342
|
|
|
343
343
|
# --- FILE 2: DETAIL (4K) ---
|
|
344
|
-
print(f"
|
|
344
|
+
print(f"Saving plot detail plot to: {plot_detail_filename}")
|
|
345
345
|
fig2, ax2 = plt.subplots(figsize=(20, 11))
|
|
346
346
|
|
|
347
347
|
if len(flat_approx) > 0:
|
|
@@ -367,3 +367,4 @@ def NBumiPearsonResidualsCombinedGPU(
|
|
|
367
367
|
|
|
368
368
|
if hasattr(adata_in, "file") and adata_in.file is not None: adata_in.file.close()
|
|
369
369
|
print(f"Total time: {time.perf_counter() - start_time:.2f} seconds.\n")
|
|
370
|
+
|
|
@@ -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.
|
|
8
|
+
version="0.4.57",
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|