Skip to content

Commit

Permalink
updating cli help
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Roth committed Aug 31, 2020
1 parent 0e5639c commit 25b5e31
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions pyclone_vi/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,14 +121,13 @@ def fit(**kwargs):
'-i', '--in-file',
required=True,
type=click.Path(exists=True, resolve_path=True),
help='''Path to TSV format file with copy number and allele count information for all samples.'''
'''See the examples directory in the GitHub repository for format.'''
help='''Path to HDF5 format file produced by the `fit` command.'''
)
@click.option(
'-o', '--out-file',
required=True,
type=click.Path(resolve_path=True),
help='''Path to where results will be written in HDF5 format.'''
help='''Path to where results will be written in tsv format.'''
)
@click.option(
'-c', '--compress',
Expand Down

0 comments on commit 25b5e31

Please sign in to comment.