You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
ROSeq - A rank based approach to modeling gene expression with filtered and normalized read count matrix. Takes in the complete filtered and normalized read count matrix, the location of the two sub-populations and the number of cores to be used.
Modeling expression ranks for noise-tolerant differential expressionanalysis of scRNA-Seq data
Introduction
ROSeq - A rank based approach to modeling gene expression with filteredand normalized read count matrix. ROSeq takes filtered and normalizedread matrix and cell-annotation/condition as input and determines thedifferentially expressed genes between the contrasting groups of singlecells. One of the input parameters is the number of cores to be used.
Installation
The developer’s version of the R package can be installed with thefollowing R commands:
if (!requireNamespace("BiocManager",quietly=TRUE)) install.packages("BiocManager")# The following initializes usage of Bioc develBiocManager::install(version='devel')BiocManager::install("ROSeq")
The github’s version of the R package can be installed with thefollowing R commands:
Cells and genes filtering then voom transformation after TMM normalization
Below commands can be used for Cell/gene filtering, TMM normalizationand voom transformation. The user is free to use an alternativepreprocessing strategy while using different filtering/normalizationmethods.
Input: gene expression matrix with genes in rows and cells in columns.Condition/group annotation of cells also need to be supplied. User canset numCores based the hardware specifications in hercomputer.
ROSeq - A rank based approach to modeling gene expression with filtered and normalized read count matrix. Takes in the complete filtered and normalized read count matrix, the location of the two sub-populations and the number of cores to be used.