mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-15 20:57:56 +08:00
* move prepare into main CLI as subcommand * naming and formatting tweaks to better match launch subcommand
15 lines
323 B
Python
15 lines
323 B
Python
import click
|
|
|
|
from .launch import launch
|
|
from .prepare import prepare
|
|
|
|
|
|
@click.group(name='cellxgene', context_settings=dict(max_content_width=85))
|
|
@click.version_option(version='0.0.1', prog_name='cellxgene', message='[%(prog)s] Version %(version)s')
|
|
def cli():
|
|
pass
|
|
|
|
|
|
cli.add_command(launch)
|
|
cli.add_command(prepare)
|