Loading SpliceWiz

For instructions on installing and configuring SpliceWiz, please see the Quick-Start vignette.


Reference Generation

First, define the path to the directory in which the reference should be stored. This directory will be made by SpliceWiz, but its parent directory must exist, otherwise an error will be returned.


Create a SpliceWiz reference from user-defined FASTA and GTF files locally

Note that setting genome_path = "hg38" will prompt SpliceWiz to use the default files for nonPolyA and Mappability exclusion references in the generation of its reference. Valid options for genome_path are “hg38”, “hg19”, “mm10” and “mm9”.


Prepare genome resources and building the reference as separate steps

buildRef() first fetches the genome and gene annotations and makes a compressed local copy in the resources subdirectory of the given reference path. This can sometimes be a long process (especially when downloading the genome from the internet). Also, one may choose to generate the mappability exclusion regions manually (see Reference Generation - Mappability exclusion generation using Rsubread section). This needs to occur prior to generation of the SpliceWiz reference.

To separately prepare the annotation data and build the SpliceWiz reference, use the getResources() function to specify the FASTA and GTF files. Once getResources() has completed successfully, call buildRef() and leave the fasta and gtf arguments blank, as in the example below:


Overwriting an existing reference, but using the same annotations

To re-build and overwrite an existing reference, using the same resource annotations:


Create a SpliceWiz reference using web resources from Ensembl’s FTP

The following will first download the genome and gene annotation files from the online resource and store a local copy of it in a file cache, facilitated by BiocFileCache. Then, it uses the downloaded resource to create the SpliceWiz reference.


Create a SpliceWiz reference using AnnotationHub resources

AnnotationHub contains Ensembl references for many genomes. To browse what is available:

require(AnnotationHub)
#> Loading required package: AnnotationHub
#> Loading required package: BiocGenerics
#> 
#> Attaching package: 'BiocGenerics'
#> The following objects are masked from 'package:stats':
#> 
#>     IQR, mad, sd, var, xtabs
#> The following objects are masked from 'package:base':
#> 
#>     Filter, Find, Map, Position, Reduce, anyDuplicated, aperm, append,
#>     as.data.frame, basename, cbind, colnames, dirname, do.call,
#>     duplicated, eval, evalq, get, grep, grepl, intersect, is.unsorted,
#>     lapply, mapply, match, mget, order, paste, pmax, pmax.int, pmin,
#>     pmin.int, rank, rbind, rownames, sapply, setdiff, sort, table,
#>     tapply, union, unique, unsplit, which.max, which.min
#> Loading required package: BiocFileCache
#> Loading required package: dbplyr

ah <- AnnotationHub()
#> snapshotDate(): 2022-10-31
query(ah, "Ensembl")
#> AnnotationHub with 33668 records
#> # snapshotDate(): 2022-10-31
#> # $dataprovider: Ensembl, FANTOM5,DLRP,IUPHAR,HPRD,STRING,SWISSPROT,TREMBL,E...
#> # $species: Homo sapiens, Mus musculus, Danio rerio, Rattus norvegicus, Pan ...
#> # $rdataclass: TwoBitFile, GRanges, EnsDb, SQLiteFile, data.frame, OrgDb, list
#> # additional mcols(): taxonomyid, genome, description,
#> #   coordinate_1_based, maintainer, rdatadateadded, preparerclass, tags,
#> #   rdatapath, sourceurl, sourcetype 
#> # retrieve records with, e.g., 'object[["AH5046"]]' 
#> 
#>              title                                       
#>   AH5046   | Ensembl Genes                               
#>   AH5160   | Ensembl Genes                               
#>   AH5311   | Ensembl Genes                               
#>   AH5434   | Ensembl Genes                               
#>   AH5435   | Ensembl EST Genes                           
#>   ...        ...                                         
#>   AH109476 | Ensembl 108 EnsDb for Xiphophorus couchianus
#>   AH109477 | Ensembl 108 EnsDb for Xiphophorus maculatus 
#>   AH109478 | Ensembl 108 EnsDb for Xenopus tropicalis    
#>   AH109479 | Ensembl 108 EnsDb for Zonotrichia albicollis
#>   AH109480 | Ensembl 108 EnsDb for Zalophus californianus

For a more specific query:

We wish to fetch “AH65745” and “AH64631” which contains the desired FASTA and GTF files, respectively. To build a reference using these resources:

Build-Reference-methods will recognise the inputs of fasta and gtf as AnnotationHub resources as they begin with “AH”.

Create a SpliceWiz reference from species other than human or mouse

