Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add download instructions for FTP CLI client. #198

Merged
merged 1 commit into from
Jun 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions _includes/filezilla.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,31 @@ The ftp host is available using the following details:

- host: `ftp.ebi.ac.uk`

### CLI client step by step

Connect to the FTP server:

$ ftp ftp.ebi.ac.uk

The FTP server being anonymous only, use `ftp` or `anonymous` (with no password) to log in.
Make sure that passive mode is on:

ftp> passive

Change the directory:

ftp> cd /pub/databases/IDR/

You may list all the studies in the IDR:

ftp> ls

Or a single one, e.g.:

ftp> ls idr0044-*

Use the `get` command to download a specific file, and `bye` to close the connection.

### Desktop client step-by-step

Download and install the [FileZilla client](https://filezilla-project.org/download.php).
Expand Down
Loading