Skip to content

Commit

Permalink
corrected the command line interface bug
Browse files Browse the repository at this point in the history
  • Loading branch information
chiffa committed Nov 5, 2018
1 parent 55eecc1 commit aa4cb95
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions bioflow/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,15 @@ def loadneo4j():


@click.command()
@click.argument('source', help='IDs of the genes considered as hits')
@click.option('background', default='', help='IDs of all genes detectable by a method')
@click.option('--background', default='', help='path to file of IDs of all genes detectable by a method')
@click.argument('source')
def sethits(source, background):
"""
Sets the source and background files that will be uses in the analysis. Preferred formats
Sets the source and background files that will be uses in the analysis.
The argument source is a path to a file containing the IDs of all genes considered as a hit
Preferred formats
are HGCN gene names (TP53), Uniprot gene names (P53_HUMAN) or Uniprot Accession numbers (
P04637).
Other sources, such as ENSEMBL or PDB IDs.
Expand Down

0 comments on commit aa4cb95

Please sign in to comment.