The Rmmquant package

Matthias Zytnicki

24 October 2023

The aim of Rmmquant is to quantify the expression of the genes. It is similar to featureCounts (Liao, Smyth, and Shi 2014) and Rsubread, or HTSeq-counts (Anders, Pyl, and Huber 2015) and the countOverlaps of GenomicRanges.

The main difference with other approaches is that Rmmquant explicitely handles multi-mapping reads, in a way described by (Robert and Watson 2015).

Rmmquant is the R port of the C++ mmquant, which has been published previously (Zytnicki 2017).

Rmmquant in a nutshell

The easiest method to get the expression of the genes stored in a GTF file, using RNA-Seq data stored in a BAM file is:

dir <- system.file("extdata", package="Rmmquant", mustWork = TRUE)
gtfFile <- file.path(dir, "test.gtf")
bamFile <- file.path(dir, "test.bam")
output <- RmmquantRun(gtfFile, bamFile)

In this example, the output is a SummarizedExperiment.

The matrix of counts can be accessed through:

assays(output)$counts
##       test
## geneA    1

Rmmquant expects at least two kinds of data:

Many aspects of Rmmquant can be controlled with parameters.

All these notions are detailed hereafter.

Package

The Rmmquant package mainly consists in one function, RmmquantRun function, that supports the options described hereafter,

Rmmquant also internally implements an S4 class, RmmquantClass, that stores all the inputs and the outputs of the RmmquantRun function, as well as a validator (that checks the consistency of the inputs).

Inputs

Annotation

Annotation file

The annotation file should be in GTF. GFF might work too. The tool only uses the gene/transcript/exon types.

Annotation structure

Alternatively, the structure can be given using GenomicRanges, or GenomicRangesList.

When a GenomicRanges is provided, the quantification will be performed on each element of the GenomicRanges.

When a GenomicRangesList is provided, the quantification will be performed on each element too, i.e. on each GenomicRanges. Implicitely, each GenomicRanges of a GenomicRangesList is interpreted as a series of exons, and only the transcript (or the gene) will be quantified.

Reads files

One or several reads files can be given.

The reads should be given in SAM or BAM format, and preferably be sorted by position, but it is not compulsory. The reads can be single end or paired-end (or a mixture thereof).

You can use the samtools (Li et al. 2009) or the Rsamtools to sort them. Rmmquant uses the NH flag (that provides the number of hits for each read, see the SAM format specification), so be sure that your mapping tool sets it adequately (yes, TopHat2 (Kim et al. 2013) and STAR (Dobin et al. 2013) do it fine). You should also check how your mapping tool handles multi-mapping reads (this can usually be tuned using the appropriate parameters).

Outputs

Counts

The output SummarizedExperiment contains:

The count table can be accessed through the assays method of SummarizedExperiment. This methods returns a list, with only one element: counts.

assays(output)$counts
##       test
## geneA    1

The columns are the samples (here, only test.bam), and the rows the gene counts (here, only gene_A).

The count table can be used by DESeq2 (Love, Huber, and Anders 2014), for instance, using the DESeqDataSetFromMatrix function.

If the user provided \(n\) reads files, the output will contain \(n\) columns:

Gene sample_1 sample_2
gene_A
gene_B
gene_B–gene_C

The row names are the ID of the genes/features. The column names are the sample names. If a read maps several genes (say, gene_B and gene_C), a new feature is added to the matrix, gene_B--gene_C. The reads that can be mapped to these genes will be counted there (but not in the gene_B nor gene_C lines).

Statistics

The statistics can be accessed using the colData method of SummarizedExperiment:

colData(output)
## DataFrame with 1 row and 5 columns
##         n.hits n.uniquely.mapped.reads n.ambiguously.mapped.hits
##      <numeric>               <numeric>                 <numeric>
## test         2                       1                         0
##      n.non.uniquely.mapped.hits n.unassigned.hits
##                       <numeric>         <numeric>
## test                          0                 1

This is a DataFrame (defined in S4Vectors), with one column per sample. The content of each column is:

Here, a hit is a possible mapping for a read. When a read maps several times, it means that several hits correspond to a read. A read may have zero, one, or several hits, which correspond to unmapped, uniquely mapped, and non-uniquely mapped reads.

Options

Count matrix options

Row names

