Contents

1 IndexedFst

The IndexedFst class provides fast named random access to indexed fst files. It is based on the fst package, which provides fast random reading of data frames. This is particularly useful to manipulate large collections of binding sites without loading them all in memory.

Creating an indexed fst file from a data.frame is very simple:

library(scanMiRApp)
## Warning: replacing previous import 'utils::findMatches' by
## 'S4Vectors::findMatches' when loading 'AnnotationDbi'
# we create a temporary directory in which the files will be saved
tmp <- tempdir()
f <- file.path(tmp, "test")
# we create a dummy data.frame
d <- data.frame( category=sample(LETTERS[1:4], 10000, replace=TRUE),
                 var2=sample(LETTERS, 10000, replace=TRUE),
                 var3=runif(10000) )

saveIndexedFst(d, index.by="category", file.prefix=f)

The file can then be loaded (without having all the data in memory) in the following way:

d2 <- loadIndexedFst(f)
class(d2)
## [1] "IndexedFst"
## attr(,"package")
## [1] "scanMiRApp"
summary(d2)
## <fst file>
## 10000 rows, 3 columns (test.fst)
## 
## * 'category': character
## * 'var2'    : character
## * 'var3'    : double

We can see that d2 is considerably smaller than the original d:

format(object.size(d),units="Kb")
## [1] "237 Kb"
format(object.size(d2),units="Kb")
## [1] "2.4 Kb"

Nevertheless, a number of functions can be used normally on the object:

nrow(d2)
## [1] 10000
ncol(d2)
## [1] 3
colnames(d2)
## [1] "category" "var2"     "var3"
head(d2)
##   category var2      var3
## 1        A    W 0.7766912
## 2        A    U 0.4961884
## 3        A    H 0.2912243
## 4        A    D 0.2377465
## 5        A    B 0.1720734
## 6        A    Y 0.7234585

In addition, the object can be accessed as a list (using the indexed variable). Since in this case the file is indexed using the category column, the different categories can be accessed as names of the object:

names(d2)
## [1] "A" "B" "C" "D"
lengths(d2)
##    A    B    C    D 
## 2420 2505 2523 2552

We can read specifically the rows pertaining to one category using:

catB <- d2$B
head(catB)
##   category var2      var3
## 1        B    M 0.3791756
## 2        B    G 0.5843328
## 3        B    Z 0.9740533
## 4        B    X 0.9177782
## 5        B    O 0.9991819
## 6        B    P 0.1981272

2 Storing GRanges as IndexedFst

In addition to data.frames, GRanges can be saved as indexed Fst. To demonstrate this, we first create a dummy GRanges object:

library(GenomicRanges)
## Loading required package: stats4
## 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: S4Vectors
## 
## Attaching package: 'S4Vectors'
## The following object is masked from 'package:utils':
## 
##     findMatches
## The following objects are masked from 'package:base':
## 
##     I, expand.grid, unname
## Loading required package: IRanges
## Loading required package: GenomeInfoDb
gr <- GRanges(sample(LETTERS[1:3],200,replace=TRUE), IRanges(seq_len(200), width=2))
gr$propertyA <- factor(sample(letters[1:5],200,replace=TRUE))
gr
## GRanges object with 200 ranges and 1 metadata column:
##         seqnames    ranges strand | propertyA
##            <Rle> <IRanges>  <Rle> |  <factor>
##     [1]        B       1-2      * |         a
##     [2]        B       2-3      * |         c
##     [3]        A       3-4      * |         d
##     [4]        C       4-5      * |         c
##     [5]        C       5-6      * |         e
##     ...      ...       ...    ... .       ...
##   [196]        B   196-197      * |         e
##   [197]        A   197-198      * |         a
##   [198]        B   198-199      * |         e
##   [199]        C   199-200      * |         d
##   [200]        B   200-201      * |         a
##   -------
##   seqinfo: 3 sequences from an unspecified genome; no seqlengths

Again the file can then be loaded (without having all the data in memory) in the following way:

f2 <- file.path(tmp, "test2")
saveIndexedFst(gr, index.by="seqnames", file.prefix=f2)
d1 <- loadIndexedFst(f2)
names(d1)
## [1] "B" "A" "C"
head(d1$A)
## GRanges object with 6 ranges and 1 metadata column:
##       seqnames    ranges strand | propertyA
##          <Rle> <IRanges>  <Rle> |  <factor>
##   [1]        A       3-4      * |         d
##   [2]        A       8-9      * |         b
##   [3]        A     13-14      * |         b
##   [4]        A     14-15      * |         a
##   [5]        A     17-18      * |         d
##   [6]        A     19-20      * |         d
##   -------
##   seqinfo: 3 sequences from an unspecified genome; no seqlengths

Similarly, we could index using a different column:

saveIndexedFst(gr, index.by="propertyA", file.prefix=f2)
d2 <- loadIndexedFst(f2)
names(d2)
## [1] "a" "b" "c" "d" "e"

3 More…

3.1 Multithreading

The fst package supports multithreaded reading and writing. This can also be applied for IndexedFst, using the nthreads argument of loadIndexedFst and saveIndexedFst.

3.2 Under the hood

The IndexedFst class is simply a wrapper around the fst package. In addition to the fst file, an rds file is saved containing the index data. For example, for our last example, the following files have been saved:

