Skip to content

Commit fc8f999

Browse files
umap full run
1 parent 3be3d89 commit fc8f999

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

novae_benchmark/pan_tissue_umap.py

+1-7
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,7 @@ def main():
6060

6161
print("adata:", adata_full)
6262

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)
63+
compute_and_save_umap(adata_full, res_path)
7064

7165

7266
if __name__ == "__main__":

remote/umaps.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#!/bin/bash
22
#SBATCH --job-name=novae
33
#SBATCH --output=/gpfs/workdir/blampeyq/.jobs_outputs/%j
4-
#SBATCH --mem=128G
4+
#SBATCH --mem=512G
55
#SBATCH --time=7-00:00:00
6-
#SBATCH --cpus-per-task=2
6+
#SBATCH --cpus-per-task=1
77
#SBATCH --partition=cpu_long
88

99
module purge

0 commit comments

Comments
 (0)