aa5d89a1 |
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/scanpyFunctions.R
\name{plotScanpyMarkerGenesViolin}
\alias{plotScanpyMarkerGenesViolin}
\title{plotScanpyMarkerGenesViolin}
\usage{
|
1a2c8f0c |
plotScanpyMarkerGenesViolin(inSCE, groups = NULL, features = NULL, nGenes = 10)
|
aa5d89a1 |
}
\arguments{
\item{inSCE}{Input \code{SingleCellExperiment} object.}
\item{groups}{The groups for which to show the gene ranking. Default \code{NULL}
means that all groups will be considered.}
|
1a2c8f0c |
\item{features}{List of genes to plot. Is only useful if interested in a
custom gene list}
|
aa5d89a1 |
\item{nGenes}{Number of genes to show. Default \code{10}}
}
\value{
plot object
}
\description{
plotScanpyMarkerGenesViolin
}
\examples{
data(scExample, package = "singleCellTK")
\dontrun{
sce <- runScanpyNormalizeData(sce, useAssay = "counts")
|
6987800d |
sce <- runScanpyFindHVG(sce, useAssay = "scanpyNormData", method = "seurat")
|
9d91028a |
sce <- runScanpyScaleData(sce, useAssay = "scanpyNormData")
|
6987800d |
sce <- runScanpyPCA(sce, useAssay = "scanpyScaledData")
sce <- runScanpyFindClusters(sce, useReducedDim = "scanpyPCA")
|
4f02e9c2 |
sce <- runScanpyFindMarkers(sce, colDataName = "Scanpy_louvain_1" )
|
aa5d89a1 |
plotScanpyMarkerGenesViolin(sce, groups = '0')
}
}
|