mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-20 11:28:47 +08:00
Small documentation fix in prepare (#1292)
See sample of current behavior below: ``` venv❯ cellxgene prepare example-dataset/pbmc3k.h5ad [cellxgene] Starting CLI... Error: [cellxgene] cellxgene prepare has not been installed. Please run `pip install cellxgene[prepare]` to install the necessary requirements. ~/workspace/cellxgene mweiden/446-custom-color-palette* 1 venv❯ pip install cellxgene[prepare] zsh: no matches found: cellxgene[prepare] ``` Fix: Wrap cellxgene[prepare] in single quotes.
This commit is contained in:
@@ -84,7 +84,7 @@ def prepare(
|
||||
import scanpy as sc
|
||||
except ImportError:
|
||||
raise click.ClickException(
|
||||
"[cellxgene] cellxgene prepare has not been installed. Please run `pip install cellxgene[prepare]` "
|
||||
"[cellxgene] cellxgene prepare has not been installed. Please run `pip install 'cellxgene[prepare]'` "
|
||||
"to install the necessary requirements."
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user