From ee2986ee61626735ba4d016b163f236a6e127394 Mon Sep 17 00:00:00 2001 From: Pierre Poulain Date: Mon, 25 Sep 2023 16:18:15 +0200 Subject: [PATCH] Add alternate download link for HiC-Pro image --- README.md | 13 +++++++++++++ scripts/describe_conda_env.py | 1 + 2 files changed, 14 insertions(+) diff --git a/README.md b/README.md index 0138cb4..c7253c6 100644 --- a/README.md +++ b/README.md @@ -63,6 +63,19 @@ conda activate 3DGB wget --ciphers=DEFAULT:@SECLEVEL=1 https://zerkalo.curie.fr/partage/HiC-Pro/hicpro_3.1.0_ubuntu.img -P images ``` +If this command fails, try with an [alternate download link](https://zenodo.org/record/8376626): + +```bash +wget https://zenodo.org/record/8376626/files/hicpro_3.1.0_ubuntu.img -P images +``` + +Check the integrity of the image: + +```bash +$ md5sum images/hicpro_3.1.0_ubuntu.img +d480e636397c14e187608e50309eb9af images/hicpro_3.1.0_ubuntu.img +``` + Verify HiC-Pro version with: ```bash diff --git a/scripts/describe_conda_env.py b/scripts/describe_conda_env.py index 9d4bb81..a10b2d7 100644 --- a/scripts/describe_conda_env.py +++ b/scripts/describe_conda_env.py @@ -17,5 +17,6 @@ def list_versions(): if __name__ == "__main__": + print("-" * 40) list_versions() print("-" * 40) \ No newline at end of file