-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDESCRIPTION
79 lines (79 loc) · 2.61 KB
/
DESCRIPTION
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
72
73
74
75
76
77
78
79
Package: CytoPipeline
Title: Automation and visualization of flow cytometry data analysis pipelines
Version: 1.7.1
Authors@R:
c(person(given = "Philippe",
family = "Hauchamps",
role = c("aut", "cre"),
email = "[email protected]",
comment = c(ORCID = "0000-0003-2865-1852")),
person(given = "Laurent", family = "Gatto",
email = "[email protected]",
role = "aut",
comment = c(ORCID = "0000-0002-1520-2268")),
person(given = "Dan",
family = "Lin",
role = "ctb",
email = "[email protected]"))
Description: This package provides support for automation and visualization of
flow cytometry data analysis pipelines. In the current state, the package
focuses on the preprocessing and quality control part. The framework is based
on two main S4 classes, i.e. CytoPipeline and CytoProcessingStep. The pipeline
steps are linked to corresponding R functions - that are either provided in
the CytoPipeline package itself, or exported from a third party package,
or coded by the user her/himself. The processing steps need to be specified
centrally and explicitly using either a json input file or through step by step
creation of a CytoPipeline object with dedicated methods. After having run the
pipeline, obtained results at all steps can be retrieved and visualized thanks
to file caching (the running facility uses a BiocFileCache implementation).
The package provides also specific visualization tools like
pipeline workflow summary display, and 1D/2D comparison plots of obtained
flowFrames at various steps of the pipeline.
License: GPL-3
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.3.2
BugReports: https://github.com/UCLouvain-CBIO/CytoPipeline/issues
URL: https://uclouvain-cbio.github.io/CytoPipeline
biocViews: FlowCytometry, Preprocessing, QualityControl, WorkflowStep,
ImmunoOncology, Software, Visualization
Collate:
'CytoPipeline-functions.R'
'CytoPipeline-package.R'
'CytoPipelineClass.R'
'CytoProcessingStep.R'
'CytoProcessingStepImplementations.R'
'data.R'
'gating.R'
'utils.R'
'ggplots.R'
Depends:
R (>= 4.4)
Imports:
methods,
stats,
utils,
withr,
rlang,
ggplot2 (>= 3.4.1),
ggcyto,
BiocFileCache,
BiocParallel,
flowCore,
PeacoQC,
flowAI,
diagram,
jsonlite,
scales
Suggests:
testthat (>= 3.0.0),
vdiffr,
diffviewer,
knitr,
rmarkdown,
BiocStyle,
reshape2,
dplyr,
CytoPipelineGUI
VignetteBuilder: knitr
Config/testthat/edition: 3