Skip to main content

Build Status Code Style Black Documentation Status Version on PyPI Supported Python versions Number of downloads from PyPI

Python implementation of common RNA-seq normalization methods:

  • CPM (Counts per million)

  • FPKM (Fragments per kilobase million)

  • TPM (Transcripts per million)

  • UQ (Upper quartile)

  • CUF (Counts adjusted with UQ factors)

  • TMM (Trimmed mean of M-values)

  • CTF (Counts adjusted with TMM factors)

For in-depth description of methods see documentation.

Features

  • Pure Python implementation (no need for R, etc.)

  • Compatible with Scikit-learn

  • Command line interface

  • Verbose documentation

  • Validated method implementation

Install

We recommend installing RNAnorm with pip:

pip install rnanorm

Quick start

The implemented methods can be executed from Python or from the command line.

Normalize from Python

The most common use case is to run normalization from Python:

>>> from rnanorm.datasets import load_toy_data
>>> from rnanorm import FPKM
>>> dataset = load_toy_data()
>>> # Expressions need to have genes in columns and samples in rows
>>> dataset.exp
          Gene_1  Gene_2  Gene_3  Gene_4  Gene_5
Sample_1     200     300     500    2000    7000
Sample_2     400     600    1000    4000   14000
Sample_3     200     300     500    2000   17000
Sample_4     200     300     500    2000    2000
>>> fpkm = FPKM(dataset.gtf_path).set_output(transform="pandas")
>>> fpkm.fit_transform(dataset.exp)
             Gene_1    Gene_2    Gene_3    Gene_4    Gene_5
Sample_1   100000.0  100000.0  100000.0  200000.0  700000.0
Sample_2   100000.0  100000.0  100000.0  200000.0  700000.0
Sample_3    50000.0   50000.0   50000.0  100000.0  850000.0
Sample_4   200000.0  200000.0  200000.0  400000.0  400000.0

Normalize from command line

Normalization from the command line is also supported. To list available methods and general help:

rnanorm --help

Get info about a particular method, e.g., CPM:

rnanorm cpm --help

To normalize with CPM:

rnanorm cpm exp.csv --out exp_cpm.csv

File exp.csv needs to be comma separated file with genes in columns and samples in rows. Values should be raw counts. The output is saved to exp_cpm.csv. Example of input file:

cat exp.csv
,Gene_1,Gene_2,Gene_3,Gene_4,Gene_5
Sample_1,200,300,500,2000,7000
Sample_2,400,600,1000,4000,14000
Sample_3,200,300,500,2000,17000
Sample_4,200,300,500,2000,2000

One can also provide input through standard input:

cat exp.csv | rnanorm cpm --out exp_cpm.csv

If file specified with --out already exists the command will fail. If you are sure that you wish to overwrite, use --force flag:

cat exp.csv | rnanorm cpm --force --out exp_cpm.csv

If no file is specified with --out parameter, output is printed to standard output:

cat exp.csv | rnanorm cpm > exp_cpm.csv

Methods TPM and FPKM require gene lengths. These can be provided either with GTF file or with “gene lengths” file. The later is a two columns file. The first column should include the genes in the header of exp.csv and the second column should contain gene lengths computed by union exon model:

# Use GTF file
rnanorm tpm exp.csv --gtf annotations.gtf > exp_out.csv
# Use gene lengths file
rnanorm tpm exp.csv --gene-lengths lenghts.csv > exp_out.csv
# Example of gene lengths file
cat lenghts.csv
gene_id,gene_length
Gene_1,200
Gene_2,300
Gene_3,500
Gene_4,1000
Gene_5,1000

Contribute

To learn about contributing to the code base, read the Contributing section.

Citing

If you are using RNAnorm in your research, please cite as suggested by “Cite this repository” section in the side panel of this page.

Release files for rnanorm 2.2.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for rnanorm 2.2.0
File Size Uploaded
rnanorm-2.2.0.tar.gz 138.0 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for rnanorm 2.2.0
File Interpreter ABI Platform
rnanorm-2.2.0-py3-none-any.whl Python 3 none any Details

Total release size: 262.6 kB

Release files / rnanorm-2.2.0.tar.gz

Download URL rnanorm-2.2.0.tar.gz
Size 138.0 kB
Tags Source
SHA-256 checksum
How to use checksums
10b3eab8bb692837235f42def6d010abc743f585516451176bf3dfaaea087cb8
BLAKE2b-256 checksum
How to use checksums
fd8ce79993321f860ff82246f9afeb3915d914388ae5d19dd5aa9c73584d6d0d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / rnanorm-2.2.0-py3-none-any.whl

Download URL rnanorm-2.2.0-py3-none-any.whl
Size 124.6 kB
Tags Python 3
SHA-256 checksum
How to use checksums
3526db2745a54c34cb46ea9fe1e134ea09a840281fdebe02fc91fb012b37fec2
BLAKE2b-256 checksum
How to use checksums
4c4c6d79fa6046e0cc83fe306b3207b8ddaa59d691e7665d62a4bc32dbb35e55
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release history Release notifications | RSS feed

This release

2.2.0 This release

2 release files

2.1.0

2 release files

2.0.1

2 release files

2.0.0

2 release files

1.5.1

2 release files

1.5.0

2 release files

1.4.0

2 release files

1.3.1

2 release files

1.3.0

2 release files

1.2.1

2 release files

1.2.0

2 release files

1.1.0

2 release files

1.0.0

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page