Browse code

update vignette #87

mikejiang authored on 07/12/2020 19:36:08
Showing 1 changed files

... ...
@@ -33,14 +33,18 @@ ce
33 33
 **cytobank_experiment** is a wrapper around the `ACS` file, which can be inspected by various accessors.
34 34
 ```{r}
35 35
 sampleNames(ce)
36
-colnames(ce)
37
-markernames(ce)
36
+ce_get_panels(ce)
37
+ce_get_compensations(ce)
38
+ce_get_samples(ce)
39
+ce_get_channels(ce)
40
+ce_get_markers(ce)
38 41
 pData(ce)
39 42
 ```
40 43
 Then import `cytobank_experiment` into **GatingSet**
41 44
 ```{r}
42 45
 gs <- cytobank_to_gatingset(ce)
43 46
 ```
47
+By default, the first `panel` (i.e. `panel_id = 1`) will be imported. Change `panel_id` argument to select different panel (if there are more than one , which can be inspected by `ce_get_panels`   )
44 48
 
45 49
 Alternatively, the import can be done by `gatingML` and `fcs` files that are downloaded separately form Cytobank without `ACS`.
46 50
 ```{r, eval=FALSE}