One of the most important features of this package is the complete microbial taxonomic database, supplied by the Catalogue of Life. We created a function as.mo() that transforms any user input value to a valid microbial ID by using intelligent rules combined with the taxonomic tree of Catalogue of Life.

Using the microbenchmark package, we can review the calculation performance of this function. Its function microbenchmark() runs different input expressions independently of each other and measures their time-to-result.

library(microbenchmark)
library(AMR)

In the next test, we try to ‘coerce’ different input values into the microbial code of Staphylococcus aureus. Coercion is a computational process of forcing output based on an input. For microorganism names, coercing user input to taxonomically valid microorganism names is crucial to ensure correct interpretation and to enable grouping based on taxonomic properties.

The actual result is the same every time: it returns its microorganism code B_STPHY_AURS (B stands for Bacteria, the taxonomic kingdom).

But the calculation time differs a lot:

S.aureus <- microbenchmark(
  as.mo("sau"), # WHONET code
  as.mo("stau"),
  as.mo("STAU"),
  as.mo("staaur"),
  as.mo("STAAUR"),
  as.mo("S. aureus"),
  as.mo("S aureus"),
  as.mo("Staphylococcus aureus"), # official taxonomic name
  as.mo("Staphylococcus aureus (MRSA)"), # additional text
  as.mo("Sthafilokkockus aaureuz"), # incorrect spelling
  as.mo("MRSA"), # Methicillin Resistant S. aureus
  as.mo("VISA"), # Vancomycin Intermediate S. aureus
  as.mo("VRSA"), # Vancomycin Resistant S. aureus
  as.mo(22242419), # Catalogue of Life ID
  times = 10)
print(S.aureus, unit = "ms", signif = 2)
# Unit: milliseconds
#                                   expr   min    lq  mean median    uq max neval
#                           as.mo("sau")   8.9   9.3   9.6    9.6   9.9  10    10
#                          as.mo("stau")  41.0  41.0  51.0   43.0  67.0  74    10
#                          as.mo("STAU")  39.0  41.0  49.0   42.0  56.0  72    10
#                        as.mo("staaur")   9.0   9.2   9.7    9.5   9.9  11    10
#                        as.mo("STAAUR")   9.5   9.8  24.0   21.0  38.0  45    10
#                     as.mo("S. aureus")  15.0  16.0  26.0   18.0  38.0  61    10
#                      as.mo("S aureus")  15.0  15.0  17.0   16.0  17.0  21    10
#         as.mo("Staphylococcus aureus")   5.2   5.6   8.4    6.0   6.5  30    10
#  as.mo("Staphylococcus aureus (MRSA)") 640.0 690.0 710.0  710.0 720.0 760    10
#       as.mo("Sthafilokkockus aaureuz") 350.0 360.0 420.0  400.0 490.0 510    10
#                          as.mo("MRSA")   9.2   9.3  16.0   10.0  10.0  49    10
#                          as.mo("VISA")  25.0  27.0  46.0   56.0  57.0  60    10
#                          as.mo("VRSA")  26.0  27.0  39.0   28.0  32.0 120    10
#                        as.mo(22242419) 120.0 140.0 170.0  140.0 150.0 410    10

In the table above, all measurements are shown in milliseconds (thousands of seconds). A value of 5 milliseconds means it can determine 200 input values per second. It case of 100 milliseconds, this is only 10 input values per second.

To achieve this speed, the as.mo function also takes into account the prevalence of human pathogenic microorganisms. The downside of this is of course that less prevalent microorganisms will be determined less fast. See this example for the ID of Methanosarcina semesiae (B_MTHNSR_SEMS), a bug probably never found before in humans:

M.semesiae <- microbenchmark(as.mo("metsem"),
                             as.mo("METSEM"),
                             as.mo("M. semesiae"),
                             as.mo("M.  semesiae"),
                             as.mo("Methanosarcina semesiae"),
                             times = 10)
print(M.semesiae, unit = "ms", signif = 4)
# Unit: milliseconds
#                              expr      min       lq    mean   median       uq
#                   as.mo("metsem") 1485.000 1507.000 1524.00 1519.000 1538.000
#                   as.mo("METSEM") 1371.000 1495.000 1557.00 1567.000 1633.000
#              as.mo("M. semesiae")   16.010   16.310   25.38   16.480   42.840
#             as.mo("M.  semesiae")   15.700   15.900   16.74   16.370   17.480
#  as.mo("Methanosarcina semesiae")    5.885    6.116   11.79    6.347    8.155
#      max neval
#  1577.00    10
#  1663.00    10
#    48.53    10
#    18.55    10
#    32.92    10

That takes 5.5 times as much time on average. We can conclude that looking up arbitrary codes of less prevalent microorganisms is the worst way to go, in terms of calculation performance. Full names (like Methanosarcina semesiae) are always very fast and only take some thousands of seconds to coerce - they are the most probable input from most data sets.

In the figure below, we compare Escherichia coli (which is very common) with Prevotella brevis (which is moderately common) and with Methanosarcina semesiae (which is uncommon):

Uncommon microorganisms take a lot more time than common microorganisms. To relieve this pitfall and further improve performance, two important calculations take almost no time at all: repetitive results and already precalculated results.

