From 6d225b4ad8ff0863843978eb1e1ca489b37d28d6 Mon Sep 17 00:00:00 2001 From: pvanheus Date: Wed, 20 May 2026 15:28:14 +0200 Subject: [PATCH] Add 'apptainer' option to envtype in download.py --- bactopia/cli/download.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bactopia/cli/download.py b/bactopia/cli/download.py index 2a398bd..c975250 100644 --- a/bactopia/cli/download.py +++ b/bactopia/cli/download.py @@ -356,7 +356,7 @@ def build_singularity_image( "--envtype", default="conda", show_default=True, - type=click.Choice(["conda", "docker", "singularity", "all"], case_sensitive=False), + type=click.Choice(["conda", "docker", "singularity", "apptainer", "all"], case_sensitive=False), help="The type of environment to build", ) @click.option(