Skip to content

Commit

Permalink
genome_dir argument should not be ignored, fixes #25
Browse files Browse the repository at this point in the history
  • Loading branch information
simonvh committed Sep 11, 2018
1 parent 6aba483 commit d9484ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion genomepy/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def search(term, provider=None):
def install(name, provider, genome_dir, localname, mask, regex, match, annotation):
"""Install genome NAME from provider PROVIDER in directory GENOME_DIR."""
genomepy.install_genome(
name, provider, genome_dir, localname=localname, mask=mask,
name, provider, genome_dir=genome_dir, localname=localname, mask=mask,
regex=regex, invert_match=not(match), annotation=annotation)

@click.command('genomes', short_help="list available genomes")
Expand Down

0 comments on commit d9484ee

Please sign in to comment.