scprep
Project description
Tools for loading and preprocessing biological matrices in Python.
Installation
preprocessing is available on pip. Install by running the following in a terminal:
pip install --user scprep
Usage example
You can use scprep with your single cell data as follows:
import scprep # Load data data_path = "~/mydata/my_10X_data" data = scprep.io.load_10X(data_path) # Remove empty columns and rows data = scprep.filter.remove_empty_cells(data) data = scprep.filter.remove_empty_genes(data) # Filter by library size to remove background scprep.plot.plot_library_size(data, cutoff=500) data = scprep.filter.filter_library_size(data, cutoff=500) # Filter by mitochondrial expression to remove dead cells mt_genes = scprep.utils.get_gene_set(data, starts_with="MT") scprep.plot.plot_gene_set_expression(data, mt_genes, percentile=90) data = scprep.filter.filter_gene_set_expression(data, mt_genes, percentile=90) # Library size normalize data = scprep.normalize.library_size_normalize(data) # Square root transform data = scprep.transform.sqrt(data)
Help
If you have any questions or require assistance using scprep, please read the documentation at https://scprep.readthedocs.io/ or contact us at https://krishnaswamylab.org/get-help
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
scprep-0.7.1.tar.gz
(27.3 kB
view details)
File details
Details for the file scprep-0.7.1.tar.gz
.
File metadata
- Download URL: scprep-0.7.1.tar.gz
- Upload date:
- Size: 27.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.1.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.6.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 916f21dbda25f085378c5e44d28cfc4bd91ccedbbdc09b77d15cb81e31e18fe3 |
|
MD5 | fa7b99b74b0764fc154ee3576bbd6c9d |
|
BLAKE2b-256 | 7c21f581fac4d2d4bf09529ce40d8ae6b4075804155dccf6f21fd9a218b14600 |