Bump version (1.1.0 => 1.2.0)
Kinex is a Python package for inferring causal kinases from phosphoproteomics data.
Paper: Kinex infers causal kinases from phosphoproteomics data. https://doi.org/10.1101/2023.11.23.568445
# Create and activate your conda environment conda create --name kinex conda activate kinex # Install kinex package conda install -c bioconda kinex
# Create and activate a Python 3.11 conda environment conda create --name kinex conda activate kinex conda install python=3.11 # Download the package: git clone git@github.com:bedapub/kinex.git cd kinex # Install the package pip install .
from kinex import Kinex import pandas as pd
With Predefined Matrices:
kinex = Kinex()
With Your Custom Matrices:
kinex = Kinex(scoring_matrix_ser_thr=pd.read_csv('path_to_ser_thr_matrix.csv'), scoring_matrix_tyr=pd.read_csv('path_to_tyr_matrix.csv'))
Predefined matrices can be found here:
sequence = "FVKQKAY*QSPQKQ" res = kinex.get_score(sequence)
enrich = kinex.get_enrichment(input_sites, fc_threshold=1.5, phospho_priming=False, favorability=True, method="max") enrich.ser_thr.plot() enrich.tyr.plot()
You can find detailed documentation describing every feature of the package with examples and tutorials here.
依据磷酸化或底物信息推断激酶活性变化。
Kinex - Kinome Exploration Tool
Kinex is a Python package for inferring causal kinases from phosphoproteomics data.
Paper: Kinex infers causal kinases from phosphoproteomics data. https://doi.org/10.1101/2023.11.23.568445
Main Features
Requirements
Installation
From Conda
From Source
Quick Start
1. Import Package and Create Kinex Object
Create Kinex Object
With Predefined Matrices:
With Your Custom Matrices:
Predefined matrices can be found here:
2. Score a Sequence
3. Enrichment Analysis
Documentation
You can find detailed documentation describing every feature of the package with examples and tutorials here.