@@ -49,6 +49,7 @@ def serve_engine_option():
49
49
type = click .Choice (["galaxy" , "docker_galaxy" ]),
50
50
default = "galaxy" ,
51
51
use_global_config = True ,
52
+ use_env_var = True ,
52
53
help = ("Select an engine to serve aritfacts such as tools "
53
54
"and workflows. Defaults to a local Galaxy, but running Galaxy within "
54
55
"a Docker container." )
@@ -102,6 +103,7 @@ def galaxy_email_option():
102
103
type = str ,
103
104
default = "planemo@galaxyproject.org" ,
104
105
use_global_config = True ,
106
+ use_env_var = True ,
105
107
help = "E-mail address to use when launching single-user Galaxy server." ,
106
108
)
107
109
@@ -119,6 +121,7 @@ def galaxy_database_seed_option():
119
121
"--galaxy_database_seed" ,
120
122
default = None ,
121
123
use_global_config = True ,
124
+ use_env_var = True ,
122
125
type = click .Path (exists = True , file_okay = True , resolve_path = True ),
123
126
help = "Preseeded Galaxy sqlite database to target." ,
124
127
)
@@ -403,6 +406,7 @@ def conda_prefix_option():
403
406
return planemo_option (
404
407
"--conda_prefix" ,
405
408
use_global_config = True ,
409
+ use_env_var = True ,
406
410
type = click .Path (file_okay = False , dir_okay = True ),
407
411
help = "Conda prefix to use for conda dependency commands."
408
412
)
@@ -430,6 +434,7 @@ def conda_ensure_channels_option():
430
434
"--conda_ensure_channels" ,
431
435
type = str ,
432
436
use_global_config = True ,
437
+ use_env_var = True ,
433
438
help = ("Ensure conda is configured with specified comma separated "
434
439
"list of channels." ),
435
440
default = "r,bioconda,iuc" ,
0 commit comments