Skip to content

Commit

Permalink
Fix vignette to reflect changes to 'select_transcripts()' and related…
Browse files Browse the repository at this point in the history
… functions
  • Loading branch information
Nick-Eagles committed Nov 26, 2024
1 parent 78fe432 commit 19149ab
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions vignettes/Intro_qsvaR.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,9 @@ knitr::include_graphics("../man/figures/transcripts_venn_diagramm.png")

```{r "Get Degraded Transcripts"}
# obtain transcripts with degradation signature
DegTx <- getDegTx(rse_tx, type = "cell_component")
DegTx <- getDegTx(
rse_tx, sig_transcripts = select_transcripts(cell_component = TRUE)
)
dim(DegTx)
```

Expand Down Expand Up @@ -212,7 +214,12 @@ This can be done in one step with our wrapper function `qSVA` which just combind
set.seed(20230621)
## Example use of the wrapper function qSVA()
qsvs_wrapper <- qSVA(rse_tx = rse_tx, type = "cell_component", mod = mod, assayname = "tpm")
qsvs_wrapper <- qSVA(
rse_tx = rse_tx,
sig_transcripts = select_transcripts(cell_component = TRUE),
mod = mod,
assayname = "tpm"
)
dim(qsvs_wrapper)
```

Expand Down

0 comments on commit 19149ab

Please sign in to comment.