M3Drop 0.4.57__tar.gz → 0.4.58__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.57
3
+ Version: 0.4.58
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.57
3
+ Version: 0.4.58
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
@@ -259,7 +259,7 @@ def NBumiPearsonResidualsCombinedCPU(
259
259
  print(f"Phase [Viz]: Samples Collected... n = {len(flat_approx):,}")
260
260
 
261
261
  # --- FILE 1: SUMMARY (1080p) ---
262
- print(f"Saving Summary Plot to {plot_summary_filename}")
262
+ print(f"Saving 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"Saving plot detail plot to: {plot_detail_filename}")
302
+ print(f"Saving plot to: {plot_detail_filename}")
303
303
  fig2, ax2 = plt.subplots(figsize=(20, 11))
304
304
 
305
305
  if len(flat_approx) > 0:
@@ -292,7 +292,7 @@ def NBumiPearsonResidualsCombinedGPU(
292
292
  print(f"Phase [Viz]: Samples Collected... n = {len(flat_approx):,}")
293
293
 
294
294
  # --- FILE 1: SUMMARY (1080p) ---
295
- print(f"Saving Summary Plot to {plot_summary_filename}")
295
+ print(f"Saving 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"Saving plot detail plot to: {plot_detail_filename}")
344
+ print(f"Saving plot to: {plot_detail_filename}")
345
345
  fig2, ax2 = plt.subplots(figsize=(20, 11))
346
346
 
347
347
  if len(flat_approx) > 0:
@@ -368,3 +368,5 @@ def NBumiPearsonResidualsCombinedGPU(
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
370
 
371
+
372
+
@@ -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.57",
8
+ version="0.4.58",
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