forked from satijalab/seurat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AnnotateAnchors.Rd
64 lines (54 loc) · 1.36 KB
/
AnnotateAnchors.Rd
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/generics.R, R/integration.R
\name{AnnotateAnchors}
\alias{AnnotateAnchors}
\alias{AnnotateAnchors.default}
\alias{AnnotateAnchors.IntegrationAnchorSet}
\alias{AnnotateAnchors.TransferAnchorSet}
\title{Add info to anchor matrix}
\usage{
AnnotateAnchors(anchors, vars, slot, ...)
\method{AnnotateAnchors}{default}(
anchors,
vars = NULL,
slot = NULL,
object.list,
assay = NULL,
...
)
\method{AnnotateAnchors}{IntegrationAnchorSet}(
anchors,
vars = NULL,
slot = NULL,
object.list = NULL,
assay = NULL,
...
)
\method{AnnotateAnchors}{TransferAnchorSet}(
anchors,
vars = NULL,
slot = NULL,
reference = NULL,
query = NULL,
assay = NULL,
...
)
}
\arguments{
\item{anchors}{An \code{\link{AnchorSet}} object}
\item{vars}{Variables to pull for each object via FetchData}
\item{slot}{Slot to pull feature data for}
\item{...}{Arguments passed to other methods}
\item{object.list}{List of Seurat objects}
\item{assay}{Specify the Assay per object if annotating with expression data}
\item{reference}{Reference object used in \code{\link{FindTransferAnchors}}}
\item{query}{Query object used in \code{\link{FindTransferAnchors}}}
}
\value{
Returns the anchor dataframe with additional columns for annotation
metadata
}
\description{
Add info to anchor matrix
}
\concept{integration}