Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

merge LinkFinder to MetcalfScoring class #248

Merged
merged 10 commits into from
Jun 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,10 @@ namespaces = true # enable data directory to be identified

[tool.pytest.ini_options]
minversion = "6.0"
# pytest options: -ra: show summary info for all test outcomes; -n auto: run tests in parallel; --dist loadscope: distribute tests by loading scope
addopts = "-ra -n auto --dist loadscope"
# -ra: show summary info for all test outcomes;
# -n auto: run tests in parallel;
# --dist loadgroup: sends tests marked with 'xdist_group' to the same worker
addopts = "-ra -n auto --dist loadgroup"
testpaths = ["tests/unit"]

[tool.coverage.run]
Expand Down
3 changes: 1 addition & 2 deletions src/nplinker/scoring/linking/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
from .data_links import LINK_TYPES
from .data_links import DataLinks
from .link_finder import LinkFinder
from .utils import calc_correlation_matrix
from .utils import isinstance_all


__all__ = ["DataLinks", "LINK_TYPES", "LinkFinder", "calc_correlation_matrix", "isinstance_all"]
__all__ = ["DataLinks", "LINK_TYPES", "calc_correlation_matrix", "isinstance_all"]
201 changes: 0 additions & 201 deletions src/nplinker/scoring/linking/link_finder.py

This file was deleted.

Loading
Loading