Skip to content

Commit bb2699b

Browse files
committed
update vignettes
1 parent 32b7488 commit bb2699b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Diff for: dev/manuscript_differential_transcript_abundance.Rmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ tt_mds_adj_mds %>%
156156
```
157157

158158
```{r}
159-
tt_test <- tt_adj %>% test_differential_abundance(~ condition + type)
159+
tt_test <- tt_adj %>% test_differential_abundance(~ condition + type, method = "edgeR_quasi_likelihood")
160160
161161
# MA plot
162162
tt_test %>%

Diff for: vignettes/introduction.Rmd

+3-1
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ TidyTranscriptomics
439439
```{r de, message=FALSE, warning=FALSE, results='hide'}
440440
se_mini.de =
441441
se_mini |>
442-
test_differential_abundance( ~ condition, action="get")
442+
test_differential_abundance( ~ condition, method = "edgeR_quasi_likelihood", action="get")
443443
se_mini.de
444444
```
445445
</div>
@@ -468,6 +468,7 @@ se_mini.de =
468468
identify_abundant(factor_of_interest = condition) |>
469469
test_differential_abundance(
470470
~ 0 + condition,
471+
method = "edgeR_quasi_likelihood",
471472
.contrasts = c( "conditionTRUE - conditionFALSE"),
472473
action="get"
473474
)
@@ -681,6 +682,7 @@ se_mini.norm.SNN |>
681682
mutate(factor_of_interest = `cluster_SNN` == 3) |>
682683
test_differential_abundance(
683684
~ factor_of_interest,
685+
method = "edgeR_quasi_likelihood",
684686
action="get"
685687
)
686688
```

0 commit comments

Comments
 (0)