Environments availables¶
scGPT¶
Only available at FAS computing resources.
Please, reach out to platform to access for the first time to this env:
-
Add the environment first:
- Only the first time, add the env to the notebook kernels:
echo "n/holylfs05/LABS/hsph_bioinfo/Lab/shared_resources/scgpt-2" >> ~/.conda/environments.txt
- Only the first time, add the env to the notebook kernels:
-
Start a python notebook on the ondemand web-page.
- You need to be connected to the VPN to be connected.
- Use
gpu
partition and if you need more than one GPU orgpu_test
if you need something that won't take a long time- add these to the sbatch options
--gres=gpu:n
in the advance options, they are below in the page.
- add these to the sbatch options
- Add
gcc/13.2.0-fasrc01
to the list of modules to load
- Once connected, if you get asked to use a password, just close the windows and open again.
- If you didn't add module
gcc/13.2.0-fasrc01
, do this now:- Initiate a terminal session
module load gcc/13.2.0-fasrc01
- Then, start a notebook choosing as kernel
scgpt-2
- If you didn't add module
- Validate everything works with these commands in the python notebook
import torch
torch.cuda.is_available()
-> Should returnTrue
torch.cuda.device_count()
-> Should return `import scgpt