... | ... |
@@ -22,9 +22,9 @@ |
22 | 22 |
#' # Create list of panels |
23 | 23 |
#' initial <- c(RowTreePlot(), ColumnTreePlot()) |
24 | 24 |
#' # If RowTreePlot is in initial, check whether rowLinks is defined |
25 |
-#' initial <- .check_panel(se, initial, "RowTreePlot", rowLinks) |
|
25 |
+#' initial <- .check_panel(tse, initial, "RowTreePlot", rowLinks) |
|
26 | 26 |
#' # If ColumnTreePlot is in initial, check whether colLinks is defined |
27 |
-#' initial <- .check_panel(se, initial, "ColumnTreePlot", colLinks) |
|
27 |
+#' initial <- .check_panel(tse, initial, "ColumnTreePlot", colLinks) |
|
28 | 28 |
#' |
29 | 29 |
#' # View filtered list of panels |
30 | 30 |
#' initial |
31 | 31 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,20 @@ |
1 |
+citHeader("To cite iSEEtree in publications use:") |
|
2 |
+ |
|
3 |
+citEntry( |
|
4 |
+ entry = "Article", |
|
5 |
+ title = "iSEEtree: interactive explorer for hierarchical data", |
|
6 |
+ author = personList( |
|
7 |
+ as.person("Giulio Benedetti"), |
|
8 |
+ as.person("Ely Seraidarian"), |
|
9 |
+ as.person("Theotime Pralas"), |
|
10 |
+ as.person("Akewak Jeba"), |
|
11 |
+ as.person("Tuomas Borman"), |
|
12 |
+ as.person("Leo Lahti") |
|
13 |
+ ), |
|
14 |
+ journal = "arXiv", |
|
15 |
+ year = "2024", |
|
16 |
+ url = "https://arxiv.org/abs/2412.02882", |
|
17 |
+ textVersion = paste("Benedetti, G., Seraidarian, E., Pralas, T., Jeba, A.", |
|
18 |
+ "Borman, T., & Lahti, L. (2024). iSEEtree: interactive explorer for", |
|
19 |
+ "hierarchical data. arXiv. doi: https://doi.org/10.48550/arXiv.2412.02882") |
|
20 |
+) |
|
0 | 21 |
\ No newline at end of file |
... | ... |
@@ -7,16 +7,6 @@ |
7 | 7 |
url = {https://www.R-project.org/}, |
8 | 8 |
} |
9 | 9 |
|
10 |
-@misc{benedetti2024iseetree, |
|
11 |
- title={{iSEEtree: interactive explorer for hierarchical data}}, |
|
12 |
- author={Giulio Benedetti and Ely Seraidarian and Theotime Pralas and Akewak Jeba and Tuomas Borman and Leo Lahti}, |
|
13 |
- year={2024}, |
|
14 |
- eprint={2412.02882}, |
|
15 |
- archivePrefix={arXiv}, |
|
16 |
- primaryClass={cs.MS}, |
|
17 |
- url={https://arxiv.org/abs/2412.02882} |
|
18 |
-} |
|
19 |
- |
|
20 | 10 |
@article{rue2018isee, |
21 | 11 |
title={{iSEE: interactive SummarizedExperiment explorer}}, |
22 | 12 |
author={Rue-Albrecht, Kevin and Marini, Federico and Soneson, Charlotte and Lun, Aaron TL}, |
... | ... |
@@ -33,9 +33,9 @@ tse <- Tengeler2020 |
33 | 33 |
# Create list of panels |
34 | 34 |
initial <- c(RowTreePlot(), ColumnTreePlot()) |
35 | 35 |
# If RowTreePlot is in initial, check whether rowLinks is defined |
36 |
-initial <- .check_panel(se, initial, "RowTreePlot", rowLinks) |
|
36 |
+initial <- .check_panel(tse, initial, "RowTreePlot", rowLinks) |
|
37 | 37 |
# If ColumnTreePlot is in initial, check whether colLinks is defined |
38 |
-initial <- .check_panel(se, initial, "ColumnTreePlot", colLinks) |
|
38 |
+initial <- .check_panel(tse, initial, "ColumnTreePlot", colLinks) |
|
39 | 39 |
|
40 | 40 |
# View filtered list of panels |
41 | 41 |
initial |