🧪Trial version — For internal lab review only. Not for clinical or production use.

Using SFTP

SFTP (SSH File Transfer Protocol) is the secure method for uploading your data to ImmuneVISTA. Use the instructions below to connect and transfer files.

Connect via Command Line

Replace your_username with your ImmuneVISTA username:

sftp your_username@sftp.immunevista.org

You will be prompted for your password (or authenticated via SSH key if configured).

Common SFTP Commands

CommandDescription
lsList files in remote directory
llsList files in local directory
pwdShow remote working directory
lpwdShow local working directory
cd /pathChange remote directory
lcd /pathChange local directory
put filenameUpload a file to the remote server
put -r folder/Upload an entire folder recursively
get filenameDownload a file from the remote server
mkdir foldernameCreate a remote directory
exitClose the SFTP connection

Example Upload Session

# Connect
sftp your_username@sftp.immunevista.org

# Navigate to your project folder on the server
cd /projects/myproject/raw_data

# Upload a file from your local machine
put /local/path/to/data.csv

# Upload an entire folder
put -r /local/path/to/data_folder/

# Confirm upload
ls

# Disconnect
exit

GUI Option: FileZilla

If you prefer a graphical interface, download FileZilla and connect using:

  • Host: sftp.immunevista.org
  • Protocol: SFTP
  • Port: 22
  • Logon type: Normal (or Key file)