comprehensive support for SCFM (Single Cell Foundation Model) workflows in the CLI and REPL, enabling foundation model-based single-cell analysis#28
Merged
HendricksJudy merged 6 commits intoaristoteleo:mainfrom Feb 13, 2026
Conversation
…l support Add /bio scfm command routing to pantheon-cli with init, run, and list_models subcommands. Includes workflow prompt template supporting scGPT, scBERT, Geneformer, scFoundation, and UCE models. 18 tests verify routing, prompt generation, integration with existing handlers, and command map registration. https://claude.ai/code/session_01WJcK8Jbk1ySamhGr5W1Gxg
…i-Y9Fe6 feat(scfm): add SCFM router and tests for Single Cell Foundation Mode…
Enable users to pass custom analysis goals via --question when running SCFM through the Pantheon CLI, ensuring the LLM tailors model selection, preprocessing and evaluation to the user's specific question. https://claude.ai/code/session_01WJcK8Jbk1ySamhGr5W1Gxg
…i-Y9Fe6 feat(scfm): add --question flag for user prompts in SCFM workflow
Nanguage
pushed a commit
that referenced
this pull request
Mar 2, 2026
Added Natural Language to Tool Mapping Guide
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.
This pull request introduces comprehensive support for SCFM (Single Cell Foundation Model) workflows in the CLI and REPL, enabling foundation model-based single-cell analysis. It adds a new prompt generator, expands the REPL command routing, updates help and suggestions, and includes robust test coverage for the new functionality.
SCFM Workflow Integration:
scfm_workflow.pyprompt generator for SCFM analysis, supporting multiple foundation models (scGPT, scBERT, Geneformer, scFoundation, UCE) and user analysis goals. (pantheon_cli/cli/prompt/scfm_workflow.py)/bio scfmcommand routing in the REPL, including subcommands forinit,run, andlist_models, with detailed help and model selection logic. (pantheon_cli/repl/bio_handler.py) [1] [2]User Experience Improvements:
pantheon_cli/repl/bio_handler.py) [1] [2]Command Mapping:
BIO_COMMAND_MAPfor proper routing and integration with the existing command system. (pantheon_cli/repl/bio_handler.py)Testing:
tests/test_scfm_router.py)