Open
Conversation
cgoina
commented
Nov 12, 2025
| migrate = "alembic upgrade head" | ||
| migrate-create = "alembic revision --autogenerate" | ||
| migrate = { cmd = "alembic upgrade head", cwd = "fileglancer" } | ||
| migrate-create = { cmd = "alembic revision --autogenerate", cwd = "fileglancer" } |
Contributor
Author
There was a problem hiding this comment.
These changes are actually needed for these tasks to work. I also updated development docs with a section for database changes.
cgoina
commented
Nov 12, 2025
| ignore = ["W002"] | ||
|
|
||
| [tool.pixi.project] | ||
| [tool.pixi.workspace] |
Contributor
Author
There was a problem hiding this comment.
I think @neomorphic was already asking to make this change
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.
@krokicki @neomorphic @allison-truhlar
This is related to https://app.clickup.com/t/86ad02fne story for starting the discussion about task plugins.
So far there is a mechanism to register these plugins with the python setuptools entry points and there's a generic task that could potentially run any nextflow workflow.
The parameters returned are based on the metadata from argparse parameters and since it is not tied to a specific pipeline it does not know how to get the parameters that could be defined in the pipeline's nextflow_schema.
The exposed endpoints are also very limited and there's no UI - just very few apis related to getting available tasks, the parameters and starting a new tasks.
The corresponding model is defined but nothing is persisted in the db yet. Getting the task status will also depend on that.