library(BiocStyle)
The IndexedFst
class provides fast named random access to indexed fst
files. It is based on the r CRANpkg("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) # 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) summary(d2)
We can see that d2
is considerably smaller than the original d
:
format(object.size(d),units="Kb") format(object.size(d2),units="Kb")
Nevertheless, a number of functions can be used normally on the object:
nrow(d2) ncol(d2) colnames(d2) head(d2)
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) lengths(d2)
We can read specifically the rows pertaining to one category using:
catB <- d2$B head(catB)
In addition to data.frames, GRanges can be saved as indexed Fst. To demonstrate this, we first create a dummy GRanges object:
library(GenomicRanges) 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
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) head(d1$A)
Similarly, we could index using a different column:
saveIndexedFst(gr, index.by="propertyA", file.prefix=f2) d2 <- loadIndexedFst(f2) names(d2)
The r CRANpkg("fst")
package supports multithreaded reading and writing. This can also be applied for IndexedFst
, using the nthreads
argument of loadIndexedFst
and saveIndexedFst
.
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")
Either file (or the prefix) can be used for loading, but both files need to have the same prefix.
sessionInfo()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.