Skip to content

elnazmirzaei/FIESTA

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Factorization-based Inferred Expression Single-cell Transcriptomic Analysis (FIESTA)

  1. In order to install this package:
library(devtools)
install_github("elnazmirzaei/FIESTA")
library(FIESTA)
library(NMF)
library(mixtools)
library(fitdistrplus)
  1. After installation you need to prepare your gene-expression dataset as a matrix in R such that rows represent genes and columns represent cells. Then, pick whether to use WNMF or sNMF. Default is sNMF. Based on the size of your data this step might take a while.
A = GeneExpressionData
A_imputed = impute( A , method="sNMF" )
  1. Now it is time for scaling.
A_imputed_scaled = scale( A , A_imputed )
  1. And at the end run the thresholding step.
A_imputed_scaled_thresholded = thresholding ( A , A_imputed_scaled )

Voila! Now you have a properly imputed gene-expression data.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages