Diff of /man/preprocessing.Rd [000000] .. [4a0329]

Switch to unified view

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