-
Notifications
You must be signed in to change notification settings - Fork 5
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
build: configure setuptools via pyproject.toml #292
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
feat: add oncokb as a source (#170)
- Updated dependencies (civicpy, normalizers, ga4gh) - `Harvester` base class - Remove instance var `assertions` - Create timestamped harvester json if no filename given (now includes empty string) - `CIViCHarvester` - Major cleanup. We will only exclude civic fields that start with `_` or `partial` - We now harvest civic molecular profiles - We no longer get `civic_actionability_score` and `variant_groups` - `OncoKBHarvester` - Use enum values for api endpoints - `metakb.main` - Use Path for `/api/v2/search/{id}` rather than Query - `metakb.normalizers` - Rename instance var `variation_normalizer` --> `variation_query_handler` - Allow for query handler instances to be passed as parameters - `CIViCTransform` : Updates from civicpy 3.0 - Include molecular profile ID to variant ID mapping - Assertion's now have `assertion_type` - `drugs` --> `therapies` - `OncoKBTransform` - `uuid` for drug returned `None`, so switched to using `ncitCode` for the therapy descriptor mappings - `setup.cfg` - license-file --> license_file in setup.cfg - Tests - In test_database.py::test_variation_rules, I removed a check since we now support copy number variation from {GENE} Amplification queries - Updated tests to reflect source changes - `metakb.cli` - Added `--update_from_remote` for civicpy cache
- Remove from version.py - Remove from ServiceMeta class
- Update permissions for cool-seq-tool - Update python version to 3.11 - Fix unzipping seqrepo
- Handling null civic therapy ncit_id's - Only look at accepted assertions for civic
* Followed https://packaging.python.org/en/latest/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/ * Did not include [Signing the distribution packages](https://packaging.python.org/en/latest/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/#signing-the-distribution-packages) * In `publish-to-pypi`, removed `if: startsWith(github.ref, 'refs/tags/') # only publish to PyPI on tag pushes` since we only make a release when a GH release is created.
(need to figure out proper PR here, may need to rebase, etc) |
Closed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Per https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html. We've done this for most of our other projects now -- it enables some consolidation of tool configurations, which is nice.