Skip to content

Commit

Permalink
test with colors in console
Browse files Browse the repository at this point in the history
  • Loading branch information
proost committed May 10, 2017
1 parent ed537af commit 15be96e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions detector.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def build(path, db):
The output from makeblastdb will be written to DB.
"""
click.echo("Building the database from FASTA files... ")
click.secho("Building the database from FASTA files... ", fg='green', bold=True)
click.echo("Input path: %s" % path)

full_fasta = tempfile.mktemp()
Expand All @@ -67,7 +67,7 @@ def build(path, db):
os.remove(full_fasta)

# done
click.echo("All done!")
click.secho("All done!", fg='green', bold=True)


@cli.command()
Expand Down

0 comments on commit 15be96e

Please sign in to comment.