Skip to content

Commit bbb1e8f

Browse files
committed
Add help to annotations CLI
1 parent 793faad commit bbb1e8f

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

tsbrowse/__main__.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,13 @@ def cli():
4949

5050
@cli.command()
5151
@click.argument("path", type=click.Path(exists=True, dir_okay=False))
52-
@click.option("--annotations-file", type=click.Path(exists=True, dir_okay=False))
52+
@click.option(
53+
"--annotations-file",
54+
type=click.Path(exists=True, dir_okay=False),
55+
help="Path to a csv annotations file containing no header and information "
56+
"about each gene on a row in the order: "
57+
"`chr,start,end,strand,ensembl ID,gene name`",
58+
)
5359
@click.option("--port", default=8080, help="Port to serve on")
5460
@click.option(
5561
"--show/--no-show",

0 commit comments

Comments
 (0)