dezeraecox / ProteomicsUtils

A collection of utility functions for processing, analysing and plotting proteomic data
MIT License
0 stars 1 forks source link

Mean versus median normalisation #3

Open dezeraecox opened 6 years ago

dezeraecox commented 6 years ago

Build in option to choose mean versus median normalisation of protein abundances for volcano plot normalisation.

Normalising each dataset to the Median Peptide Abundance

protein_NormAR = protein_AR_summary.copy()

for col in col_list: protein_NormAR[col] = protein_AR_summary[col]/median_list[col]

logger.info(f"Protein abundances normalised to median peptide abundance: {protein_NormAR.head(5)}")`

dezeraecox commented 6 years ago

ProteomicsUtils

dezeraecox commented 6 years ago

ProteomicsUtils