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()