Skip to content

klarman-cell-observatory/scBTF

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Robust Bayesian Tensor Factorization with Zero-Inflated Poisson Model and Consensus Aggregation

This paper proposes a new method for Bayesian Tensor Factorization with Zero-Inflated Poisson Model and Consensus Aggregation. Included here are the code for implementing bayesian tensor factorization with various models and consensus aggregation, and code for running the experiments on simulated and real data.

The main implementation is found in BayesianCP class in ./scBTF/scBTF/bayesian_parafac.py The class implements a generic probabilistic tensor factorization with variational inference using pyro. Models which specify the generative model including the distribution of the data and the variational distribution (guide in pyro terminology) are selected from the list of options provided in the class.

The rest of the scBTF package contains code specifically designed to run bayesian tensor factorization on single cell RNA-Seq data. For the simulation experiments we use only the BayesianCP class. For the real scRNA-Seq data analysis, we use the whole package.

Installation from source

Running the following commands from a continuumio/miniconda3:22.11.1 docker image would be the easiest way to get the desired environment:

# Install scBTF
conda create -n scBTF python=3.9 -y
conda activate scBTF
pip install -U adpbulk gseapy rich statannotations scanpy fastcluster torch
cd scBTF
pip install .

# Install cNMF
git clone https://github.com/dylkot/cNMF.git
cd cNMF
pip install .

PIP Installation

To install the latest version of scbtf from PIP:

conda create --name scbtf_env python=3.9 -y
conda activate scbtf_env

pip install -U adpbulk gseapy rich statannotations scanpy fastcluster torch
pip install --index-url https://test.pypi.org/simple/ scbtf

About

Single Cell Bayesian Tensor Factorization

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published