Skip to content

Commit

Permalink
Fix logging cli
Browse files Browse the repository at this point in the history
  • Loading branch information
ddomingof committed Apr 25, 2019
1 parent c68d0bf commit fd2520a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pathme/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -370,10 +370,10 @@ def universe(kegg_path, reactome_path, wikipathways_path, output, no_flatten, no
flatten = not no_flatten
normalize_names = not no_normalize_names

if flatten:
if not flatten:
click.echo('Complexes and Reactions will be not be flatten to single nodes')

if normalize_names:
if not normalize_names:
click.echo('Names will not be normalized to lower case')

click.echo("Merging graphs to universe and harmonizing...(this might take a while)")
Expand Down

0 comments on commit fd2520a

Please sign in to comment.