Files
cellxgene/server/cli/cli.py
Jeremy Freeman e2d864a336 integrate prepare cli (#401)
* move prepare into main CLI as subcommand

* naming and formatting tweaks to better match launch subcommand
2018-11-03 10:48:05 -04:00

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)