End-to-end machine learning pipeline for peptide database search
Project description
ProteoRift Python Package
End-to-end machine learning pipeline for peptide database search in mass spectrometry proteomics.
Installation
pip install proteorift
Quick Start
Using Sample Data
from proteorift import ProteoRiftSearch
# Initialize and run with sample data
searcher = ProteoRiftSearch()
results = searcher.search_with_sample_data()
print(f"Results saved to: {results['output_dir']}")
Using Your Own Data
from proteorift import ProteoRiftSearch
# Initialize search
searcher = ProteoRiftSearch()
# Run peptide database search
results = searcher.search(
mgf_dir="path/to/your/spectra", # Directory with MGF files
peptide_db="path/to/your/database", # Directory with FASTA files
output_dir="./results"
)
Custom Parameters
searcher = ProteoRiftSearch(
precursor_tolerance=10,
precursor_tolerance_type="ppm",
charge=3,
length_filter=True,
device="cuda" # or "cpu", "auto"
)
results = searcher.search(mgf_dir="...", peptide_db="...")
Command Line Interface
# Run search with sample data
proteorift search-sample --output-dir ./results
# Run search with your data
proteorift search \
--mgf-dir path/to/spectra \
--peptide-db path/to/database \
--output-dir ./results \
--tolerance 10 \
--charge 3
# Download models only
proteorift download-models
Output
ProteoRift generates Percolator-compatible PIN files:
target.pin- Target peptide-spectrum matchesdecoy.pin- Decoy peptide-spectrum matches
System Requirements
- Python: 3.8 or higher
- GPU: 12GB+ VRAM recommended (CPU also supported)
- OS: Linux, macOS, or Windows
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
proteorift-1.1.0.tar.gz
(18.3 MB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file proteorift-1.1.0.tar.gz.
File metadata
- Download URL: proteorift-1.1.0.tar.gz
- Upload date:
- Size: 18.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3d984b1e9a7cbbfcb5546b9dd30cf87ef4c2405e747597ea559c52e522b9e9cd
|
|
| MD5 |
6dee01caa3eee1b66616757ce961dc36
|
|
| BLAKE2b-256 |
bab945f974c33037a20f18e72d3a3fbc7c5f28bc05249bc9a5166cd559c1dac2
|
File details
Details for the file proteorift-1.1.0-py3-none-any.whl.
File metadata
- Download URL: proteorift-1.1.0-py3-none-any.whl
- Upload date:
- Size: 63.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7f41173685e3eca8f297ea6c8cf34cc4c3f79f64847ec6bc50cdc423b45896f5
|
|
| MD5 |
8d61fca6e600f6e48268000d0711b738
|
|
| BLAKE2b-256 |
3ed1d2060f733a088599056dde30a389f68c57f44dad9eef2e36cfa7f64f2e99
|