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

bug fixing FTP url #38

Merged
merged 3 commits into from
Oct 1, 2024
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Install with setup.py:
$ git clone https://github.com/PRIDE-Archive/pridepy
$ cd pridepy
$ python setup.py sdist bdist_wheel
$ pip install dist/pridepy-0.0.3.tar.gz
$ pip install dist/pridepy-{version}.tar.gz
```

# Examples
Expand All @@ -55,7 +55,7 @@ Download single file by name:
$ pridepy download-file-by-name -a PXD022105 -o /Users/yourname/Downloads/foldername/ -f checksum.txt -p globus
```

>**NOTE**: Currently we use globus urls ( when -p globus is used) via https not globus protocol.
>**NOTE**: Currently we use Globus URLs (when `-p globus` is used) via HTTPS, not the Globus protocol. For more information about Globus, see [Globus documentation](https://www.globus.org/data-transfer).

Search projects with keywords and filters

Expand Down
2 changes: 1 addition & 1 deletion pridepy/files/files.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class Files:

API_BASE_URL = "https://www.ebi.ac.uk/pride/ws/archive/v2"
API_PRIVATE_URL = "https://www.ebi.ac.uk/pride/private/ws/archive/v2"
PRIDE_ARCHIVE_FTP = "ftp://ftp.pride.ebi.ac.uk"
PRIDE_ARCHIVE_FTP = "ftp.pride.ebi.ac.uk"
S3_URL = "https://hh.fire.sdo.ebi.ac.uk"
S3_BUCKET = "pride-public"
logging.basicConfig(
Expand Down
Loading