Normalization of gene expression matrices.
To install, run the following commands:
git clone https://github.com/ficusss/PyGMNormalize.git
cd PyGMNormalize
python setup.py install
This package implements the following metods:
- Total count normalization;
- Percentile normalization;
- Quartile normalization;
- Trimmed mean of M-values normalization.
Each of metods takes matrix of gene expression
matrix
as first parameter and some method specific parameters, also some metods take optional parametersaving_memory
(defaultsaving_memory=False
) for reduce the RAM usage in the calculations. Parametermatrix
has genes as rows, cells as columns.
Demonstration of the methods is available here.