Skip to content

Commit

Permalink
Merge pull request #241 from benjeffery/gene-cli
Browse files Browse the repository at this point in the history
Add help to annotations CLI
  • Loading branch information
benjeffery authored Dec 8, 2024
2 parents 793faad + bbb1e8f commit ac29096
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tsbrowse/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,13 @@ def cli():

@cli.command()
@click.argument("path", type=click.Path(exists=True, dir_okay=False))
@click.option("--annotations-file", type=click.Path(exists=True, dir_okay=False))
@click.option(
"--annotations-file",
type=click.Path(exists=True, dir_okay=False),
help="Path to a csv annotations file containing no header and information "
"about each gene on a row in the order: "
"`chr,start,end,strand,ensembl ID,gene name`",
)
@click.option("--port", default=8080, help="Port to serve on")
@click.option(
"--show/--no-show",
Expand Down

0 comments on commit ac29096

Please sign in to comment.