Add standalone FastAPI conservation server with CLI tools#191
Open
rdk wants to merge 2 commits intocusbg:mainfrom
Open
Add standalone FastAPI conservation server with CLI tools#191rdk wants to merge 2 commits intocusbg:mainfrom
rdk wants to merge 2 commits intocusbg:mainfrom
Conversation
- Conservation server exposing HMM pipeline via HTTP (port 8030) - run_conservation.py for single FASTA file processing - Batch script for parallel conservation computation - Input validation for HMM sequence database file - Docker Compose service and Dockerfile updates
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 is a request for comments, please don't merge yet.
See also https://github.com/rdk/prankweb/tree/conservation-server/executor-p2rank/conservation
Summary
/conservationendpoint) that exposes HMM-based conservation score computation over HTTP, decoupled from the full P2Rank prediction pipelinerun_conservation.py) for computing conservation on a single FASTA file and a batch processing wrapper (calculate_conservations_batch.sh) for parallel processing of FASTA directoriesconservation-serverservice todocker-compose.ymlwith documentation for building, running, and configuring the serverDetails
The conservation server wraps the existing HMM-based conservation pipeline (phmmer → esl-weight → esl-alistat) behind a simple HTTP API, allowing conservation scores to be computed without running a full P2Rank prediction. The
server reuses all existing conservation logic -- no computation code was duplicated.
The Docker setup extends the existing
executor-p2rankimage with FastAPI/uvicorn dependencies and can be run with multiple workers for concurrent requests.