One of the most important features of this package is the complete
microbial taxonomic database, supplied by the Catalogue of Life (CoL) and
the List of Prokaryotic names with
Standing in Nomenclature (LPSN). We created a function
as.mo()
that transforms any user input value to a valid
microbial ID by using intelligent rules combined with the microbial
taxonomy.
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.
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, its 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
times = 25)
print(S.aureus, unit = "ms", signif = 2)
# Unit: milliseconds
# expr min lq mean median uq max neval
# as.mo("sau") 12.0 13.0 17.0 14.0 15 53 25
# as.mo("stau") 51.0 59.0 74.0 71.0 90 97 25
# as.mo("STAU") 53.0 60.0 77.0 87.0 91 96 25
# as.mo("staaur") 11.0 13.0 16.0 14.0 15 48 25
# as.mo("STAAUR") 13.0 14.0 19.0 15.0 16 48 25
# as.mo("S. aureus") 28.0 31.0 48.0 59.0 63 70 25
# as.mo("S aureus") 28.0 29.0 42.0 33.0 58 83 25
# as.mo("Staphylococcus aureus") 3.9 4.1 6.1 4.4 5 43 25
# as.mo("Staphylococcus aureus (MRSA)") 250.0 260.0 270.0 270.0 270 390 25
# as.mo("Sthafilokkockus aaureuz") 160.0 190.0 200.0 200.0 220 240 25
# as.mo("MRSA") 13.0 13.0 19.0 14.0 15 50 25
# as.mo("VISA") 21.0 22.0 29.0 24.0 27 61 25
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 200 milliseconds, this is only 5 input values per second. It is clear that accepted taxonomic names are extremely fast, but some variations are up to 61 times slower to determine.
To improve performance, we implemented two important algorithms to save unnecessary calculations: repetitive results and already precalculated results.
Repetitive results are values that are present more than once in a
vector. Unique values will only be calculated once by
as.mo()
. So running
as.mo(c("E. coli", "E. coli"))
will check the value
"E. coli"
only once.
To prove this, we will use mo_name()
for testing - a
helper function that returns the full microbial name (genus, species and
possibly subspecies) which uses as.mo()
internally.
# start with the example_isolates data set
x <- example_isolates %>%
# take all MO codes from the 'mo' column
pull(mo) %>%
# and copy them a thousand times
rep(1000) %>%
# then scramble them
sample()
# what do these values look like? They are of class <mo>:
head(x)
# Class <mo>
# [1] B_ACNTB B_ESCHR_COLI B_STRPT_GRPC B_STPHY_HMNS B_STPHY_CONS
# [6] B_ESCHR_COLI
# as the example_isolates data set has 2,000 rows, we should have 2 million items
length(x)
# [1] 2000000
# and how many unique values do we have?
n_distinct(x)
# [1] 90
# now let's see:
run_it <- microbenchmark(mo_name(x),
times = 10)
print(run_it, unit = "ms", signif = 3)
# Unit: milliseconds
# expr min lq mean median uq max neval
# mo_name(x) 200 204 265 225 320 392 10
So getting official taxonomic names of 2,000,000 (!!) items consisting of 90 unique values only takes 0.225 seconds. That is 112 nanoseconds on average. You only lose time on your unique input values.
What about precalculated results? If the input is an already
precalculated result of a helper function such as
mo_name()
, it almost doesn’t take any time at all. In other
words, if you run mo_name()
on a valid taxonomic name, it
will return the results immediately (see ‘C’ below):
run_it <- microbenchmark(A = mo_name("STAAUR"),
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 8.35 8.84 9.10 9.01 9.32 10.20 10
# B 23.00 24.70 30.30 25.00 26.90 72.70 10
# C 2.05 2.07 2.44 2.41 2.83 3.05 10
So going from mo_name("Staphylococcus aureus")
to
"Staphylococcus aureus"
takes 0.0024 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 1.89 1.93 2.09 2.05 2.17 2.40 10
# B 1.89 1.93 2.08 2.00 2.19 2.63 10
# C 1.91 1.92 2.10 1.97 2.30 2.43 10
# D 1.90 1.94 2.21 2.02 2.53 2.88 10
# E 1.87 1.95 2.09 2.04 2.22 2.33 10
# F 1.84 1.91 1.97 1.92 2.04 2.14 10
# G 1.87 1.92 2.10 1.96 2.12 2.96 10
# H 1.90 1.96 2.12 2.06 2.21 2.47 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 contains all phyla of all known
bacteria, it can just return the initial value immediately.
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 (compare “en” from the table below
with the other languages):
CoNS <- as.mo("CoNS")
CoNS
# Class <mo>
# [1] B_STPHY_CONS
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(da = mo_name(CoNS, language = "da"),
de = mo_name(CoNS, language = "de"),
en = mo_name(CoNS, language = "en"),
es = mo_name(CoNS, language = "es"),
fr = mo_name(CoNS, language = "fr"),
it = mo_name(CoNS, language = "it"),
nl = mo_name(CoNS, language = "nl"),
pt = mo_name(CoNS, language = "pt"),
ru = mo_name(CoNS, language = "ru"),
sv = mo_name(CoNS, language = "sv"),
times = 100)
print(run_it, unit = "ms", signif = 4)
# Unit: milliseconds
# expr min lq mean median uq max neval
# da 2.133 2.304 3.442 2.494 2.816 46.020 100
# de 2.128 2.312 3.068 2.520 2.699 53.220 100
# en 1.014 1.115 1.262 1.227 1.362 2.424 100
# es 2.133 2.338 2.981 2.570 2.737 43.770 100
# fr 1.986 2.149 3.139 2.377 2.567 41.610 100
# it 2.072 2.268 2.911 2.468 2.656 44.560 100
# nl 2.115 2.286 2.962 2.521 2.723 43.240 100
# pt 2.055 2.205 2.912 2.520 2.687 39.520 100
# ru 1.998 2.210 2.866 2.474 2.631 39.820 100
# sv 2.022 2.187 2.759 2.357 2.536 38.560 100
Currently supported languages are Danish, Dutch, English, French, German, Italian, Portuguese, Russian, Spanish and Swedish.