We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44f6171 commit d2025c2Copy full SHA for d2025c2
1 file changed
src/data_processors/process_dataset/script.py
@@ -42,11 +42,11 @@
42
# ...filter transcripts tables
43
44
# Save the single-cell data
45
-adata.write_h5ad(par["output_scrnaseq"])
+adata.write_h5ad(par["output_sc"], compression="gzip")
46
47
# remove directory if it exists
48
-if os.path.exists(par["output_ist"]):
49
- shutil.rmtree(par["output_ist"])
+if os.path.exists(par["output_sp"]):
+ shutil.rmtree(par["output_sp"])
50
51
# Save the spatial data
52
-sdata.write(par["output_ist"], overwrite=True)
+sdata.write(par["output_sp"], overwrite=True)
0 commit comments