For human and mouse genomes, we highly recommend specifying genome_type as the default mappability file is used to exclude intronic regions with repeat sequences from intron retention analysis. For other species, one could generate a SpliceWiz reference without this reference:


STAR reference generation

Checking if STAR is installed

To use STAR to align FASTQ files, one must be using a system with STAR installed. This software is not available in Windows. To check if STAR is available:


Building a STAR reference alongside the SpliceWiz reference

If STAR is available on the same computer or server where R/RStudio is being run, we can use the one-line function buildFullRef. This function will: * Prepare the resources from the given FASTA and GTF files * Generate a STAR genome * Use the STAR genome and the FASTA file to de-novo calculate and define low mappability regions * Build the SpliceWiz reference using the genome resources and mappability file

n_threads specify how many threads should be used to build the STAR reference and to calculate the low mappability regions

Aligning Raw RNA-seq data using SpliceWiz’s STAR wrappers


First, remember to check that STAR is available via command line:

Finding FASTQ files recursively from a given directory

SpliceWiz can identify sequencing FASTQ files recursively from a given directory. It assumes that forward and reverse reads are suffixed as _1 and _2, respectively. Users can choose to identify such files using a specified file extension. For example, to recursively identify FASTQ files of the format {sample}_1.fq.gz and {sample}_2.fq.gz, use the following:

Then, these can be aligned as follows:

Running processBAM on BAM files

To conveniently find all BAM files recursively in a given path:

This convenience function returns the putative sample names, either from BAM file names themselves (level = 0), or from the names of their parent directories (level = 1).

To run processBAM() using 4 OpenMP threads:


Creating COV files from BAM files without running processBAM

Sometimes one may wish to create a COV file from a BAM file without running processBAM(). One reason might be because a SpliceWiz reference is not available.

To convert a list of BAM files, run BAM2COV(). This is a function structurally similar to processBAM() but without the need to give the path to the SpliceWiz reference:


Collating the experiment

Assuming the SpliceWiz reference is in ref_path, after running processBAM() as shown in the previous section, use the convenience function findSpliceWizOutput() to tabulate a list of samples and their corresponding processBAM() outputs:

This data.frame can be directly used to run collateData:

  • NB: Novel splicing detection can be enabled by setting novelSplicing = TRUE. See the SpliceWiz Quick-Start vignette for more details.

Then, the collated data can be imported as a NxtSE object, which is an object that inherits SummarizedExperiment and has specialized containers to hold additional data required by SpliceWiz.


Downstream analysis using SpliceWiz

Please refer to SpliceWiz: Quick-Start vignette for worked examples using the example dataset.

SessionInfo

