From 4114ebe84aaf7eb733b85df93a5349a74b522d6b Mon Sep 17 00:00:00 2001 From: Cameron Lloyd Date: Sun, 3 May 2026 16:11:20 +0300 Subject: [PATCH] Use explicit channels for Nextflow install --- installation/install_with_nextflow.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/installation/install_with_nextflow.sh b/installation/install_with_nextflow.sh index 424b5be..2e19852 100755 --- a/installation/install_with_nextflow.sh +++ b/installation/install_with_nextflow.sh @@ -11,8 +11,8 @@ chmod -R 777 $SCRIPTPATH; cd $SCRIPTPATH; -conda create --yes --name nflow python=3.9 && \ -conda install --yes -n nflow -c bioconda nextflow==23.10.1 && \ +conda create --yes --name nflow -c conda-forge python=3.9 && \ +conda install --yes -n nflow -c conda-forge -c bioconda nextflow==23.10.1 && \ mv nextflow.sample nextflow cd -