Skip to content

Commit

Permalink
Merge pull request #4 from dmitrymyl/module_development
Browse files Browse the repository at this point in the history
Updated reqs to python 3.7 and fixed ortho2align CLI parsing.
  • Loading branch information
dmitrymyl authored Jul 2, 2021
2 parents 940504b + 8e8c337 commit 097c062
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion ortho2align/cli_scripts.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
formatter_class=argparse.ArgumentDefaultsHelpFormatter,
fromfile_prefix_chars='@')
ortho2align_subparsers = ortho2align_parser.add_subparsers(title='Subcommands',
metavar='SUBCOMMAND')
metavar='SUBCOMMAND',
required=True)

bg_from_inter_ranges_parser = ortho2align_subparsers.add_parser('bg_from_inter_ranges',
help='Generate background set of genomic ranges from intergenic ranges.',
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from setuptools import setup


setup(name='ortho2align',
version='0.9',
description='Sequence alignment tool based on syntenic protein neighbourhood.',
Expand All @@ -13,7 +14,7 @@
'scipy',
'sortedcontainers',
'tqdm'],
python_requires='~=3.6',
python_requires='>=3.7',
entry_points={'console_scripts':
['ortho2align=ortho2align.cli_scripts:ortho2align']},
zip_safe=False)

0 comments on commit 097c062

Please sign in to comment.