sessionInfo()
#> R version 4.2.2 (2022-10-31)
#> Platform: x86_64-pc-linux-gnu (64-bit)
#> Running under: Ubuntu 20.04.5 LTS
#> 
#> Matrix products: default
#> BLAS:   /home/biocbuild/bbs-3.16-bioc/R/lib/libRblas.so
#> LAPACK: /home/biocbuild/bbs-3.16-bioc/R/lib/libRlapack.so
#> 
#> locale:
#>  [1] LC_CTYPE=en_US.UTF-8       LC_NUMERIC=C              
#>  [3] LC_TIME=en_GB              LC_COLLATE=C              
#>  [5] LC_MONETARY=en_US.UTF-8    LC_MESSAGES=en_US.UTF-8   
#>  [7] LC_PAPER=en_US.UTF-8       LC_NAME=C                 
#>  [9] LC_ADDRESS=C               LC_TELEPHONE=C            
#> [11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C       
#> 
#> attached base packages:
#> [1] stats     graphics  grDevices utils     datasets  methods   base     
#> 
#> other attached packages:
#> [1] AnnotationHub_3.6.0 BiocFileCache_2.6.0 dbplyr_2.2.1       
#> [4] BiocGenerics_0.44.0 SpliceWiz_1.0.2     NxtIRFdata_1.4.0   
#> 
#> loaded via a namespace (and not attached):
#>   [1] lazyeval_0.2.2                shinydashboard_0.7.2         
#>   [3] splines_4.2.2                 BiocParallel_1.32.4          
#>   [5] GenomeInfoDb_1.34.4           ggplot2_3.4.0                
#>   [7] digest_0.6.31                 ca_0.71.1                    
#>   [9] foreach_1.5.2                 htmltools_0.5.4              
#>  [11] viridis_0.6.2                 fansi_1.0.3                  
#>  [13] magrittr_2.0.3                memoise_2.0.1                
#>  [15] BSgenome_1.66.1               shinyFiles_0.9.3             
#>  [17] Biostrings_2.66.0             annotate_1.76.0              
#>  [19] matrixStats_0.63.0            R.utils_2.12.2               
#>  [21] prettyunits_1.1.1             colorspace_2.0-3             
#>  [23] blob_1.2.3                    rappdirs_0.3.3               
#>  [25] xfun_0.35                     dplyr_1.0.10                 
#>  [27] crayon_1.5.2                  RCurl_1.98-1.9               
#>  [29] jsonlite_1.8.4                genefilter_1.80.2            
#>  [31] survival_3.4-0                iterators_1.0.14             
#>  [33] glue_1.6.2                    registry_0.5-1               
#>  [35] gtable_0.3.1                  zlibbioc_1.44.0              
#>  [37] XVector_0.38.0                webshot_0.5.4                
#>  [39] DelayedArray_0.24.0           Rhdf5lib_1.20.0              
#>  [41] HDF5Array_1.26.0              scales_1.2.1                 
#>  [43] pheatmap_1.0.12               DBI_1.1.3                    
#>  [45] Rcpp_1.0.9                    progress_1.2.2               
#>  [47] viridisLite_0.4.1             xtable_1.8-4                 
#>  [49] bit_4.0.5                     stats4_4.2.2                 
#>  [51] DT_0.26                       htmlwidgets_1.6.0            
#>  [53] httr_1.4.4                    fstcore_0.9.12               
#>  [55] RColorBrewer_1.1-3            ellipsis_0.3.2               
#>  [57] pkgconfig_2.0.3               XML_3.99-0.13                
#>  [59] R.methodsS3_1.8.2             sass_0.4.4                   
#>  [61] utf8_1.2.2                    tidyselect_1.2.0             
#>  [63] rlang_1.0.6                   later_1.3.0                  
#>  [65] AnnotationDbi_1.60.0          munsell_0.5.0                
#>  [67] BiocVersion_3.16.0            tools_4.2.2                  
#>  [69] cachem_1.0.6                  cli_3.4.1                    
#>  [71] generics_0.1.3                RSQLite_2.2.19               
#>  [73] evaluate_0.19                 stringr_1.5.0                
#>  [75] fastmap_1.1.0                 heatmaply_1.4.0              
#>  [77] yaml_2.3.6                    ompBAM_1.2.0                 
#>  [79] fs_1.5.2                      knitr_1.41                   
#>  [81] bit64_4.0.5                   purrr_0.3.5                  
#>  [83] KEGGREST_1.38.0               dendextend_1.16.0            
#>  [85] sparseMatrixStats_1.10.0      mime_0.12                    
#>  [87] rhandsontable_0.3.8           R.oo_1.25.0                  
#>  [89] compiler_4.2.2                plotly_4.10.1                
#>  [91] filelock_1.0.2                curl_4.3.3                   
#>  [93] png_0.1-8                     interactiveDisplayBase_1.36.0
#>  [95] tibble_3.1.8                  bslib_0.4.2                  
#>  [97] stringi_1.7.8                 lattice_0.20-45              
#>  [99] Matrix_1.5-3                  vctrs_0.5.1                  
#> [101] pillar_1.8.1                  lifecycle_1.0.3              
#> [103] rhdf5filters_1.10.0           BiocManager_1.30.19          
#> [105] jquerylib_0.1.4               data.table_1.14.6            
#> [107] bitops_1.0-7                  seriation_1.4.0              
#> [109] httpuv_1.6.7                  rtracklayer_1.58.0           
#> [111] GenomicRanges_1.50.2          R6_2.5.1                     
#> [113] BiocIO_1.8.0                  promises_1.2.0.1             
#> [115] TSP_1.2-1                     gridExtra_2.3                
#> [117] IRanges_2.32.0                codetools_0.2-18             
#> [119] assertthat_0.2.1              rhdf5_2.42.0                 
#> [121] SummarizedExperiment_1.28.0   rjson_0.2.21                 
#> [123] withr_2.5.0                   shinyWidgets_0.7.5           
#> [125] GenomicAlignments_1.34.0      Rsamtools_2.14.0             
#> [127] S4Vectors_0.36.1              GenomeInfoDbData_1.2.9       
#> [129] hms_1.1.2                     parallel_4.2.2               
#> [131] fst_0.9.8                     grid_4.2.2                   
#> [133] tidyr_1.2.1                   rmarkdown_2.19               
#> [135] DelayedMatrixStats_1.20.0     MatrixGenerics_1.10.0        
#> [137] Biobase_2.58.0                shiny_1.7.4                  
#> [139] restfulr_0.0.15