[4a0329]: / man / preprocessing.Rd

Download this file

31 lines (23 with data), 965 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/scAI_model.R
\name{preprocessing}
\alias{preprocessing}
\title{preprocess the raw.data including quality control and normalization}
\usage{
preprocessing(object, assay = list("RNA", "ATAC"), minFeatures = 200,
minCells = 3, minCounts = NULL, maxCounts = NULL,
libararyflag = TRUE, logNormalize = TRUE)
}
\arguments{
\item{object}{scAI object}
\item{assay}{List of assay names to be normalized}
\item{minFeatures}{Filter out cells with expressed features < minimum features}
\item{minCells}{Filter out features expressing in less than minCells}
\item{minCounts}{Filter out cells with expressed count < minCounts}
\item{maxCounts}{Filter out cells with expressed count > minCounts}
\item{libararyflag}{Whether do library size normalization}
\item{logNormalize}{whether do log transformation}
}
\description{
preprocess the raw.data including quality control and normalization
}