-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathunbundle.Rd
71 lines (58 loc) · 1.8 KB
/
unbundle.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
65
66
67
68
69
70
71
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/methods_bundeling.R
\name{unbundle}
\alias{unbundle}
\alias{unbundle.ARMLA_discovery}
\alias{unbundle.domainogram_discovery}
\alias{unbundle.IS_discovery}
\alias{unbundle.virtual4C_discovery}
\alias{unbundle.CS_discovery}
\alias{unbundle.saddle_discovery}
\alias{unbundle.RCP_discovery}
\alias{unbundle.DI_discovery}
\alias{unbundle.IIT_discovery}
\alias{unbundle.chrommat_discovery}
\title{Split discovery objects}
\usage{
unbundle(discovery, ...)
\method{unbundle}{ARMLA_discovery}(discovery, ...)
\method{unbundle}{domainogram_discovery}(discovery, ...)
\method{unbundle}{IS_discovery}(discovery, ...)
\method{unbundle}{virtual4C_discovery}(discovery, ...)
\method{unbundle}{CS_discovery}(discovery, ...)
\method{unbundle}{saddle_discovery}(discovery, ...)
\method{unbundle}{RCP_discovery}(discovery, ...)
\method{unbundle}{DI_discovery}(discovery, ...)
\method{unbundle}{IIT_discovery}(discovery, ...)
\method{unbundle}{chrommat_discovery}(discovery, ...)
}
\arguments{
\item{discovery}{A \code{discovery} object with more than 1 sample.}
\item{...}{further arguments passed to or from other methods.}
}
\value{
A \code{list} wherein each element is a \code{discovery} object for a
single sample.
}
\description{
\code{unbundle} takes a \code{discovery} object and splits these
out to individual experiments.
}
\details{
In case the \code{discovery} contains incomplete samples with
missing slots, \code{NULL} is returned.
}
\examples{
\dontrun{
# Getting a discovery object
apa <- APA(list(WT_20kb, KO_20kb), loops)
# Splitting the results
split <- unbundle(apa)
# Plotting the first result only
visualise(split[[1]])
}
}
\seealso{
\code{\link[GENOVA]{bundle}} for the opposite of \code{unbundle}.
The \code{\link[GENOVA]{discovery}} class.
}