Browse code

[HOTFIX] Modified vignette for re-build issue - 1

Giulia Pais authored on 05/10/2022 09:08:09
Showing 2 changed files

... ...
@@ -131,7 +131,7 @@ default_meta_agg <- function() {
131 131
         NA, "{.col}_sum",
132 132
         "BWA_MAPPED_OVERALL", ~ sum(.x, na.rm = TRUE),
133 133
         NA, "{.col}_sum",
134
-        "ISS_MAPPED_PP", ~ sum(.x, na.rm = TRUE),
134
+        "ISS_MAPPED_OVERALL", ~ sum(.x, na.rm = TRUE),
135 135
         NA, "{.col}_sum",
136 136
         "PCRMethod", ~ paste0(unique(.x), collapse = "|"),
137 137
         NA, "{.col}",
... ...
@@ -521,12 +521,11 @@ so it is recommended to import them in the first steps of the workflow.
521 521
 To do that, you can use `import_VISPA2_stats`:
522 522
 
523 523
 ```{r results='hide'}
524
-withr::with_options(list(ISAnalytics.reports = FALSE), {
525
-    vispa_stats <- import_Vispa2_stats(
526
-        association_file = af,
527
-        join_with_af = FALSE
528
-    )
529
-})
524
+vispa_stats <- import_Vispa2_stats(
525
+    association_file = af,
526
+    join_with_af = FALSE, 
527
+    report_path = NULL
528
+)
530 529
 ```
531 530
 
532 531
 ```{r echo=FALSE}