From 15be96ea10d9df4b0b06013ec86e11c73f553cc4 Mon Sep 17 00:00:00 2001 From: sepro Date: Wed, 10 May 2017 11:56:05 +0200 Subject: [PATCH] test with colors in console --- detector.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/detector.py b/detector.py index 4ec5c6a..349f7a7 100644 --- a/detector.py +++ b/detector.py @@ -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() @@ -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()