Skip to content

Commit fc39dda

Browse files
committed
1 parent fcd18c8 commit fc39dda

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+865
-517
lines changed

NAMESPACE

+19-10
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Generated by roxygen2: do not edit by hand
22

33
S3method(as.data.table,gatingTemplate)
4-
export(.between_interval)
4+
S3method(gt_gating,gatingTemplate)
55
export(add_pop)
66
export(add_pop_init)
77
export(cytokine)
@@ -10,41 +10,50 @@ export(flowClust.1d)
1010
export(flowClust.2d)
1111
export(gate_flowClust_1d)
1212
export(gate_flowClust_2d)
13+
export(gate_flowclust_1d)
14+
export(gate_flowclust_2d)
1315
export(gate_mindensity)
1416
export(gate_mindensity2)
1517
export(gate_quad_sequential)
1618
export(gate_quad_tmix)
1719
export(gate_quantile)
1820
export(gate_tail)
21+
export(gate_tautstring)
1922
export(gating)
2023
export(gatingTemplate)
2124
export(get.helperGates)
25+
export(gh_generate_template)
26+
export(gs_add_pop)
27+
export(gs_add_pop_init)
28+
export(gs_remove_pop)
29+
export(gt_delete_helpergates)
30+
export(gt_gating)
31+
export(gt_get_children)
32+
export(gt_get_gate)
33+
export(gt_get_helpergates)
34+
export(gt_get_parent)
35+
export(gt_get_pop_paths)
36+
export(gt_toggle_helpergates)
2237
export(listgtMethods)
2338
export(mindensity2)
2439
export(prior_flowClust)
2540
export(quadGate.seq)
2641
export(quadGate.tmix)
2742
export(quantileGate)
28-
export(registerGatingFunction)
2943
export(registerPlugins)
44+
export(register_plugins)
3045
export(remove_pop)
3146
export(tautString)
47+
export(tautStringGate)
48+
export(tautstring)
3249
export(templateGen)
3350
export(toggle.helperGates)
3451
exportClasses(gatingTemplate)
35-
exportClasses(gtMethod)
36-
exportClasses(gtPopulation)
37-
exportClasses(polyFunctions)
38-
exportClasses(ppMethod)
3952
exportMethods(add)
40-
exportMethods(dims)
41-
exportMethods(gating)
4253
exportMethods(getChildren)
4354
exportMethods(getGate)
4455
exportMethods(getNodes)
4556
exportMethods(getParent)
46-
exportMethods(names)
47-
exportMethods(parameters)
4857
exportMethods(plot)
4958
exportMethods(show)
5059
import(data.table)

R/AllClasses.R

+3-7
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
#' @examples
2727
#' \dontrun{gatingTemplate('test.csv')}
2828
#' @seealso See \code{\link[openCyto:gating-methods]{gating}},
29-
#' \code{\link{flowClust.1d}},
29+
#' \code{\link{gate_flowclust_1d}},
3030
#' for an overview of gating functions.
3131
NULL
3232

@@ -177,7 +177,6 @@ fcTree <- function(gt) {
177177
#'
178178
#'
179179
#' @rdname gtMethod-class
180-
#' @export
181180
#' @name gtMethod-class
182181
#' @aliases gtMethod
183182
#' @examples
@@ -198,7 +197,6 @@ setClass("gtMethod", representation(name = "character"
198197
#'
199198
#' It extends \code{gtMethod} class.
200199
#'
201-
#' @export
202200
#' @name ppMethod-class
203201
#' @aliases ppMethod
204202
#' @examples
@@ -236,7 +234,6 @@ setClass("boolMethod", contains = "refGate")
236234
#'
237235
#' It extends \code{boolMethod} class and will be expanded to multiple \code{boolMethod} object.
238236
#'
239-
#' @export
240237
#' @name polyFunctions-class
241238
setClass("polyFunctions", contains = "boolMethod")
242239

@@ -249,13 +246,12 @@ setClass("polyFunctions", contains = "boolMethod")
249246
#' \item{name}{ \code{character} the name of population}
250247
#' \item{alias}{ \code{character} the more user friendly name of population}
251248
#' }
252-
#' @export
253249
#' @name gtPopulation-class
254250
#' @examples
255251
#' \dontrun{
256252
#' gt <- gatingTemplate(system.file("extdata/gating_template/tcell.csv",package = "openCyto"))
257253
#'
258-
#' getNodes(gt, '2')
254+
#' gt_get_pop_paths(gt, '2')
259255
#' }
260256
setClass("gtPopulation", representation(id = "character", name = "character",
261257
alias = "character"
@@ -363,7 +359,7 @@ setGeneric("gatingTemplate", function(x, ...) standardGeneric("gatingTemplate"))
363359
#' @param x \code{character} csv file name
364360
#' @param name \code{character} the label of the gating template
365361
#' @param strict \code{logical} whether to perform validity check(special characters) on the alias column. By default it is(and should be) turned on for the regular template parsing.
366-
#' But sometime it is useful to turned it off to bypass the check for the dummy nodes(e.g. the csv template generated by 'templateGen' with some existing boolean gates that has '!' or ':' symbol).
362+
#' But sometime it is useful to turned it off to bypass the check for the dummy nodes(e.g. the csv template generated by 'gh_generate_template' with some existing boolean gates that has '!' or ':' symbol).
367363
#' @param strip_extra_quotes \code{logical} Extra quotes are added to strings by fread. This causes problems with parsing R strings to expressions in some cases. Default FALSE for usual behaviour. TRUE should be passed if parsing gating_args fails.
368364
#' @param ... other arguments passed to \code{data.table::fread}
369365
#' @importFrom graph graphNEL addEdge edges nodeDataDefaults nodeData edgeDataDefaults addEdge edgeData subGraph

R/add.R

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ setClass("ocRectangleGate", contains = "rectangleGate", representation(ind = "ra
1515
#' @param action \code{ocRectangleGate} or \code{logicalFilterResult}
1616
#' @param recompute \code{logical} see \link[flowWorkspace]{add} in \code{flowWorkspace} package
1717
#' @param ... see \link[flowWorkspace]{add} in \code{flowWorkspace} package
18-
#' @export
1918
#' @rdname add
2019
setMethod("add",
2120
signature=c("GatingHierarchy", "ocRectangleGate"),

0 commit comments

Comments
 (0)