#' DESeq is an R package to analyse count data from high-throughput sequencing assays such as RNA-Seq and test for differential expression. The latest version, DESeq2, is used.
##' From the DESeq docs about how size factors are used: The sizeFactors vector assigns to each column of the count matrix a value, the size factor, such that count values in the columns can be brought to a common scale by dividing by the corresponding size factor.
##' This means that counts are divied by size factors. So let's now load the lambda libraies and replace the predefined size factors with our custom ones
#' From DESeq manual: The regularized log transformation is preferable to the variance stabilizing transformation if the size factors vary widely.
##' From the DESeq docs about how size factors are used: The sizeFactors vector assigns to each column of the count matrix a value, the size factor, such that count values in the columns can be brought to a common scale by dividing by the corresponding size factor.
##' This means that counts are divied by size factors. So let's now load the lambda libraies and replace the predefined size factors with our custom ones
#' From DESeq manual: The regularized log transformation is preferable to the variance stabilizing transformation if the size factors vary widely.