Fg/ontology resource api#215
Merged
Merged
Conversation
214b004 to
63d2ee5
Compare
63d2ee5 to
f72fec9
Compare
f72fec9 to
42a537b
Compare
64da0db to
1ac2c95
Compare
1ac2c95 to
bed1336
Compare
sjfleming
reviewed
Apr 29, 2026
| { version = ">=2.2.0,<2.7.0", markers = "sys_platform == 'darwin'" }, | ||
| { version = ">=2.2.0,<2.7.0", markers = "sys_platform == 'linux'", source = "pytorch-cpu" } | ||
| { version = ">=2.2.0,<2.5.0", markers = "sys_platform == 'darwin'"}, | ||
| { version = ">=2.2.0,<2.5.0", markers = "sys_platform == 'linux'", source = "pytorch-cpu" } |
There was a problem hiding this comment.
I think this pytorch version limitation will be true until cellarium-ai/cellarium-ml#325
sjfleming
reviewed
Apr 29, 2026
| packaging = "24.2" | ||
| pydantic = "2.8.2" | ||
| pydantic-settings = "2.3.4" | ||
| numpy = "1.26.4" |
There was a problem hiding this comment.
did you remove a pinned numpy version? or is this somehow taken care of by poetry?
Collaborator
Author
There was a problem hiding this comment.
Poetry does take care of it since it is a dependency of other dependencies (pytorch, anndata, etc). So there is pinned version of numpy in poetry.lock. It now decides which one to use, based on other dependencies.
sjfleming
approved these changes
Apr 29, 2026
sjfleming
left a comment
There was a problem hiding this comment.
Looks good, though admittedly I'm not sure I followed every detail :)
|
This file contains hidden or 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
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.



Summary
This PR introduces a Cell Ontology Resource API (#214) and a new build-and-deploy workflow for CAS services.
New Features
create_cell_ontology_resource.pyscript — parses a CL OWL file and generates the precomputed JSON resourcebuild-and-deploy-workflow.yml— new reusable GitHub Actions workflow for building Docker images and deploying to GCP Artifact Registry / Cloud RunChanges
namefield toOntologicalColumnInfomodel (Alembic migration included)CASModelschema to exposeontological_columnsviaAliasPathCellOntologyResourceResponsePydantic schemacellarium_general_serviceandcellarium_generaldata manager with new ontology resource logicSecurity
build-and-deploy-workflow.ymlanddeploy-workflow.yml:inputs.image-tagis now assigned to anenv:variable instead of being interpolated directly intorun:blocksDependency Updates
torchandcellarium-mlfor compatibilitypoetry.lockandpyproject.tomlTests
test_create_cell_ontology_resource_script.py)test_cellarium_general_service.pyand related fixturesThis PR closes #214