Skip to content

Commit

Permalink
implemented blast
Browse files Browse the repository at this point in the history
  • Loading branch information
proost committed May 10, 2017
1 parent 4f88c11 commit 70e97af
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 @@ -77,7 +77,7 @@ def build(path, db):
@click.argument('output', type=click.Path())
def blast(fasta, db, output):
"""
Runs Blast
Runs Blast.
usage: detector blast FASTA DB OUTPUT
Expand All @@ -86,7 +86,7 @@ def blast(fasta, db, output):

click.secho("Running BLASTP... ", fg='green', bold=True)

cmd = BUILD_DB_CMD % (fasta, db, output)
cmd = RUN_BLAST_CMD % (fasta, db, output)
click.echo("Executing command: %s" % cmd)
subprocess.call(shlex.split(cmd))

Expand Down

0 comments on commit 70e97af

Please sign in to comment.