list.files(tmp, "test2")
## [1] "test2.fst"     "test2.idx.rds"

Either file (or the prefix) can be used for loading, but both files need to have the same prefix.



Session info

## R version 4.3.0 RC (2023-04-13 r84269)
## Platform: x86_64-pc-linux-gnu (64-bit)
## Running under: Ubuntu 22.04.2 LTS
## 
## Matrix products: default
## BLAS:   /home/biocbuild/bbs-3.17-bioc/R/lib/libRblas.so 
## LAPACK: /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.10.0
## 
## 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       
## 
## time zone: America/New_York
## tzcode source: system (glibc)
## 
## attached base packages:
## [1] stats4    stats     graphics  grDevices utils     datasets  methods  
## [8] base     
## 
## other attached packages:
## [1] GenomicRanges_1.52.0 GenomeInfoDb_1.36.0  IRanges_2.34.0      
## [4] S4Vectors_0.38.0     BiocGenerics_0.46.0  fstcore_0.9.14      
## [7] scanMiRApp_1.6.0     BiocStyle_2.28.0    
## 
## loaded via a namespace (and not attached):
##   [1] DBI_1.1.3                     bitops_1.0-7                 
##   [3] biomaRt_2.56.0                rlang_1.1.0                  
##   [5] magrittr_2.0.3                shinydashboard_0.7.2         
##   [7] matrixStats_0.63.0            compiler_4.3.0               
##   [9] RSQLite_2.3.1                 GenomicFeatures_1.52.0       
##  [11] png_0.1-8                     vctrs_0.6.2                  
##  [13] ProtGenerics_1.32.0           stringr_1.5.0                
##  [15] pkgconfig_2.0.3               crayon_1.5.2                 
##  [17] fastmap_1.1.1                 dbplyr_2.3.2                 
##  [19] XVector_0.40.0                ellipsis_0.3.2               
##  [21] utf8_1.2.3                    shinyjqui_0.4.1              
##  [23] Rsamtools_2.16.0              promises_1.2.0.1             
##  [25] rmarkdown_2.21                scanMiRData_1.5.0            
##  [27] purrr_1.0.1                   bit_4.0.5                    
##  [29] xfun_0.39                     zlibbioc_1.46.0              
##  [31] ggseqlogo_0.1                 cachem_1.0.7                 
##  [33] jsonlite_1.8.4                progress_1.2.2               
##  [35] blob_1.2.4                    later_1.3.0                  
##  [37] DelayedArray_0.26.0           BiocParallel_1.34.0          
##  [39] interactiveDisplayBase_1.38.0 parallel_4.3.0               
##  [41] prettyunits_1.1.1             R6_2.5.1                     
##  [43] bslib_0.4.2                   stringi_1.7.12               
##  [45] rtracklayer_1.60.0            jquerylib_0.1.4              
##  [47] SummarizedExperiment_1.30.0   Rcpp_1.0.10                  
##  [49] bookdown_0.33                 knitr_1.42                   
##  [51] httpuv_1.6.9                  Matrix_1.5-4                 
##  [53] tidyselect_1.2.0              yaml_2.3.7                   
##  [55] codetools_0.2-19              curl_5.0.0                   
##  [57] lattice_0.21-8                tibble_3.2.1                 
##  [59] Biobase_2.60.0                shiny_1.7.4                  
##  [61] KEGGREST_1.40.0               evaluate_0.20                
##  [63] BiocFileCache_2.8.0           xml2_1.3.3                   
##  [65] Biostrings_2.68.0             shinycssloaders_1.0.0        
##  [67] pillar_1.9.0                  BiocManager_1.30.20          
##  [69] filelock_1.0.2                MatrixGenerics_1.12.0        
##  [71] DT_0.27                       plotly_4.10.1                
##  [73] generics_0.1.3                RCurl_1.98-1.12              
##  [75] ensembldb_2.24.0              BiocVersion_3.17.1           
##  [77] hms_1.1.3                     ggplot2_3.4.2                
##  [79] munsell_0.5.0                 scales_1.2.1                 
##  [81] xtable_1.8-4                  glue_1.6.2                   
##  [83] lazyeval_0.2.2                tools_4.3.0                  
##  [85] AnnotationHub_3.8.0           BiocIO_1.10.0                
##  [87] data.table_1.14.8             GenomicAlignments_1.36.0     
##  [89] scanMiR_1.6.0                 XML_3.99-0.14                
##  [91] cowplot_1.1.1                 grid_4.3.0                   
##  [93] tidyr_1.3.0                   AnnotationDbi_1.62.0         
##  [95] colorspace_2.1-0              GenomeInfoDbData_1.2.10      
##  [97] restfulr_0.0.15               cli_3.6.1                    
##  [99] rappdirs_0.3.3                fst_0.9.8                    
## [101] fansi_1.0.4                   viridisLite_0.4.1            
## [103] dplyr_1.1.2                   AnnotationFilter_1.24.0      
## [105] gtable_0.3.3                  rintrojs_0.3.2               
## [107] sass_0.4.5                    digest_0.6.31                
## [109] waiter_0.2.5                  rjson_0.2.21                 
## [111] htmlwidgets_1.6.2             memoise_2.0.1                
## [113] htmltools_0.5.5               lifecycle_1.0.3              
## [115] httr_1.4.5                    mime_0.12                    
## [117] bit64_4.0.5