If printGeneName is set to TRUE, the row names of the count table are the gene names, instead of the gene IDs. If two different genes have the same name, the systematic name is added, like: Mat2a (ENSMUSG00000053907).

The gene IDs and gene names should be given in the GTF file after the gene_id and gene_name tags respectively.

Column names

The column names of the count matrix should be given in the sampleNames. If not given, the column names are inferred from the file names of the SAM/BAM files.

Input options

Library type

The library types can be specified using the strands parameter. This parameter can be:

  • F: the reads are single-end, and the forward strand is sequenced,
  • R: the reads are single-end, and the reverse strand is sequenced,
  • FR: the reads are paired-end, the forward strand is sequenced first, then the reverse strand,
  • RF, FF, FF: other similar cases,
  • U: the reads are single- or pair-ends, and the strand is unknown.

The strands parameters expect one value per SAM/BAM file. If only one value is given, it is recycled.

Reads file format.

The format is usually inferred from the file name, but you can mention it using the formats option.

This parameters expect one value per SAM/BAM file. If only one value is given, it is recycled.

Read assignement options

Overlap options

The way a read \(R\) is mapped to a gene \(A\) depends on the overlap=\(n\) value:

if \(n\) is then \(R\) is mapped to \(A\) iff
a negative value \(R\) is included in \(A\)
a positive integer they have at least \(n\) nucleotides in common
a float value (0, 1) \(n\)% of the nucleotides of \(R\) are shared with \(A\)

Read mapping to several features.

We will suppose here that the overlap=1 strategy is used (i.e. a read is attributed to a gene as soon as at least 1 nucleotide overlap). The example can be extended to other strategies as well.

If a read (say, of size 100), maps unambiguously and overlaps with gene A and B, it will be counted as 1 for the new “gene” gene_A--gene_B. However, suppose that only 1 nucleotide overlaps with gene A, whereas 100 nucleotides overlap with gene B (yes, genes A and B overlap). You probably would like to attribute the read to gene B.

The options nOverlapDiff and pcOverlapDiff control this. We compute the number of overlapping nucleotides between a read and the overlapping genes. If a read overlaps “significantly” more with one gene than with all the other genes, they will attribute the read to the former gene only.

The option nOverlapDiff=\(n\) computes the differences of overlapping nucleotides. Let us name \(N_A\) and \(N_B\) the number of overlapping nucleotides with genes A and B respectively. If \(N_A \geq N_B + n\), then the read will be attributed to gene A only.

The option pcOverlapDiff=\(m\) compares the ratio of overlapping nucleotides. If \(N_A / N_B \geq m\%\), then the read will be attributed to gene A only.

If both option nOverlapDiff=\(n\) and pcOverlapDiff=\(m\) are used, then the read will be attributed to gene A only iff both \(N_A \geq N_B + n\) and \(N_A / N_B \geq m\%\).

Row count options

Count threshold

If the maximum number of reads for a gene is less than countThreshold (a non-negative integer), then the corresponding line is discarded.

Merge threshold

Sometimes, there are very few reads that can be mapped unambiguously to a gene A, because it is very similar to gene B.

Gene sample_1
gene_A \(x\)
gene_B \(y\)
gene_A–gene_B \(z\)

In the previous example, suppose that \(x \ll z\). In this case, you can move all the reads from gene_A to gene_A--gene_B, using the mergeThreshold=\(t\), a float in (0, 1). If \(x < t \cdot y\), then the reads are transferred.

Use cases

The next examples uses data generated in TBX20BamSubset, where the expression of the genes is compared between the wild type and the TXB20 knock-out mice. The data have been mapped to the mm9 reference, and restricted to chromosome 19.

bamFiles    <- getBamFileList()
sampleNames <- names(bamFiles)

Extracting GenomicRanges from Annotation Database

You can extract the annotation a BioConductor package, such as TxDb.Mmusculus.UCSC.mm9.knownGene.

gr <- genes(TxDb.Mmusculus.UCSC.mm9.knownGene, filter=list(tx_chrom="chr19"))

The default gene IDs are Entrez ID (Maglott et al. 2015). If you prefer Ensembl IDs (Zerbino et al. 2018), you can modify the GenomicRanges accordingly. Notice that Entrez IDs may have zero, one, or more Ensembl counterparts.

