satuRn is a highly performant and scalable method for performing differential transcript usage analyses.
We report a bug in satuRn 1.4.0. (Bioconductor release 3.15). The bug was inadvertently introduced in satuRn 1.3.1 (from the former Bioconductor devel). Note that the bug was not thus present in any of the older Bioconductor releases 3.13 and 3.14 (satuRn 1.0.x, 1.1.x and 1.2.x).
The bug has been resolved in the newer versions of satuRn (1.4.1 and up). Therefore, satuRn 1.4.0. should no longer be used and updated to the newer version. For more details on the bug, we refer to the NEWS
To install the current version of satuRn
in Bioconductor, run;
if(!requireNamespace("BiocManager", quietly = TRUE)) { install.packages("BiocManager") } BiocManager::install("satuRn")
To install the development version, run;
devtools::install_github("statOmics/satuRn")
The installation should only take a few seconds. The dependencies of the package are listed in the DESCRIPTION file of the package.
Please use https://github.com/statOmics/satuRn/issues to submit issues, bug reports, and comments.
! See the online vignette on the bioconductor website or the satuRn website for a more elaborate and reproducible example.
A minimal example of the different functions for modelling
, testing
and visualizing
differential transcript usage is provided here.
library(satuRn) library(SummarizedExperiment)
Provide a transcript expression matrix and corresponding colData
and rowData
sumExp <- SummarizedExperiment::SummarizedExperiment( assays = list(counts = Tasic_counts_vignette), colData = Tasic_metadata_vignette, rowData = txInfo ) # Specify design formula from colData metadata(sumExp)$formula <- ~ 0 + as.factor(colData(sumExp)$group)
Next, we test for differential transcript usage with the function
testDTU
. This function takes as input the SummarizedExperiment
object generated by fitDTU
and a contrast matrix or vector. The latter
is used to specify the comparison(s) of interest and can either be
generated manually or automatically with the makeContrasts
function of
the limma
R package.
group <- as.factor(Tasic_metadata_vignette$group) design <- model.matrix(~ 0 + group) # constructs design matrix colnames(design) <- levels(group) L <- limma::makeContrasts(Contrast1 = VISp.L5_IT_VISp_Hsd11b1_Endou - ALM.L5_IT_ALM_Tnc, Contrast2 = VISp.L5_IT_VISp_Hsd11b1_Endou - ALM.L5_IT_ALM_Tmem163_Dmrtb1, levels = design) # constructs contrast matrix sumExp <- satuRn::testDTU(object = sumExp, contrasts = L, plot = FALSE, sort = FALSE)
The test results are now saved into the rowData
of our
SummarizedExperiment
object under the name fitDTUResult_
followed by
the name of the contrast of interest (i.e. the column names of the
contrast matrix). The results can be accessed as follows:
head(rowData(sumExp)[["fitDTUResult_Contrast1"]]) # first contrast
Finally, we may visualize the usage of select transcripts in select
groups of interest with plotDTU
:
sumExp <- satuRn::testDTU( object = sumExp, contrasts = L, plot = FALSE, sort = FALSE )
Finally, we may visualize the usage of select transcripts
in select groups of interest with plotDTU
:
group1 <- colnames(sumExp)[colData(sumExp)$group == "VISp.L5_IT_VISp_Hsd11b1_Endou"] group2 <- colnames(sumExp)[colData(sumExp)$group == "ALM.L5_IT_ALM_Tnc"] plots <- satuRn::plotDTU( object = sumExp, contrast = "Contrast1", groups = list(group1, group2), coefficients = list(c(0, 0, 1), c(0, 1, 0)), summaryStat = "model", transcripts = c( "ENSMUST00000081554", "ENSMUST00000195963", "ENSMUST00000132062" ), genes = NULL, top.n = 6 )
# Example plot from our publication: knitr::include_graphics("https://raw.githubusercontent.com/statOmics/satuRn/master/inst/figures/README-DTU_plot.png")
Below is the citation output from using citation('satuRn')
in R. Please
run this yourself to check for any updates on how to cite satuRn.
print(citation("satuRn"), bibtex = TRUE)
Please note that the satuRn
was only made possible thanks to many other R and bioinformatics software authors, which are cited either in the vignettes and/or the paper(s) describing this package.
Please note that the satuRn
project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.
r BiocStyle::CRANpkg('usethis')
, r BiocStyle::CRANpkg('remotes')
, and r BiocStyle::CRANpkg('rcmdcheck')
customized to use Bioconductor's docker containers and r BiocStyle::Biocpkg('BiocCheck')
.r BiocStyle::CRANpkg('covr')
.r BiocStyle::CRANpkg('pkgdown')
.r BiocStyle::CRANpkg('styler')
.r BiocStyle::CRANpkg('devtools')
and r BiocStyle::CRANpkg('roxygen2')
.For more details, check the dev
directory.
This package was developed using r BiocStyle::Githubpkg('lcolladotor/biocthis')
.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.