feat: add cli annotation subcommand (#2539)

add `cellxgene annotate` subcommand for invoking MLflow model to generate new `obs` annotations, initially intended for cell type annotations.
This commit is contained in:
Andrew Tolopko
2022-07-29 05:15:54 -07:00
committed by GitHub
parent d2b20129f7
commit 30e19e47c6
14 changed files with 388 additions and 5 deletions
+2
View File
@@ -1,5 +1,6 @@
import click
from .annotate import annotate
from .launch import launch
from .prepare import prepare
from .upgrade import log_upgrade_check
@@ -31,4 +32,5 @@ def cli(upgrade_check):
cli.add_command(launch)
cli.add_command(annotate)
cli.add_command(prepare)