ensemblIds <- sapply(as.list(org.Mm.egENSEMBL[mappedkeys(org.Mm.egENSEMBL)])
                     [mcols(gr)$gene_id], `[[`, 1)
gr         <- gr[! is.na(names(ensemblIds)), ]
names(gr)  <- unlist(ensemblIds)

Using DESeq2

DESeq2 can be executed right after Rmmquant.

output   <- RmmquantRun(genomicRanges=gr, readsFiles=bamFiles,
                        sampleNames=sampleNames, sorts=FALSE)
coldata <- data.frame(condition=factor(c(rep("control", 3), rep("KO", 3)),
                                       levels=c("control", "KO")),
                      row.names=sampleNames)
dds      <- DESeqDataSetFromMatrix(countData=assays(output)$counts,
                                   colData  =coldata,
                                   design   =~ condition)
dds      <- DESeq(dds)
res      <- lfcShrink(dds, coef=2)
res$padj <- ifelse(is.na(res$padj), 1, res$padj)
res[res$padj < 0.05, ]
## log2 fold change (MAP): condition KO vs control 
## Wald test p-value: condition KO vs control 
## DataFrame with 1 row and 5 columns
##                     baseMean log2FoldChange     lfcSE      pvalue        padj
##                    <numeric>      <numeric> <numeric>   <numeric>   <numeric>
## ENSMUSG00000024997   1083.54       -2.01713   0.33904 3.30589e-10 2.64471e-09

Troubleshooting

While installing the package, if the compiler complains and says

#error This file requires compiler and library support for the ISO C++ 2011 standard.
This support is currently experimental, and must be enabled with the -std=c++11 or -std=gnu++11 compiler options.

Add this line

Sys.setenv("PKG_CXXFLAGS"="-std=c++11")

before installing the package.

Session information