Repetitive results

Repetitive results are unique values that are present more than once. Unique values will only be calculated once by as.mo(). We will use mo_name() for this test - a helper function that returns the full microbial name (genus, species and possibly subspecies) which uses as.mo() internally.

library(dplyr)
# take all MO codes from the example_isolates data set
x <- example_isolates$mo %>%
  # keep only the unique ones
  unique() %>%
  # pick 50 of them at random
  sample(50) %>%
  # paste that 10,000 times
  rep(10000) %>%
  # scramble it
  sample()
  
# got indeed 50 times 10,000 = half a million?
length(x)
# [1] 500000

# and how many unique values do we have?
n_distinct(x)
# [1] 50

# now let's see:
run_it <- microbenchmark(mo_name(x),
                         times = 100)
print(run_it, unit = "ms", signif = 3)
# Unit: milliseconds
#        expr min  lq mean median  uq max neval
#  mo_name(x) 542 585  605    601 614 738   100

So transforming 500,000 values (!!) of 50 unique values only takes 0.6 seconds (600 ms). You only lose time on your unique input values.

Precalculated results

What about precalculated results? If the input is an already precalculated result of a helper function like mo_name(), it almost doesn’t take any time at all (see ‘C’ below):

run_it <- microbenchmark(A = mo_name("B_STPHY_AURS"),
                         B = mo_name("S. aureus"),
                         C = mo_name("Staphylococcus aureus"),
                         times = 10)
print(run_it, unit = "ms", signif = 3)
# Unit: milliseconds
#  expr    min     lq  mean median     uq    max neval
#     A  6.760  6.900  7.43  7.070  7.540  9.290    10
#     B 14.200 14.400 18.80 14.900 16.000 51.500    10
#     C  0.586  0.726  0.74  0.757  0.763  0.804    10

So going from mo_name("Staphylococcus aureus") to "Staphylococcus aureus" takes 0.0008 seconds - it doesn’t even start calculating if the result would be the same as the expected resulting value. That goes for all helper functions:

run_it <- microbenchmark(A = mo_species("aureus"),
                         B = mo_genus("Staphylococcus"),
                         C = mo_name("Staphylococcus aureus"),
                         D = mo_family("Staphylococcaceae"),
                         E = mo_order("Bacillales"),
                         F = mo_class("Bacilli"),
                         G = mo_phylum("Firmicutes"),
                         H = mo_kingdom("Bacteria"),
                         times = 10)
print(run_it, unit = "ms", signif = 3)
# Unit: milliseconds
#  expr   min    lq  mean median    uq   max neval
#     A 0.374 0.381 0.389  0.389 0.395 0.416    10
#     B 0.404 0.411 0.422  0.421 0.425 0.452    10
#     C 0.615 0.711 0.726  0.730 0.751 0.861    10
#     D 0.405 0.409 0.429  0.428 0.435 0.485    10
#     E 0.381 0.384 0.392  0.390 0.394 0.429    10
#     F 0.365 0.366 0.379  0.375 0.383 0.419    10
#     G 0.362 0.372 0.378  0.380 0.388 0.391    10
#     H 0.378 0.381 0.403  0.387 0.393 0.556    10

Of course, when running mo_phylum("Firmicutes") the function has zero knowledge about the actual microorganism, namely S. aureus. But since the result would be "Firmicutes" anyway, there is no point in calculating the result. And because this package ‘knows’ all phyla of all known bacteria (according to the Catalogue of Life), it can just return the initial value immediately.

Results in other languages

When the system language is non-English and supported by this AMR package, some functions will have a translated result. This almost does’t take extra time:

mo_name("CoNS", language = "en") # or just mo_name("CoNS") on an English system
# [1] "Coagulase-negative Staphylococcus (CoNS)"

mo_name("CoNS", language = "es") # or just mo_name("CoNS") on a Spanish system
# [1] "Staphylococcus coagulasa negativo (SCN)"

mo_name("CoNS", language = "nl") # or just mo_name("CoNS") on a Dutch system
# [1] "Coagulase-negatieve Staphylococcus (CNS)"

run_it <- microbenchmark(en = mo_name("CoNS", language = "en"),
                         de = mo_name("CoNS", language = "de"),
                         nl = mo_name("CoNS", language = "nl"),
                         es = mo_name("CoNS", language = "es"),
                         it = mo_name("CoNS", language = "it"),
                         fr = mo_name("CoNS", language = "fr"),
                         pt = mo_name("CoNS", language = "pt"),
                         times = 100)
print(run_it, unit = "ms", signif = 4)
# Unit: milliseconds
#  expr   min    lq  mean median    uq    max neval
#    en 24.76 26.92 35.44  27.70 31.93 143.10   100
#    de 26.46 28.18 33.90  29.51 30.51  64.85   100
#    nl 32.40 34.89 39.79  35.94 37.28  75.95   100
#    es 26.41 28.80 34.46  29.56 31.58  67.56   100
#    it 26.44 28.52 35.22  29.30 30.37 156.00   100
#    fr 26.24 28.09 34.78  29.52 31.23  65.88   100
#    pt 26.28 28.32 36.00  29.49 32.22  66.76   100

Currently supported are German, Dutch, Spanish, Italian, French and Portuguese.