@@ -49,6 +49,7 @@ def serve_engine_option():
4949 type = click .Choice (["galaxy" , "docker_galaxy" ]),
5050 default = "galaxy" ,
5151 use_global_config = True ,
52+ use_env_var = True ,
5253 help = ("Select an engine to serve aritfacts such as tools "
5354 "and workflows. Defaults to a local Galaxy, but running Galaxy within "
5455 "a Docker container." )
@@ -102,6 +103,7 @@ def galaxy_email_option():
102103 type = str ,
103104 default = "planemo@galaxyproject.org" ,
104105 use_global_config = True ,
106+ use_env_var = True ,
105107 help = "E-mail address to use when launching single-user Galaxy server." ,
106108 )
107109
@@ -119,6 +121,7 @@ def galaxy_database_seed_option():
119121 "--galaxy_database_seed" ,
120122 default = None ,
121123 use_global_config = True ,
124+ use_env_var = True ,
122125 type = click .Path (exists = True , file_okay = True , resolve_path = True ),
123126 help = "Preseeded Galaxy sqlite database to target." ,
124127 )
@@ -403,6 +406,7 @@ def conda_prefix_option():
403406 return planemo_option (
404407 "--conda_prefix" ,
405408 use_global_config = True ,
409+ use_env_var = True ,
406410 type = click .Path (file_okay = False , dir_okay = True ),
407411 help = "Conda prefix to use for conda dependency commands."
408412 )
@@ -430,6 +434,7 @@ def conda_ensure_channels_option():
430434 "--conda_ensure_channels" ,
431435 type = str ,
432436 use_global_config = True ,
437+ use_env_var = True ,
433438 help = ("Ensure conda is configured with specified comma separated "
434439 "list of channels." ),
435440 default = "r,bioconda,iuc" ,
0 commit comments