devtools::session_info()
## ─ Session info ───────────────────────────────────────────────────────────────
##  setting  value
##  version  R Under development (unstable) (2023-10-22 r85388)
##  os       Ubuntu 22.04.3 LTS
##  system   x86_64, linux-gnu
##  ui       X11
##  language (EN)
##  collate  en_US.UTF-8
##  ctype    en_US.UTF-8
##  tz       America/New_York
##  date     2023-10-24
##  pandoc   2.7.3 @ /usr/bin/ (via rmarkdown)
## 
## ─ Packages ───────────────────────────────────────────────────────────────────
##  package                           * version    date (UTC) lib source
##  abind                               1.4-5      2016-07-21 [2] CRAN (R 4.4.0)
##  AnnotationDbi                     * 1.65.0     2023-10-24 [2] Bioconductor
##  apeglm                              1.25.0     2023-10-24 [2] Bioconductor
##  bbmle                               1.0.25     2022-05-11 [2] CRAN (R 4.4.0)
##  bdsmatrix                           1.3-6      2022-06-03 [2] CRAN (R 4.4.0)
##  Biobase                           * 2.63.0     2023-10-24 [2] Bioconductor
##  BiocFileCache                       2.11.0     2023-10-24 [2] Bioconductor
##  BiocGenerics                      * 0.49.0     2023-10-24 [2] Bioconductor
##  BiocIO                              1.13.0     2023-10-24 [2] Bioconductor
##  BiocManager                         1.30.22    2023-08-08 [2] CRAN (R 4.4.0)
##  BiocParallel                        1.37.0     2023-10-24 [2] Bioconductor
##  BiocStyle                         * 2.31.0     2023-10-24 [2] Bioconductor
##  biomaRt                             2.59.0     2023-10-24 [2] Bioconductor
##  Biostrings                        * 2.71.0     2023-10-24 [2] Bioconductor
##  bit                                 4.0.5      2022-11-15 [2] CRAN (R 4.4.0)
##  bit64                               4.0.5      2020-08-30 [2] CRAN (R 4.4.0)
##  bitops                              1.0-7      2021-04-24 [2] CRAN (R 4.4.0)
##  blob                                1.2.4      2023-03-17 [2] CRAN (R 4.4.0)
##  bslib                               0.5.1      2023-08-11 [2] CRAN (R 4.4.0)
##  cachem                              1.0.8      2023-05-01 [2] CRAN (R 4.4.0)
##  callr                               3.7.3      2022-11-02 [2] CRAN (R 4.4.0)
##  cli                                 3.6.1      2023-03-23 [2] CRAN (R 4.4.0)
##  coda                                0.19-4     2020-09-30 [2] CRAN (R 4.4.0)
##  codetools                           0.2-19     2023-02-01 [3] CRAN (R 4.4.0)
##  colorspace                          2.1-0      2023-01-23 [2] CRAN (R 4.4.0)
##  crayon                              1.5.2      2022-09-29 [2] CRAN (R 4.4.0)
##  curl                                5.1.0      2023-10-02 [2] CRAN (R 4.4.0)
##  DBI                                 1.1.3      2022-06-18 [2] CRAN (R 4.4.0)
##  dbplyr                              2.3.4      2023-09-26 [2] CRAN (R 4.4.0)
##  DelayedArray                        0.29.0     2023-10-24 [2] Bioconductor
##  DESeq2                            * 1.43.0     2023-10-24 [2] Bioconductor
##  devtools                            2.4.5      2022-10-11 [2] CRAN (R 4.4.0)
##  digest                              0.6.33     2023-07-07 [2] CRAN (R 4.4.0)
##  dplyr                               1.1.3      2023-09-03 [2] CRAN (R 4.4.0)
##  ellipsis                            0.3.2      2021-04-29 [2] CRAN (R 4.4.0)
##  emdbook                             1.3.13     2023-07-03 [2] CRAN (R 4.4.0)
##  evaluate                            0.22       2023-09-29 [2] CRAN (R 4.4.0)
##  fansi                               1.0.5      2023-10-08 [2] CRAN (R 4.4.0)
##  fastmap                             1.1.1      2023-02-24 [2] CRAN (R 4.4.0)
##  filelock                            1.0.2      2018-10-05 [2] CRAN (R 4.4.0)
##  fs                                  1.6.3      2023-07-20 [2] CRAN (R 4.4.0)
##  generics                            0.1.3      2022-07-05 [2] CRAN (R 4.4.0)
##  GenomeInfoDb                      * 1.39.0     2023-10-24 [2] Bioconductor
##  GenomeInfoDbData                    1.2.11     2023-10-23 [2] Bioconductor
##  GenomicAlignments                   1.39.0     2023-10-24 [2] Bioconductor
##  GenomicFeatures                   * 1.55.0     2023-10-24 [2] Bioconductor
##  GenomicRanges                     * 1.55.0     2023-10-24 [2] Bioconductor
##  ggplot2                             3.4.4      2023-10-12 [2] CRAN (R 4.4.0)
##  glue                                1.6.2      2022-02-24 [2] CRAN (R 4.4.0)
##  gtable                              0.3.4      2023-08-21 [2] CRAN (R 4.4.0)
##  hms                                 1.1.3      2023-03-21 [2] CRAN (R 4.4.0)
##  htmltools                           0.5.6.1    2023-10-06 [2] CRAN (R 4.4.0)
##  htmlwidgets                         1.6.2      2023-03-17 [2] CRAN (R 4.4.0)
##  httpuv                              1.6.12     2023-10-23 [2] CRAN (R 4.4.0)
##  httr                                1.4.7      2023-08-15 [2] CRAN (R 4.4.0)
##  IRanges                           * 2.37.0     2023-10-24 [2] Bioconductor
##  jquerylib                           0.1.4      2021-04-26 [2] CRAN (R 4.4.0)
##  jsonlite                            1.8.7      2023-06-29 [2] CRAN (R 4.4.0)
##  KEGGREST                            1.43.0     2023-10-24 [2] Bioconductor
##  knitr                             * 1.44       2023-09-11 [2] CRAN (R 4.4.0)
##  later                               1.3.1      2023-05-02 [2] CRAN (R 4.4.0)
##  lattice                             0.22-5     2023-10-24 [3] CRAN (R 4.4.0)
##  lifecycle                           1.0.3      2022-10-07 [2] CRAN (R 4.4.0)
##  locfit                              1.5-9.8    2023-06-11 [2] CRAN (R 4.4.0)
##  magrittr                            2.0.3      2022-03-30 [2] CRAN (R 4.4.0)
##  MASS                                7.3-60.1   2023-10-23 [3] local
##  Matrix                              1.6-1.1    2023-09-18 [3] CRAN (R 4.4.0)
##  MatrixGenerics                    * 1.15.0     2023-10-24 [2] Bioconductor
##  matrixStats                       * 1.0.0      2023-06-02 [2] CRAN (R 4.4.0)
##  memoise                             2.0.1      2021-11-26 [2] CRAN (R 4.4.0)
##  mime                                0.12       2021-09-28 [2] CRAN (R 4.4.0)
##  miniUI                              0.1.1.1    2018-05-18 [2] CRAN (R 4.4.0)
##  munsell                             0.5.0      2018-06-12 [2] CRAN (R 4.4.0)
##  mvtnorm                             1.2-3      2023-08-25 [2] CRAN (R 4.4.0)
##  numDeriv                            2016.8-1.1 2019-06-06 [2] CRAN (R 4.4.0)
##  org.Mm.eg.db                      * 3.18.0     2023-10-23 [2] Bioconductor
##  pillar                              1.9.0      2023-03-22 [2] CRAN (R 4.4.0)
##  pkgbuild                            1.4.2      2023-06-26 [2] CRAN (R 4.4.0)
##  pkgconfig                           2.0.3      2019-09-22 [2] CRAN (R 4.4.0)
##  pkgload                             1.3.3      2023-09-22 [2] CRAN (R 4.4.0)
##  plyr                                1.8.9      2023-10-02 [2] CRAN (R 4.4.0)
##  png                                 0.1-8      2022-11-29 [2] CRAN (R 4.4.0)
##  prettyunits                         1.2.0      2023-09-24 [2] CRAN (R 4.4.0)
##  processx                            3.8.2      2023-06-30 [2] CRAN (R 4.4.0)
##  profvis                             0.3.8      2023-05-02 [2] CRAN (R 4.4.0)
##  progress                            1.2.2      2019-05-16 [2] CRAN (R 4.4.0)
##  promises                            1.2.1      2023-08-10 [2] CRAN (R 4.4.0)
##  ps                                  1.7.5      2023-04-18 [2] CRAN (R 4.4.0)
##  purrr                               1.0.2      2023-08-10 [2] CRAN (R 4.4.0)
##  R6                                  2.5.1      2021-08-19 [2] CRAN (R 4.4.0)
##  rappdirs                            0.3.3      2021-01-31 [2] CRAN (R 4.4.0)
##  Rcpp                                1.0.11     2023-07-06 [2] CRAN (R 4.4.0)
##  RCurl                               1.98-1.12  2023-03-27 [2] CRAN (R 4.4.0)
##  remotes                             2.4.2.1    2023-07-18 [2] CRAN (R 4.4.0)
##  restfulr                            0.0.15     2022-06-16 [2] CRAN (R 4.4.0)
##  rjson                               0.2.21     2022-01-09 [2] CRAN (R 4.4.0)
##  rlang                               1.1.1      2023-04-28 [2] CRAN (R 4.4.0)
##  rmarkdown                         * 2.25       2023-09-18 [2] CRAN (R 4.4.0)
##  Rmmquant                          * 1.21.0     2023-10-24 [1] Bioconductor
##  Rsamtools                         * 2.19.0     2023-10-24 [2] Bioconductor
##  RSQLite                             2.3.1      2023-04-03 [2] CRAN (R 4.4.0)
##  rtracklayer                         1.63.0     2023-10-24 [2] Bioconductor
##  S4Arrays                            1.3.0      2023-10-24 [2] Bioconductor
##  S4Vectors                         * 0.41.0     2023-10-24 [2] Bioconductor
##  sass                                0.4.7      2023-07-15 [2] CRAN (R 4.4.0)
##  scales                              1.2.1      2022-08-20 [2] CRAN (R 4.4.0)
##  sessioninfo                         1.2.2      2021-12-06 [2] CRAN (R 4.4.0)
##  shiny                               1.7.5.1    2023-10-14 [2] CRAN (R 4.4.0)
##  SparseArray                         1.3.0      2023-10-24 [2] Bioconductor
##  stringi                             1.7.12     2023-01-11 [2] CRAN (R 4.4.0)
##  stringr                             1.5.0      2022-12-02 [2] CRAN (R 4.4.0)
##  SummarizedExperiment              * 1.33.0     2023-10-24 [2] Bioconductor
##  TBX20BamSubset                    * 1.37.0     2023-10-24 [2] Bioconductor
##  tibble                              3.2.1      2023-03-20 [2] CRAN (R 4.4.0)
##  tidyselect                          1.2.0      2022-10-10 [2] CRAN (R 4.4.0)
##  TxDb.Mmusculus.UCSC.mm9.knownGene * 3.2.2      2023-10-23 [2] Bioconductor
##  urlchecker                          1.0.1      2021-11-30 [2] CRAN (R 4.4.0)
##  usethis                             2.2.2      2023-07-06 [2] CRAN (R 4.4.0)
##  utf8                                1.2.4      2023-10-22 [2] CRAN (R 4.4.0)
##  vctrs                               0.6.4      2023-10-12 [2] CRAN (R 4.4.0)
##  xfun                                0.40       2023-08-09 [2] CRAN (R 4.4.0)
##  XML                                 3.99-0.14  2023-03-19 [2] CRAN (R 4.4.0)
##  xml2                                1.3.5      2023-07-06 [2] CRAN (R 4.4.0)
##  xtable                              1.8-4      2019-04-21 [2] CRAN (R 4.4.0)
##  XVector                           * 0.43.0     2023-10-24 [2] Bioconductor
##  yaml                                2.3.7      2023-01-23 [2] CRAN (R 4.4.0)
##  zlibbioc                            1.49.0     2023-10-24 [2] Bioconductor
## 
##  [1] /tmp/RtmpxZWkem/Rinst13b2b81d35fdcc
##  [2] /home/biocbuild/bbs-3.19-bioc/R/site-library
##  [3] /home/biocbuild/bbs-3.19-bioc/R/library
## 
## ──────────────────────────────────────────────────────────────────────────────

