From a5f09846c1887ad08cdfa8e17bc554a02a2b331c Mon Sep 17 00:00:00 2001 From: Dima Molodenskiy Date: Thu, 4 Sep 2025 10:43:01 +0200 Subject: [PATCH] Fix #512 --- README.md | 12 ++++++------ alphapulldown/__init__.py | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index d9cc3fe0..1984720b 100644 --- a/README.md +++ b/README.md @@ -283,7 +283,7 @@ This will download the version specified by '--tag' of the snakemake pipeline an snakedeploy deploy-workflow \ https://github.com/KosinskiLab/AlphaPulldownSnakemake \ AlphaPulldownSnakemake \ - --tag 1.4.0 + --tag 2.1.2 cd AlphaPulldownSnakemake ``` >[!NOTE] @@ -294,8 +294,8 @@ To install the software needed for [the analysis step](https://github.com/Kosins Download so-called Singularity image with our analysis software package ```bash -singularity pull docker://kosinskilab/fold_analysis:latest -singularity build --sandbox fold_analysis_latest.sif +singularity pull docker://kosinskilab/fold_analysis:2.1.2 +singularity build --sandbox fold_analysis_2.1.2.sif ``` can be any temporary directory and can be deleted later. @@ -310,9 +310,9 @@ cp -rn lib/* /software/lib64/ Create a new Singularity with CCP4 included ```bash cd -singularity build fold_analysis_latest_withCCP4.sif +singularity build fold_analysis_2.1.2_withCCP4.sif ``` -It should create `fold_analysis_latest_withCCP4.sif` file. +It should create `fold_analysis_2.1.2_withCCP4.sif` file. You can delete the now. @@ -330,7 +330,7 @@ feature_directory : If you want to use CCP4 for analysis, open `config/config.yaml` in a text editor and change the path to the analysis container to: ```yaml -analysis_container : "/path/to/fold_analysis_latest_withCCP4.sif" +analysis_container : "/path/to/fold_analysis_2.1.2_withCCP4.sif" ``` If you want to change folding backend, simply add `folding-backend` flag to the `structure_inference_arguments`, e.g. for using AlphaFold3 backend: ```yaml diff --git a/alphapulldown/__init__.py b/alphapulldown/__init__.py index 58039f50..4eabd0b3 100755 --- a/alphapulldown/__init__.py +++ b/alphapulldown/__init__.py @@ -1 +1 @@ -__version__ = "2.1.1" +__version__ = "2.1.2"