From 64a323a4866fee99302082122f9cf89a4cfb78a6 Mon Sep 17 00:00:00 2001 From: Olamide Isreal Date: Mon, 16 Mar 2026 18:21:46 +0100 Subject: [PATCH] Use v3 image with transformers 4.44.2 (EsmModel compatible) Pin transformers<4.45 and use v3 tag to ensure K8s pulls the corrected image with working EsmModel imports. Co-Authored-By: Claude Opus 4.6 (1M context) --- main.nf | 2 +- nextflow.config | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/main.nf b/main.nf index c017c6f..b050d64 100755 --- a/main.nf +++ b/main.nf @@ -8,7 +8,7 @@ params.msa_server = 'https://api.colabfold.com' params.num_samples = 5 process CHAI1 { - container 'harbor.cluster.omic.ai/omic/chai1:v2' + container 'harbor.cluster.omic.ai/omic/chai1:v3' publishDir params.outdir, mode: 'copy' stageInMode 'copy' maxForks 1 diff --git a/nextflow.config b/nextflow.config index 65943e2..c88f5f6 100755 --- a/nextflow.config +++ b/nextflow.config @@ -3,7 +3,7 @@ docker { } process { - container = 'harbor.cluster.omic.ai/omic/chai1:v2' + container = 'harbor.cluster.omic.ai/omic/chai1:v3' memory = '32 GB' cpus = 4 }