Respublica
A CHOP HPC that we also use as a fileshare. Uses slurm
and has both VM and web interface options.
Getting Access to Respublica
If you do not (or do not know if you) have an eResearch account:
- Contact Nina Laney to get your eResearch account set up. Let her know that you need access to the lab fileshare.
- Do the required CITI training and make sure your CITI training account is affiliated with CHOP. Make sure you have done all of the trainings required by CHOP.
- Set up 2 factor authentication according to the instructions Nina will send you (if she doesn’t, ask for it).
If you already have an eResearch account:
- Email Nina to let her know you are requesting Respublica accounts and ask her to approve access for you when she gets the chance. CC Aaron or Jenna if needed.
- Log in to CIRRUS.
- Submit a Respublica Access Request for yourself.
- Submit a Fileshare Access Request to be added to the BGD Lab Respublica Fileshare (/mnt/isilon/bgdlab_resnas03).
UNDER DEVELOPMENT: Accessing Respublica (from a non-CHOP computer)
- In your browser, open the page connect.chop.edu.
- Click on the icon for Desktop to open a virtual machine (VM) on the CHOP intranet.
- Once the VM opens to a Windows desktop, open a browser on the Windows desktop and navigate to beyond.chop.edu.
Getting Code onto Respublica
- Make sure your Github repository is up to date with the code you are currently using.
- When your eResearch account has Respublica access, go to https://beyond.chop.edu and connect to VM Horizon in the browser. You will need to log in using your CHOP credentials.
- Open RES-RHEL-HPC. It will initially load as a black screen, wait until the background with a large dark 8 and a “Red Hat Enterprise” logo appear. This is the virtual machine you have just connected to. At the top left corner of the VM, there is a menu titled “Activities”. Click “Activities” to pop out a dock on the left side of the window and click the terminal.
- If this is the first time you’re putting the code on Respublica, you will need to
git clone
yourrepo first. In the terminal, typegit clone
followed by your repository name. The full command will look something likegit clone https://github.com/(the username of the repo owner)/(repo name).git
. - If you have already cloned the repo, navigate into the repo directory on Respublica (
cd (diretory name
) followed bygit pull
to get the most up to date version of your repo from Github. - You can now log out from the VM by going to the power menu in the top right corner of the window and selected Log Out.
Note: you will need to use Control Shift C to copy from and Control Shift V to paste into the VM’s terminal. Hit Enter to run the command.
Getting a .CSV File onto Respublica - SECTION UNDER DEVELOPMENT
This bit has only been tested on one computer that was owned by CHOP and therefore did not have to connect to the virtual Desktop first.
- When your eResearch account has Respublica access:
- If you’re on a CHOP-owned computer, go to https://beyond.chop.edu and connect to VM Horizon in the browser. You will need to log in using your CHOP credentials. Open RES-RHEL-HPC.
- If you’re on a non-CHOP computer, connect to the VM Horizon desktop. If you don’t have it on your computer already, go to https://beyond.chop.edu to download. Once you’ve downloaded, enter the server address:
https://beyond.chop.edu
. You should get a pop-up asking permission to access local files - accept this.
- You’ve now connected to the virtual machine. It will initially load as a black screen, wait until the background with a large dark 8 and a “Red Hat Enterprise” logo appear. At the top left corner of the VM, there is a menu titled “Activities”. Click “Activities” to pop out a dock on the left side of the window and click the terminal.
- In the terminal, type
ls
to see the contents of your home directory. The directorytsclient
connects from the virtual machine to your computer. Typels tsclient/local/path/to/file
to confirm the file is there, then transfer withthen rsync -avz ~/tsclient/my/desired/path/to/file /desired/respublica/location
Using Respublica to Run Code in a Browser
- This step varies depending on whether or not you own your computer.
- If your computer is not owned by CHOP: Log in to https://connect.chop.edu. Connect to the Virtual Desktop and open a browser window.
- If your computer is owned by CHOP: Connect to the VPN.
- In your browser, go to https://respublica-web.research.chop.edu and log in.
- Navigate to the “My Interactive Sessions” tab using the menu at the top of the page. The bar on the left side of this tab contains a list of software servers/interfaces you can choose from. Select the software you wish to use.
- Before the server will allocate computational power for you, you will need to tell it how much computational power and memory you want to use and for how long. These specifications will vary depending on what you are doing. For example, the manual image qc process uses the following parameters:
- Number of hours*: 1
- Number of CPUs: 1
- Amount of memory (GB): 4
- GPU: 0
- Click the “Launch” button. The browser page will inform you that your request has been submitted and as you to wait for a few minutes for your allocation to be ready. When it is ready, click the “Connect” button.
- The software you chose will open in this tab or a new tab. The path the software defaults to is
/home/(your username)/
.
Using Respublica to Run Code via sbatch
Jobs
- All job code lives in
/mnt/isilon/bgdlab_resnas03/code
under a subdirectory named after the processing pipeline. - Example: SynthSeg+
- In the code directory, there’s a
synthseg
subdirectory. - This subdir has a file called
synthsegJobSubmitter.sh
that iterates over a rawdata BIDS directory (command line argument) and submits a new job for each T1w.nii.gz file contained in the subject/session/anat directories. - This script calls
jobSynthSeg.sh
, which contains the sbatch arguments etc. and commands to actually run the SynthSeg+ job. - To run SynthSeg+ on a BIDs directory,
bash /mnt/isilon/bgdlab_resnas03/code/synthseg/synthsegJobSubmitter.sh /mnt/isilon/bgdlab_resnas03/Data/datasetname/rawdata
- In the code directory, there’s a
On many clusters, a job is allocated a temporary space called $SCRATCH
. The path for the scratch space can be found by putting echo $SCRATCH
as one of the first commands in an sbatch
script. Respublica (as of 2024-06-27) does not automatically allocate a scratch space for each job. Each user is assigned a space at /scr1/users/<user>
that can be used as needed, though no bash variable is set up for it.