Skip to content

Commit

Permalink
update vignettes
Browse files Browse the repository at this point in the history
  • Loading branch information
stemangiola committed Feb 7, 2024
1 parent 32b7488 commit bb2699b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dev/manuscript_differential_transcript_abundance.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ tt_mds_adj_mds %>%
```

```{r}
tt_test <- tt_adj %>% test_differential_abundance(~ condition + type)
tt_test <- tt_adj %>% test_differential_abundance(~ condition + type, method = "edgeR_quasi_likelihood")
# MA plot
tt_test %>%
Expand Down
4 changes: 3 additions & 1 deletion vignettes/introduction.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ TidyTranscriptomics
```{r de, message=FALSE, warning=FALSE, results='hide'}
se_mini.de =
se_mini |>
test_differential_abundance( ~ condition, action="get")
test_differential_abundance( ~ condition, method = "edgeR_quasi_likelihood", action="get")
se_mini.de
```
</div>
Expand Down Expand Up @@ -468,6 +468,7 @@ se_mini.de =
identify_abundant(factor_of_interest = condition) |>
test_differential_abundance(
~ 0 + condition,
method = "edgeR_quasi_likelihood",
.contrasts = c( "conditionTRUE - conditionFALSE"),
action="get"
)
Expand Down Expand Up @@ -681,6 +682,7 @@ se_mini.norm.SNN |>
mutate(factor_of_interest = `cluster_SNN` == 3) |>
test_differential_abundance(
~ factor_of_interest,
method = "edgeR_quasi_likelihood",
action="get"
)
```
Expand Down

0 comments on commit bb2699b

Please sign in to comment.