Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions crates/osprey/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ osprey-io = { workspace = true }
osprey-chromatography = { workspace = true }
osprey-scoring = { workspace = true }
osprey-fdr = { workspace = true }
osprey-ml = { workspace = true }

ndarray = { workspace = true }
clap = { workspace = true }
Expand Down
6 changes: 6 additions & 0 deletions crates/osprey/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,12 @@ pub mod reconciliation_io;
// Runtime peptide trace (env-var gated)
pub mod trace;

// Learned per-platform peak-pick model (env-var gated; default per resolution)
pub mod pick_lda;

// Second-pass q-value strategy (OSPREY_PASS2_QVALUE): default retrain, or transfer-compete
pub mod pass2_qvalue;

// Pipeline
mod pipeline;
pub use pipeline::run_analysis;
Expand Down
Loading
Loading