File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ class NextflowSpawner(LocalProcessSpawner):
15
15
default_url = Unicode ('/nextflow' , help = "The entrypoint for https://github.com/phue/jupyter-nextflow-proxy" )
16
16
17
17
workflow_url = Unicode (config = True , help = "The url of the pipeline repository." )
18
- workflow_revison = Unicode ('main' , config = True , help = "The revision of the pipeline repository." )
18
+ workflow_revision = Unicode ('main' , config = True , help = "The revision of the pipeline repository." )
19
19
20
20
home_dir = Unicode (help = "The user home directory" )
21
21
@@ -162,6 +162,6 @@ def get_env(self):
162
162
env = super ().get_env ()
163
163
env ['NXF_HOME' ] = self .nxf_home
164
164
env ['NXF_USER_WORKFLOW' ] = self .workflow_url
165
- env ['NXF_USER_REVISION ' ] = self .workflow_revision
165
+ env ['NXF_USER_revision ' ] = self .workflow_revision
166
166
env ['NXF_USER_PARAMS' ] = self ._write_params_file (self .user_options )
167
167
return env
Original file line number Diff line number Diff line change 2
2
3
3
setuptools .setup (
4
4
name = "nextflowspawner" ,
5
- version = '0.7.0 ' ,
5
+ version = '0.7.1 ' ,
6
6
url = "https://github.com/phue/nextflowspawner" ,
7
7
description = "Spawn Nextflow pipelines from Jupyterhub and configure them interactively" ,
8
8
author = "Patrick Hüther" ,
You can’t perform that action at this time.
0 commit comments