Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
rraadd88 committed Feb 12, 2024
1 parent da171e2 commit c590cc6
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 44 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.7
python-version: 3.9
- name: Install pypa/build
run: >-
python -m
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -32,7 +32,7 @@
requirements = {
"base": [
# 'roux'
"roux @ git+https://github.com/rraadd88/roux.git@master",
"roux==0.1.1",
## requirements from roux
# 'seaborn',
# 'numpy>=1.17.3',
Expand Down Expand Up @@ -62,7 +62,7 @@
"gui": [
"mercury==2.3.7",
"dna_features_viewer==3.1.3",
"chrov @ git+https://github.com/rraadd88/chrov.git@main",
"chrov==0.0.2",
],
## development and maintenance
"dev": [
Expand Down Expand Up @@ -133,7 +133,7 @@ def run(self):
include_package_data=True,
entry_points={
"console_scripts": [
"roux = beditor.run:parser.dispatch",
"beditor = beditor.run:parser.dispatch",
],
},
cmdclass={"install": InstallCommand},
Expand Down
80 changes: 40 additions & 40 deletions tests/test_run.py
Expand Up @@ -21,47 +21,47 @@ def test_base_positions():
force=True,
)

# def test_base_regions():
# set_wd()
# return cli(
# config_path='inputs/mutations/base/regions.yml',
# verbose='INFO',#'DEBUG',
# skip=['Visualize'], # skipped because interactive
# force=True,
# )
def test_base_regions():
set_wd()
return cli(
config_path='inputs/mutations/base/regions.yml',
verbose='INFO',#'DEBUG',
skip=['Visualize'], # skipped because interactive
force=True,
)

# def test_base_regions():
# set_wd()
# return cli(
# config_path='inputs/mutations/base/points.yml',
# verbose='INFO',#'DEBUG',
# skip=['Visualize'], # skipped because interactive
# force=True,
# )
def test_base_regions():
set_wd()
return cli(
config_path='inputs/mutations/base/points.yml',
verbose='INFO',#'DEBUG',
skip=['Visualize'], # skipped because interactive
force=True,
)

# def test_protein_positions():
# set_wd()
# return cli(
# config_path='inputs/mutations/protein/positions.yml',
# verbose='INFO',#'DEBUG',
# skip=['Visualize'], # skipped because interactive
# force=True,
# )
def test_protein_positions():
set_wd()
return cli(
config_path='inputs/mutations/protein/positions.yml',
verbose='INFO',#'DEBUG',
skip=['Visualize'], # skipped because interactive
force=True,
)

# def test_protein_regions():
# set_wd()
# return cli(
# config_path='inputs/mutations/protein/regions.yml',
# verbose='INFO',#'DEBUG',
# skip=['Visualize'], # skipped because interactive
# force=True,
# )
def test_protein_regions():
set_wd()
return cli(
config_path='inputs/mutations/protein/regions.yml',
verbose='INFO',#'DEBUG',
skip=['Visualize'], # skipped because interactive
force=True,
)

# def test_protein_regions():
# set_wd()
# return cli(
# config_path='inputs/mutations/protein/points.yml',
# verbose='INFO',#'DEBUG',
# skip=['Visualize'], # skipped because interactive
# force=True,
# )
def test_protein_regions():
set_wd()
return cli(
config_path='inputs/mutations/protein/points.yml',
verbose='INFO',#'DEBUG',
skip=['Visualize'], # skipped because interactive
force=True,
)

0 comments on commit c590cc6

Please sign in to comment.