forked from 10XGenomics/seurat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Misc.Rd
50 lines (38 loc) · 974 Bytes
/
Misc.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
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/generics.R, R/objects.R
\name{Misc}
\alias{Misc}
\alias{Misc<-}
\alias{Misc.Assay}
\alias{Misc.Seurat}
\alias{Misc<-.Assay}
\alias{Misc<-.Seurat}
\title{Access miscellaneous data}
\usage{
Misc(object, ...)
Misc(object, ...) <- value
\method{Misc}{Assay}(object, slot = NULL, ...)
\method{Misc}{Seurat}(object, slot = NULL, ...)
\method{Misc}{Assay}(object, slot, ...) <- value
\method{Misc}{Seurat}(object, slot, ...) <- value
}
\arguments{
\item{object}{An object}
\item{...}{Arguments passed to other methods}
\item{value}{Data to add}
\item{slot}{Name of specific bit of meta data to pull}
}
\value{
Miscellaneous data
An object with miscellaneous data added
}
\description{
Access miscellaneous data
Set miscellaneous data
}
\examples{
# Get the misc info
Misc(object = pbmc_small, slot = "example")
# Add misc info
Misc(object = pbmc_small, slot = "example") <- "testing_misc"
}