Skip to content
This repository has been archived by the owner on Jan 20, 2023. It is now read-only.

Commit

Permalink
Fixed module import erorr, and keyword issue with run script
Browse files Browse the repository at this point in the history
  • Loading branch information
andersgs committed Oct 3, 2017
1 parent 81bdb24 commit 1ed715d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions b2constsites/run_b2constsites.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import click
from b2constsites import B2ConstSites
from .b2constsites import B2ConstSites


@click.command()
@click.argument('seq')
@click.argument('vcf')
@click.option('-m', '--maskbed', default=None,
help='A BED file with positions to mask')
@click.option('-f', '--format', default='fasta',
help='seq sequence format', show_defaults=True)
@click.option('-f', '--fmt', default='fasta',
help='seq sequence format', show_default=True)
def run_b2constsites(seq, vcf, maskbed, fmt):
b2cs = B2ConstSites(seq=seq,
vcf=vcf,
Expand Down

0 comments on commit 1ed715d

Please sign in to comment.