integrate prepare cli (#401)

* move prepare into main CLI as subcommand

* naming and formatting tweaks to better match launch subcommand
This commit is contained in:
Jeremy Freeman
2018-11-03 10:48:05 -04:00
committed by GitHub
parent 0c8a07ac13
commit e2d864a336
2 changed files with 45 additions and 42 deletions
+2
View File
@@ -1,6 +1,7 @@
import click
from .launch import launch
from .prepare import prepare
@click.group(name='cellxgene', context_settings=dict(max_content_width=85))
@@ -10,3 +11,4 @@ def cli():
cli.add_command(launch)
cli.add_command(prepare)