SMURF : A matrix factorization method for single-cell
Project description
SMURF
A matrix factorization method for single-cell
Pre-requirements
- python3
- numpy
- pandas
- scipy
- scikit-learn
- umap-learn
Installation
Installation with pip
To install with pip, run the following from a terminal:
pip install smurf-imputation
Usage
Basic use
import smurf
import pandas as pd
# read your data, the rows in the data represent genes, and the columns represent cells
data = pd.read_csv("data.csv", header=0, index_col=0)
# create a SCEnd object which only return the imputed data
operator = smurf.SMURF(n_features=10, estimate_only=True)
# impute
data_imputed = operator.smurf_impute(data)
# create a SCEnd object
operator = smurf.SMURF(n_features=10, estimate_only=False)
# impute
res = operator.smurf_impute(data)
# get the results
data_imputed = res["estimate"]
gene_matrix = res["gene latent factor matrix"]
cell_matrix = res["cell latent factor matrix"]
# get cell-circle
cell_circle = operator.smurf_cell_circle(
n_neighbors=20, min_dist=0.01, major_axis=3, minor_axis=2, k=0.2
)
# or get cell-cirecle directly from you own data
mapper = smurf.SMURF()
cell_circle = mapper.smurf_cell_circle(cells_data=your_own_data)
# get result in different coordinate
angle = cell_circle["angle"]
plane_embedding = cell_circle["plane_embedding"]
Parameters
SMURF(n_features=20, steps=10, alpha=1e-5, eps=10, noise_model="Fano", normalize=True, estimate_only=False)
Parameters
-
n_features : int, optional, default: 20
The number of features during the matrix factorizaiton.
-
steps : int, optional, default: 0.5
The max number of iteration.
-
alpha : float, optional, default: 1e-5
gradient update step size. It can be so different with different dataset, please try more for a better result.
-
eps : float, optional, default: 10
The threshold at which the objective function stops updating
-
noise_model: boolean, optional, default: "Fano"
Our hypothetical noise model. We offer three options:
- CV : constant variance
- Fano : Fano factor
- CCV : constant coefficient of variation
We found that generally the fano model is the most stable.
-
normalize : boolean, optional, default: True
By default, SMURF takes in an unnormalized matrix and performs library size normalization during the denoising step. However, if your data is already normalized or normalization is not desired, you can set normalize=False.
-
estimate_only : boolean, optional, default: False
Generally, the SMURF returns a dictionary which contains the imputed matrix and gene latent factor matrix and cell latent factor matrix. If you have no need of the latent factor matrix, you can set estimate_only=True.
smurf_cell_circle(cells_data=None, n_neighbors=20, min_dist=0.01, major_axis=3, minor_axis=2, k=0.2)
-
cells_data : array of 2D, optional, default: None
Cells data to be processed. If it's not None, the model will process your own data, or please use SMURF process the original data and the model will calculate the cell circle from the cell latent factor matrix of the feedback.
-
n_neighbors : int, optional, default: 20
The parameter controls how our model balances local versus global structure in the data.
-
min_dist : float, optional, default: 0.01
This parameter controls how tightly SMURF is allowed to pack points together
-
major_axis : float, optional, default: 3
Major axis length of the oval.
-
minor_axis : float, optional, default: 2
Minor axis length of the oval.
-
k : float, optional, default: 0.2
Deformation parameter of the oval.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file smurf-imputation-1.0.9.tar.gz.
File metadata
- Download URL: smurf-imputation-1.0.9.tar.gz
- Upload date:
- Size: 10.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.5.0.1 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
570a47ac057399e3221e223df9ca0f037258275fb7f531ec55e13caf50e6bd3b
|
|
| MD5 |
34c6bf02148680c4ad0b479e00cede10
|
|
| BLAKE2b-256 |
f06a488977a94ff44512af93b5f3ccfee97e5fb1fe8f50fa6176d843e580eb08
|
File details
Details for the file smurf_imputation-1.0.9-py3-none-any.whl.
File metadata
- Download URL: smurf_imputation-1.0.9-py3-none-any.whl
- Upload date:
- Size: 11.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.5.0.1 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a1d08df06acb11938b374647331b99f7ef403201571597b2ca7107e256810cd6
|
|
| MD5 |
e8da5171ff0da9b54fa6f1b4362ecb75
|
|
| BLAKE2b-256 |
d2c9aa99ec2feb4eaf555c8d1fbec19d867df7732b062b1ca59908424df7f2c5
|