From 26e61d6ded8bde9726934663b269827e48b4d07f Mon Sep 17 00:00:00 2001 From: duncan ralph Date: Thu, 19 Sep 2024 14:47:19 -0700 Subject: [PATCH] add channel --- bin/gctree-run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/gctree-run.py b/bin/gctree-run.py index 045bbab56..78ee158f6 100755 --- a/bin/gctree-run.py +++ b/bin/gctree-run.py @@ -47,7 +47,7 @@ def idfn(): def install(): cmds = ['#!/bin/bash'] cmds += utils.mamba_cmds(args.env_label, only_prep=True) - cmds += ['micromamba create -n %s python=3.9' % args.env_label] # 3.10 currently has problems with ete + cmds += ['micromamba create -n %s -c conda-forge python=3.9' % args.env_label] # 3.10 currently has problems with ete cmds += ['micromamba activate %s' % args.env_label] cmds += ['micromamba install -c bioconda phylip'] cmds += ['micromamba install -c conda-forge%s click' % ('' if args.no_dag else ' gctree')]