We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3be3d89 commit fc8f999Copy full SHA for fc8f999
novae_benchmark/pan_tissue_umap.py
@@ -60,13 +60,7 @@ def main():
60
61
print("adata:", adata_full)
62
63
- for n_obs in [5_000_000, None]:
64
- if n_obs is not None and n_obs < adata_full.n_obs:
65
- adata = sc.pp.subsample(adata_full, n_obs=n_obs, copy=True)
66
- else:
67
- adata = adata_full
68
-
69
- compute_and_save_umap(adata, res_path)
+ compute_and_save_umap(adata_full, res_path)
70
71
72
if __name__ == "__main__":
remote/umaps.sh
@@ -1,9 +1,9 @@
1
#!/bin/bash
2
#SBATCH --job-name=novae
3
#SBATCH --output=/gpfs/workdir/blampeyq/.jobs_outputs/%j
4
-#SBATCH --mem=128G
+#SBATCH --mem=512G
5
#SBATCH --time=7-00:00:00
6
-#SBATCH --cpus-per-task=2
+#SBATCH --cpus-per-task=1
7
#SBATCH --partition=cpu_long
8
9
module purge
0 commit comments