References

Anders, Simon, Paul Theodor Pyl, and Wolfgang Huber. 2015. “HTSeq—a Python Framework to Work with High-Throughput Sequencing Data.” Bioinformatics 31 (2): 166–69.

Dobin, Alexander, Carrie A. Davis, Felix Schlesinger, Jorg Drenkow, Chris Zaleski, Sonali Jha, Philippe Batut, Mark Chaisson, and Thomas R. Gingeras. 2013. “STAR: Ultrafast Universal Rna-Seq Aligner.” Bioinformatics 29 (1): 15–21.

Kim, Daehwan, Geo Pertea, Cole Trapnell, Harold Pimentel, Ryan Kelley, and Steven L. Salzberg. 2013. “TopHat2: Accurate Alignment of Transcriptomes in the Presence of Insertions, Deletions and Gene Fusions.” Genome Biology 14 (4): R36.

Li, Heng, Bob Handsaker, Alec Wysoker, Tim Fennell, Jue Ruan, Nils Homer, Gabor Marth, Goncalo Abecasis, Richard Durbin, and 1000 Genome Project Data Processing Subgroup. 2009. “The Sequence Alignment/Map Format and Samtools.” Bioinformatics 25 (16): 2078–9.

Liao, Yang, Gordon K. Smyth, and Wei Shi. 2014. “FeatureCounts: An Efficient General Purpose Program for Assigning Sequence Reads to Genomic Features.” Bioinformatics 30 (7): 923–30.

Love, Michael I., Wolfgang Huber, and Simon Anders. 2014. “Moderated estimation of fold change and dispersion for RNA-seq data with DESeq2.” Genome Biology 15 (12): 550.

Maglott, Donna, Jim Ostell, Kim D Pruitt, and Tatiana Tatusova. 2015. “Entrez Gene: gene-centered information at NCBI.” Nucleic Acids Research 33: D54–D58.

Robert, Christelle, and Mick Watson. 2015. “Errors in Rna-Seq Quantification Affect Genes of Relevance to Human Disease.” Genome Biology 16 (1): 177.

Zerbino, Daniel R, Premanand Achuthan, Wasiu Akanni, M Ridwan Amode, Daniel Barrell, Jyothish Bhai, Konstantinos Billis, et al. 2018. “Ensembl 2018.” Nucleic Acids Research 46 (D1): D754–D761.

Zytnicki, Matthias. 2017. “Mmquant: How to Count Multi-Mapping Reads?” BMC Bioinformatics 18 (1): 411.