Last updated on 2025-11-25 07:50:06 CET.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 2.1.7 | 7.43 | 65.97 | 73.40 | OK | |
| r-devel-linux-x86_64-debian-gcc | 2.1.7 | 5.39 | 46.93 | 52.32 | OK | |
| r-devel-linux-x86_64-fedora-clang | 2.1.7 | 17.00 | 95.63 | 112.63 | OK | |
| r-devel-linux-x86_64-fedora-gcc | 2.1.7 | 16.00 | 88.98 | 104.98 | ERROR | |
| r-devel-windows-x86_64 | 2.1.7 | 11.00 | 122.00 | 133.00 | OK | |
| r-patched-linux-x86_64 | 2.1.7 | 8.81 | 60.10 | 68.91 | OK | |
| r-release-linux-x86_64 | 2.1.7 | 7.94 | 59.56 | 67.50 | ERROR | |
| r-release-macos-arm64 | 2.1.7 | OK | ||||
| r-release-macos-x86_64 | 2.1.7 | 9.00 | 142.00 | 151.00 | OK | |
| r-release-windows-x86_64 | 2.1.7 | 11.00 | 118.00 | 129.00 | OK | |
| r-oldrel-macos-arm64 | 2.1.7 | OK | ||||
| r-oldrel-macos-x86_64 | 2.1.7 | 8.00 | 124.00 | 132.00 | OK | |
| r-oldrel-windows-x86_64 | 2.1.7 | 13.00 | 137.00 | 150.00 | ERROR |
Version: 2.1.7
Check: tests
Result: ERROR
Running ‘testthat.R’ [9s/167s]
Running the tests in ‘tests/testthat.R’ failed.
Complete output:
> # This file is part of the standard setup for testthat.
> # It is recommended that you do not modify it.
> #
> # Where should you do additional test configuration?
> # Learn more about the roles of various files in:
> # * https://r-pkgs.org/testing-design.html#sec-tests-files-overview
> # * https://testthat.r-lib.org/articles/special-files.html
>
> library(testthat)
> library(PubChemR)
>
> # Functions used globally in package tests (testthat) ----
> allSuccess <- function(object){
+ all(unlist(lapply(object$result, "[[", "success")))
+ }
>
> testRequest <- function(object, ...){
+ test_that(paste0("pulling via '", request_args(object, "namespace"), "' is succesfull"), {
+ expect_true(allSuccess(object))
+ })
+
+ test_that("prints output to the R Console", {
+ expect_output(print(object))
+ })
+ }
>
> # Set 'skipTests' FALSE to run test codes. This is set TRUE to skip
> # all tests on GitHub actions since some of PubChem requests were incomplete due to
> # timeout and/or API related issues. BUILD & CHECK actions on GitHub returns error
> # even if all tests were passed on local installations of R.
> skipTests <- FALSE
>
> if (!skipTests){
+ test_check("PubChemR")
+ }
The file has been saved to '/tmp/RtmpCor8cx/working_dir/Rtmptrgld3/aspirin.json'
The file has been saved to '/tmp/RtmpCor8cx/working_dir/Rtmptrgld3/aspirin.json'
The file has been saved to '/tmp/RtmpCor8cx/working_dir/Rtmptrgld3/aspirin.json'
The file has been saved to '/tmp/RtmpCor8cx/working_dir/Rtmptrgld3/aspirin.json'
The file has been saved to '/tmp/RtmpCor8cx/working_dir/Rtmptrgld3/aspirin.sdf'
Request failed [400]. Retrying in 3.4 seconds...
Request failed [400]. Retrying in 5.3 seconds...
Request failed [504]. Retrying in 2.5 seconds...
Saving _problems/test-get_sids-20.R
Saving _problems/test-get_sids-53.R
PubChem Substance Details (comment)
Same as: <a href="http://pubchem.ncbi.nlm.nih.gov/summary/summary.cgi?sid=7847177">D00109</a>
Is a reactant of enzyme EC: 3.1.1.55
PubChem Substance Details (comment)
Same as: <a href="http://pubchem.ncbi.nlm.nih.gov/summary/summary.cgi?sid=7847177">D00109</a>
Is a reactant of enzyme EC: 3.1.1.55
Saving _problems/test-get_synonyms-6.R
[ FAIL 3 | WARN 0 | SKIP 0 | PASS 158 ]
══ Failed tests ════════════════════════════════════════════════════════════════
── Failure ('test-get_sids.R:20:5'): pulling sids via 'name' is succesfull ─────
Expected `allSuccess(object)` to be TRUE.
Differences:
`actual`: FALSE
`expected`: TRUE
── Failure ('test-get_sids.R:53:3'): pulling sids for multiple identifiers with undefined input. ──
Expected `sids$result[[1]]$success` to be TRUE.
Differences:
`actual`: FALSE
`expected`: TRUE
── Failure ('test-get_synonyms.R:6:1'): pulling via 'name' is succesfull ───────
Expected `allSuccess(object)` to be TRUE.
Differences:
`actual`: FALSE
`expected`: TRUE
[ FAIL 3 | WARN 0 | SKIP 0 | PASS 158 ]
Error:
! Test failures.
Execution halted
Flavor: r-devel-linux-x86_64-fedora-gcc
Version: 2.1.7
Check: tests
Result: ERROR
Running ‘testthat.R’ [6s/56s]
Running the tests in ‘tests/testthat.R’ failed.
Complete output:
> # This file is part of the standard setup for testthat.
> # It is recommended that you do not modify it.
> #
> # Where should you do additional test configuration?
> # Learn more about the roles of various files in:
> # * https://r-pkgs.org/testing-design.html#sec-tests-files-overview
> # * https://testthat.r-lib.org/articles/special-files.html
>
> library(testthat)
> library(PubChemR)
>
> # Functions used globally in package tests (testthat) ----
> allSuccess <- function(object){
+ all(unlist(lapply(object$result, "[[", "success")))
+ }
>
> testRequest <- function(object, ...){
+ test_that(paste0("pulling via '", request_args(object, "namespace"), "' is succesfull"), {
+ expect_true(allSuccess(object))
+ })
+
+ test_that("prints output to the R Console", {
+ expect_output(print(object))
+ })
+ }
>
> # Set 'skipTests' FALSE to run test codes. This is set TRUE to skip
> # all tests on GitHub actions since some of PubChem requests were incomplete due to
> # timeout and/or API related issues. BUILD & CHECK actions on GitHub returns error
> # even if all tests were passed on local installations of R.
> skipTests <- FALSE
>
> if (!skipTests){
+ test_check("PubChemR")
+ }
The file has been saved to '/home/hornik/tmp/scratch/Rtmpyxuqqe/aspirin.json'
The file has been saved to '/home/hornik/tmp/scratch/Rtmpyxuqqe/aspirin.json'
The file has been saved to '/home/hornik/tmp/scratch/Rtmpyxuqqe/aspirin.json'
The file has been saved to '/home/hornik/tmp/scratch/Rtmpyxuqqe/aspirin.json'
The file has been saved to '/home/hornik/tmp/scratch/Rtmpyxuqqe/aspirin.sdf'
Error in value[[3L]](cond) :
Failed to retrieve sources for the specified domain: c(Code = "PUGREST.ServerBusy", Message = "Too many requests or server too busy")
Saving _problems/test-get_all_sources-9.R
Saving _problems/test-get_all_sources-10.R
Request failed [400]. Retrying in 1 seconds...
Request failed [400]. Retrying in 1 seconds...
PubChem Substance Details (comment)
Same as: <a href="http://pubchem.ncbi.nlm.nih.gov/summary/summary.cgi?sid=7847177">D00109</a>
Is a reactant of enzyme EC: 3.1.1.55
PubChem Substance Details (comment)
Same as: <a href="http://pubchem.ncbi.nlm.nih.gov/summary/summary.cgi?sid=7847177">D00109</a>
Is a reactant of enzyme EC: 3.1.1.55
[ FAIL 2 | WARN 0 | SKIP 0 | PASS 159 ]
══ Failed tests ════════════════════════════════════════════════════════════════
── Failure ('test-get_all_sources.R:9:3'): get all sources for 'substance' ─────
Expected `inherits(tmp, "try-error")` to be FALSE.
Differences:
`actual`: TRUE
`expected`: FALSE
── Failure ('test-get_all_sources.R:10:3'): get all sources for 'substance' ────
Expected `all(...)` to be TRUE.
Differences:
`actual`: FALSE
`expected`: TRUE
[ FAIL 2 | WARN 0 | SKIP 0 | PASS 159 ]
Error:
! Test failures.
Execution halted
Flavor: r-release-linux-x86_64
Version: 2.1.7
Check: tests
Result: ERROR
Running 'testthat.R' [102s]
Running the tests in 'tests/testthat.R' failed.
Complete output:
> # This file is part of the standard setup for testthat.
> # It is recommended that you do not modify it.
> #
> # Where should you do additional test configuration?
> # Learn more about the roles of various files in:
> # * https://r-pkgs.org/testing-design.html#sec-tests-files-overview
> # * https://testthat.r-lib.org/articles/special-files.html
>
> library(testthat)
> library(PubChemR)
>
> # Functions used globally in package tests (testthat) ----
> allSuccess <- function(object){
+ all(unlist(lapply(object$result, "[[", "success")))
+ }
>
> testRequest <- function(object, ...){
+ test_that(paste0("pulling via '", request_args(object, "namespace"), "' is succesfull"), {
+ expect_true(allSuccess(object))
+ })
+
+ test_that("prints output to the R Console", {
+ expect_output(print(object))
+ })
+ }
>
> # Set 'skipTests' FALSE to run test codes. This is set TRUE to skip
> # all tests on GitHub actions since some of PubChem requests were incomplete due to
> # timeout and/or API related issues. BUILD & CHECK actions on GitHub returns error
> # even if all tests were passed on local installations of R.
> skipTests <- FALSE
>
> if (!skipTests){
+ test_check("PubChemR")
+ }
The file has been saved to 'D:\temp\2025_11_24_01_50_00_16768\RtmpOOoSMB/aspirin.json'
The file has been saved to 'D:\temp\2025_11_24_01_50_00_16768\RtmpOOoSMB/aspirin.json'
The file has been saved to 'D:\temp\2025_11_24_01_50_00_16768\RtmpOOoSMB/aspirin.json'
The file has been saved to 'D:\temp\2025_11_24_01_50_00_16768\RtmpOOoSMB/aspirin.json'
The file has been saved to 'D:\temp\2025_11_24_01_50_00_16768\RtmpOOoSMB/aspirin.sdf'
Request failed [400]. Retrying in 3 seconds...
Request failed [400]. Retrying in 6.9 seconds...
Saving _problems/test-get_pug_view-28.R
PubChem Substance Details (comment)
Same as: <a href="http://pubchem.ncbi.nlm.nih.gov/summary/summary.cgi?sid=7847177">D00109</a>
Is a reactant of enzyme EC: 3.1.1.55
PubChem Substance Details (comment)
Same as: <a href="http://pubchem.ncbi.nlm.nih.gov/summary/summary.cgi?sid=7847177">D00109</a>
Is a reactant of enzyme EC: 3.1.1.55
[ FAIL 1 | WARN 0 | SKIP 0 | PASS 160 ]
══ Failed tests ════════════════════════════════════════════════════════════════
── Failure ('test-get_pug_view.R:28:3'): 'annotation' cannot be NULL: Default is 'data' ──
Expected `tmp` to be identical to `pview2`.
Differences:
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[7]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[7]]
- String"Acylpyrin"
+ String"o-Acetoxybenzoic acid"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[8]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[8]]
- String"o-Acetoxybenzoic acid"
+ String"Acylpyrin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[9]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[9]]
- String"Acenterine"
+ String"Ecotrin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[10]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[10]]
- String"Acetophen"
+ String"Salicylic acid acetate"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[11]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[11]]
- String"Ecotrin"
+ String"Acenterine"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[12]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[12]]
- String"Salicylic acid acetate"
+ String"Acetophen"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[13]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[13]]
- String"Acetosalin"
+ String"Polopiryna"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[14]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[14]]
- String"Polopiryna"
+ String"Acetosalin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[31]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[31]]
- String"Acetosalic acid"
+ String"Rheumintabletten"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[32]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[32]]
- String"Rheumintabletten"
+ String"Solprin acid"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[33]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[33]]
- String"Solprin acid"
+ String"2-acetyloxybenzoic acid"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[34]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[34]]
- String"2-acetyloxybenzoic acid"
+ String"Enterosarine"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[35]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[35]]
- String"Enterosarine"
+ String"Acetisal"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[36]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[36]]
- String"Acetisal"
+ String"Acetylsal"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[37]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[37]]
- String"Acetylsal"
+ String"Aspirine"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[38]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[38]]
- String"Aspirine"
+ String"Bialpirina"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[39]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[39]]
- String"Bialpirina"
+ String"Bialpirinia"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[40]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[40]]
- String"Bialpirinia"
+ String"Entericin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[41]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[41]]
- String"Entericin"
+ String"Enterophen"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[42]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[42]]
- String"Enterophen"
+ String"Globentyl"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[43]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[43]]
- String"Globentyl"
+ String"Salacetin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[44]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[44]]
- String"Salacetin"
+ String"Solpyron"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[45]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[45]]
- String"Solpyron"
+ String"Acesal"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[46]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[46]]
- String"Acesal"
+ String"Acisal"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[47]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[47]]
- String"Acisal"
+ String"Asagran"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[48]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[48]]
- String"Asagran"
+ String"Asteric"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[49]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[49]]
- String"Asteric"
+ String"Cemirit"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[50]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[50]]
- String"Caprin"
+ String"Duramax"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[51]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[51]]
- String"Cemirit"
+ String"Extren"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[52]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[52]]
- String"Duramax"
+ String"Globoid"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[53]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[53]]
- String"Extren"
+ String"Helicon"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[54]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[54]]
- String"Globoid"
+ String"Idragin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[55]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[55]]
- String"Helicon"
+ String"Levius"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[56]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[56]]
- String"Idragin"
+ String"Rhonal"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[57]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[57]]
- String"Levius"
+ String"Adiro"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[58]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[58]]
- String"Rhonal"
+ String"Aspro"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[59]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[59]]
- String"Adiro"
+ String"Novid"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[60]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[60]]
- String"Aspro"
+ String"Yasta"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[61]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[61]]
- String"Novid"
+ String"Acetosalic acid"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[62]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[62]]
- String"Yasta"
+ String"Benzoic acid, 2-(acetyloxy)-"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[63]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[63]]
- String"Benzoic acid, 2-(acetyloxy)-"
+ String"Acimetten"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[64]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[64]]
- String"Acimetten"
+ String"Delgesic"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[65]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[65]]
- String"Delgesic"
+ String"Entrophen"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[66]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[66]]
- String"Entrophen"
+ String"Acetilum acidulatum"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[67]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[67]]
- String"Acetilum acidulatum"
+ String"Acetilsalicilico"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[68]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[68]]
- String"Acetilsalicilico"
+ String"2-Carboxyphenyl acetate"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[69]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[69]]
- String"2-Carboxyphenyl acetate"
+ String"Dolean pH 8"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[70]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[70]]
- String"Dolean pH 8"
+ String"Contrheuma retard"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[71]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[71]]
- String"Contrheuma retard"
+ String"XAXA"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[72]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[72]]
- String"XAXA"
+ String"Acido acetilsalicilico"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[73]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[73]]
- String"Acido acetilsalicilico"
+ String"Acide acetylsalicylique"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[74]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[74]]
- String"Acide acetylsalicylique"
+ String"Bayer"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[75]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[75]]
- String"Bayer"
+ String"8-hour Bayer"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[76]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[76]]
- String"8-hour Bayer"
+ String"Asatard"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[77]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[77]]
- String"Asatard"
+ String"Durlaza"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[78]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[78]]
- String"Durlaza"
+ String"Ronal"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[79]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[79]]
- String"Ronal"
+ String"Rheumin tabletten"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[80]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[80]]
- String"Rheumin tabletten"
+ String"2-Acetoxybenzenecarboxylic acid"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[81]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[81]]
- String"2-Acetoxybenzenecarboxylic acid"
+ String"acetyl salicylate"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[82]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[82]]
- String"acetyl salicylate"
+ String"Acetylsalicylsaeure"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[83]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[83]]
- String"Acetylsalicylsaeure"
+ String"Azetylsalizylsaeure"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[84]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[84]]
- String"Azetylsalizylsaeure"
+ String"SP 189"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[85]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[85]]
- String"SP 189"
+ String"AC 5230"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[86]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[86]]
- String"AC 5230"
+ String"Acetylsalicyclic acid"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[87]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[87]]
- String"Acetylsalicyclic acid"
+ String"Acetylsalicylicum acidum"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[88]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[88]]
- String"Acetylsalicylicum acidum"
+ String"DTXSID5020108"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[89]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[89]]
- String"DTXSID5020108"
+ String"CHEBI:15365"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[96]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[96]]
- String"CHEBI:15365"
+ String"BAY1019036"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[97]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[97]]
- String"BAY1019036"
+ String"DTXCID50108"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[98]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[98]]
- String"DTXCID50108"
+ String"DUOCOVER COMPONENT ASPIRIN"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[99]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[99]]
- String"DUOCOVER COMPONENT ASPIRIN"
+ String"YOSPRALA COMPONENT ASPIRIN"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[100]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[100]]
- String"YOSPRALA COMPONENT ASPIRIN"
+ String"DUOPLAVIN COMPONENT ASPIRIN"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[101]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[101]]
- String"DUOPLAVIN COMPONENT ASPIRIN"
+ String"NSC406186"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[102]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[102]]
- String"NSC406186"
+ String"CLOPIDOGREL/ACETYLSALICYLIC ACID COMPONENT ASPIRIN"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[103]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[103]]
- String"CLOPIDOGREL/ACETYLSALICYLIC ACID COMPONENT ASPIRIN"
+ String"Acid, Acetylsalicylic"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[104]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[104]]
- String"Acid, Acetylsalicylic"
+ String"vetality"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[105]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[105]]
- String"vetality"
+ String"Ascurin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[106]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[106]]
- String"Ascurin"
+ String"Danamep"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[107]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[107]]
- String"Danamep"
+ String"Fasprin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[108]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[108]]
- String"Fasprin"
+ String"Gencardia"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[109]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[109]]
- String"Gencardia"
+ String"Medpurine"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[110]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[110]]
- String"Medpurine"
+ String"Paynocil"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[111]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[111]]
- String"Paynocil"
+ String"Enprin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[112]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[112]]
- String"Enprin"
+ String"Platet"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[113]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[113]]
- String"Platet"
+ String"Disprin direct"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[114]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[114]]
- String"Disprin direct"
+ String"Micropirin ec"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[115]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[115]]
- String"Micropirin ec"
+ String"Solves-aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[116]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[116]]
- String"Solves-aspirin"
+ String"Aramark Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[117]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[117]]
- String"Aramark Aspirin"
+ String"Aspirin Powder"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[118]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[118]]
- String"Aspirin Powder"
+ String"Aspirin Regimen"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[119]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[119]]
- String"Aspirin Regimen"
+ String"Canine Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[120]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[120]]
- String"Canine Aspirin"
+ String"Clopidogrel Kit"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[121]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[121]]
- String"Clopidogrel Kit"
+ String"Coated Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[122]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[122]]
- String"Coated Aspirin"
+ String"Enteric Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[123]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[123]]
- String"Enteric Aspirin"
+ String"Equate Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[124]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[124]]
- String"Equate Aspirin"
+ String"Leader Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[125]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[125]]
- String"Leader Aspirin"
+ String"Medique Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[126]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[126]]
- String"Medique Aspirin"
+ String"Rapidol Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[127]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[127]]
- String"Rapidol Aspirin"
+ String"Sunmark Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[128]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[128]]
- String"Sunmark Aspirin"
+ String"Topcare Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[129]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[129]]
- String"Topcare Aspirin"
+ String"Acetylsalic acid"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[130]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[130]]
- String"Acetylsalic acid"
+ String"Alka rapid"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[131]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[131]]
- String"Alka rapid"
+ String"Aspirin Bolus"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[132]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[132]]
- String"Aspirin Bolus"
+ String"Aspirin Nsaid"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[133]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[133]]
- String"Aspirin Nsaid"
+ String"Aspirin Packs"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[134]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[134]]
- String"Aspirin Packs"
+ String"AspirinLow Dose"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[135]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[135]]
- String"AspirinLow Dose"
+ String"Bayer Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[136]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[136]]
- String"Bayer Aspirin"
+ String"Disprin cv"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[137]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[137]]
- String"Disprin cv"
+ String"Pain Reliever"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[138]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[138]]
- String"Pain Reliever"
+ String"Rugby Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[139]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[139]]
- String"Rugby Aspirin"
+ String"Value Pharma"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[140]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[140]]
- String"Value Pharma"
+ String"Aspro clr"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[141]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[141]]
- String"Aspro clr"
+ String"Aspi-cor"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[142]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[142]]
- String"Aspi-cor"
+ String"Aspirin Chewable"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[143]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[143]]
- String"Aspirin Chewable"
+ String"Buffered Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[144]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[144]]
- String"Buffered Aspirin"
+ String"Chewable Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[145]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[145]]
- String"Chewable Aspirin"
+ String"Geritrex Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[146]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[146]]
- String"Geritrex Aspirin"
+ String"Plus Pharma"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[147]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[147]]
- String"Plus Pharma"
+ String"Regular Strength"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[148]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[148]]
- String"Regular Strength"
+ String"Thompson Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[149]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[149]]
- String"Thompson Aspirin"
+ String"McKesson Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[150]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[150]]
- String"McKesson Aspirin"
+ String"Anadin all night"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[151]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[151]]
- String"Anadin all night"
+ String"Aspir Low"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[152]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[152]]
- String"Aspir Low"
+ String"Equi-Prin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[153]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[153]]
- String"Equi-Prin"
+ String"Aspirin EC"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[154]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[154]]
- String"Aspirin EC"
+ String"Childrens Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[155]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[155]]
- String"Childrens Aspirin"
+ String"Unishield Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[156]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[156]]
- String"Unishield Aspirin"
+ String"Adult Low Dose"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[157]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[157]]
- String"Adult Low Dose"
+ String"Bayer Low Dose"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[158]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[158]]
- String"Bayer Low Dose"
+ String"Aspirin 5 Grain"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[159]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[159]]
- String"Aspirin 5 Grain"
+ String"Aspirin Low Dose"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[160]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[160]]
- String"Aspirin Low Dose"
+ String"Low Dose Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[161]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[161]]
- String"Low Dose Aspirin"
+ String"Bufferin Arthritis"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[162]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[162]]
- String"Bufferin Arthritis"
+ String"ULINE Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[163]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[163]]
- String"ULINE Aspirin"
+ String"CAREALL Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[164]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[164]]
- String"CAREALL Aspirin"
+ String"Aspica (Aspirin)"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[165]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[165]]
- String"Aspica (Aspirin)"
+ String"Aspirin 81mg"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[166]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[166]]
- String"Aspirin 81mg"
+ String"Dg Health Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[167]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[167]]
- String"Dg Health Aspirin"
+ String"Low Dose Miniprin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[168]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[168]]
- String"Low Dose Miniprin"
+ String"Angettes 75"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[169]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[169]]
- String"Angettes 75"
+ String"Medi-first Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[170]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[170]]
- String"Medi-first Aspirin"
+ String"aspirin pain relief"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[171]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[171]]
- String"aspirin pain relief"
+ String"Basic Care Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[172]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[172]]
- String"Basic Care Aspirin"
+ String"Good Sense Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[173]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[173]]
- String"Good Sense Aspirin"
+ String"Aspirin 325mg"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[174]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[174]]
- String"Aspirin 325mg"
+ String"Aspirin 81"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[175]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[175]]
- String"Aspirin 81"
+ String"Aspirin 81 mg"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[176]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[176]]
- String"Aspirin 81 mg"
+ String"Health Mart Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[177]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[177]]
- String"Health Mart Aspirin"
+ String"MBR Aspirin Powder"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[178]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[178]]
- String"MBR Aspirin Powder"
+ String"Pain Relief Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[179]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[179]]
- String"Pain Relief Aspirin"
+ String"Max strgh aspro clr"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[180]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[180]]
- String"Max strgh aspro clr"
+ String"AsCurin Fast Action"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[181]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[181]]
- String"AsCurin Fast Action"
+ String"Aspirin 325 mg"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[182]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[182]]
- String"Aspirin 325 mg"
+ String"Aspirin Pain reliver"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[183]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[183]]
- String"Aspirin Pain reliver"
+ String"Postmi 75"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[184]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[184]]
- String"Postmi 75"
+ String"RefChem:17"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[185]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[185]]
- String"RefChem:17"
+ String"Tri-buffered Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[186]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[186]]
- String"Tri-buffered Aspirin"
+ String"Aspirin 325"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[187]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[187]]
- String"Aspirin 325"
+ String"Aspirin 50 CT"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[188]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[188]]
- String"Aspirin 50 CT"
+ String"Aspirin Low Strength"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[189]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[189]]
- String"Aspirin Low Strength"
+ String"ASPIRN"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[190]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[190]]
- String"ASPIRN"
+ String"ASPRISOL"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[191]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[191]]
- String"ASPRISOL"
+ String"Crane Safety Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[192]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[192]]
- String"Crane Safety Aspirin"
+ String"Henry Schein Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[193]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[193]]
- String"Henry Schein Aspirin"
+ String"Nu-seals 75"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[194]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[194]]
- String"Nu-seals 75"
+ String"Travel Savvy Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[195]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[195]]
- String"Travel Savvy Aspirin"
+ String"VAZALORE"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[196]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[196]]
- String"VAZALORE"
+ String"Solves-aspirin Cherry"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[197]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[197]]
- String"Solves-aspirin Cherry"
+ String"Adult Aspirin Regimen"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[198]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[198]]
- String"Adult Aspirin Regimen"
+ String"Aspirin Bolus-240"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[199]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[199]]
- String"Aspirin Bolus-240"
+ String"Bayer Aspirin Regimen"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[200]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[200]]
- String"Bayer Aspirin Regimen"
+ String"Bayer Genuine Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[201]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[201]]
- String"Bayer Genuine Aspirin"
+ String"Direct Safety Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[202]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[202]]
- String"Direct Safety Aspirin"
+ String"Nu-seals cardio 75"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[203]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[203]]
- String"Nu-seals cardio 75"
+ String"Rapid Comfort Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[204]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[204]]
- String"Rapid Comfort Aspirin"
+ String"MEDIQUE ASPIRN"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[205]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[205]]
- String"MEDIQUE ASPIRN"
+ String"Platet 300"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[206]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[206]]
- String"Platet 300"
+ String"Postmi 300"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[207]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[207]]
- String"Postmi 300"
+ String"Nu-seals 300"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[208]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[208]]
- String"Nu-seals 300"
+ String"Nu-seals 600"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[209]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[209]]
- String"Nu-seals 600"
+ String"Adult Chewable Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[210]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[210]]
- String"Adult Chewable Aspirin"
+ String"Aspirin Enteric Coated"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[211]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[211]]
- String"Aspirin Enteric Coated"
+ String"Aspirin Extra Strength"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[212]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[212]]
- String"Aspirin Extra Strength"
+ String"Enteric Coated Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[213]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[213]]
- String"Enteric Coated Aspirin"
+ String"Extra Strength Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[214]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[214]]
- String"Extra Strength Aspirin"
+ String"ADVANCED ASPIRIN"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[215]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[215]]
- String"ADVANCED ASPIRIN"
+ String"VALUMEDS ASPIRIN"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[216]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[216]]
- String"VALUMEDS ASPIRIN"
+ String"Aspirin Delayed Release"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[217]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[217]]
- String"Aspirin Delayed Release"
+ String"Aspirin tablet 325mg"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[218]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[218]]
- String"Aspirin tablet 325mg"
+ String"Chewable Aspirin 81mg"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[219]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[219]]
- String"Chewable Aspirin 81mg"
+ String"Dye-Free Aspirin 81"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[220]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[220]]
- String"Dye-Free Aspirin 81"
+ String"Equate Aspirin Chewable"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[221]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[221]]
- String"Equate Aspirin Chewable"
+ String"Physicians Care Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[222]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[222]]
- String"Physicians Care Aspirin"
+ String"Adult Low Dose Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[223]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[223]]
- String"Adult Low Dose Aspirin"
+ String"Aspirin Adult Low Dose"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[224]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[224]]
- String"Aspirin Adult Low Dose"
+ String"Low dose aspirin 81mg"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[225]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[225]]
- String"Low dose aspirin 81mg"
+ String"Medique at Home Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[226]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[226]]
- String"Medique at Home Aspirin"
+ String"Aspirin 81mg Dye-Free"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[227]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[227]]
- String"Aspirin 81mg Dye-Free"
+ String"Aspirin Regular Strength"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[228]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[228]]
- String"Aspirin Regular Strength"
+ String"Ecotrin Regular Strength"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[229]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[229]]
- String"Ecotrin Regular Strength"
+ String"Leader Low Dose Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[230]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[230]]
- String"Leader Low Dose Aspirin"
+ String"Medi-First Plus Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[231]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[231]]
- String"Medi-First Plus Aspirin"
+ String"Medique Products Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[232]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[232]]
- String"Medique Products Aspirin"
+ String"Regular Strength Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[233]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[233]]
- String"Regular Strength Aspirin"
+ String"Circle K Aspirin 325"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[234]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[234]]
- String"Circle K Aspirin 325"
+ String"Pharbest Aspirin 325mg"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[235]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[235]]
- String"Pharbest Aspirin 325mg"
+ String"foster and thrive aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[236]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[236]]
- String"foster and thrive aspirin"
+ String"AquaSource Aspirin Powder"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[237]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[237]]
- String"AquaSource Aspirin Powder"
+ String"AspirinLow Dose Low Dose"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[238]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[238]]
- String"AspirinLow Dose Low Dose"
+ String"Value PharmaPain Reliever"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[239]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[239]]
- String"Value PharmaPain Reliever"
+ String"meijer LOW DOSE Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[240]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[240]]
- String"meijer LOW DOSE Aspirin"
+ String"Aspirin Chewable Low Dose"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[241]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[241]]
- String"Aspirin Chewable Low Dose"
+ String"Aspirin Liquid Concentrate"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[242]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[242]]
- String"Aspirin Liquid Concentrate"
+ String"Aspirin Low Dose Chewable"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[243]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[243]]
- String"Aspirin Low Dose Chewable"
+ String"BAYER 500 mg"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[244]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[244]]
- String"BAYER 500 mg"
+ String"Chewable Aspirin Low Dose"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[245]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[245]]
- String"Chewable Aspirin Low Dose"
+ String"Chewable Low Dose Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[246]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[246]]
- String"Chewable Low Dose Aspirin"
+ String"Chronic Pain/Fever Relief"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[247]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[247]]
- String"Chronic Pain/Fever Relief"
+ String"Low Dose Chewable Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[248]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[248]]
- String"Low Dose Chewable Aspirin"
+ String"Aspirin 81 Mg Low Dose"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[249]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[249]]
- String"Aspirin 81 Mg Low Dose"
+ String"aspirin chewable, low dose"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[250]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[250]]
- String"aspirin chewable, low dose"
+ String"CARDIASPIRIN PROTECT"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[251]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[251]]
- String"CARDIASPIRIN PROTECT"
+ String"NobleAid PAIN RELIEVER"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[252]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[252]]
- String"NobleAid PAIN RELIEVER"
+ String"Acetylsalicylic Acid Coated"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[253]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[253]]
- String"Acetylsalicylic Acid Coated"
+ String"Adult Low Strength Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[254]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[254]]
- String"Adult Low Strength Aspirin"
+ String"ASPIRIN 480"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[255]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[255]]
- String"ASPIRIN 480"
+ String"Up and Up Chewable Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[256]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[256]]
- String"Up and Up Chewable Aspirin"
+ String"ASPIRIN BOLUS-480"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[257]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[257]]
- String"ASPIRIN BOLUS-480"
+ String"Regular Strength Aspirin EC"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[258]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[258]]
- String"Regular Strength Aspirin EC"
+ String"Plus Pharma Nsaid 325 mg"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[259]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[259]]
- String"Plus Pharma Nsaid 325 mg"
+ String"Alka-Seltzer Original Flavor"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[260]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[260]]
- String"Alka-Seltzer Original Flavor"
+ String"Aspirin 81mg Enteric coated"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[261]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[261]]
- String"Aspirin 81mg Enteric coated"
+ String"Critical Care Aspirin To Go"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[262]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[262]]
- String"Critical Care Aspirin To Go"
+ String"ASPIRIN 325 MG EC"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[263]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[263]]
- String"ASPIRIN 325 MG EC"
+ String"HEB Effervescent Pain Relief"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[264]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[264]]
- String"HEB Effervescent Pain Relief"
+ String"Adult Low Dose Pain Reliever"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[265]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[265]]
- String"Adult Low Dose Pain Reliever"
+ String"Aspirin Enteric Safety Coated"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[266]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[266]]
- String"Aspirin Enteric Safety Coated"
+ String"Aspirin Enteric Safety-coated"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[267]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[267]]
- String"Aspirin Enteric Safety-coated"
+ String"Dr. Waynes Aspirin Low Dose"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[268]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[268]]
- String"Dr. Waynes Aspirin Low Dose"
+ String"Family Wellness Pain Reliever"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[269]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[269]]
- String"Family Wellness Pain Reliever"
+ String"Low Strength Chewable Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[270]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[270]]
- String"Low Strength Chewable Aspirin"
+ String"Pain Relief Aspirin Low Dose"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[271]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[271]]
- String"Pain Relief Aspirin Low Dose"
+ String"St. Joseph Low Dose Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[272]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[272]]
- String"St. Joseph Low Dose Aspirin"
+ String"Aspirin 81mg Adult Low Dose"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[273]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[273]]
- String"Aspirin 81mg Adult Low Dose"
+ String"BAYER Aspirin Extra Strength"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[274]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[274]]
- String"BAYER Aspirin Extra Strength"
+ String"Lil Drug Store Aspirin 325"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[275]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[275]]
- String"Lil Drug Store Aspirin 325"
+ String"Aspirin 81 mg Enteric Coated"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[276]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[276]]
- String"Aspirin 81 mg Enteric Coated"
+ String"Aspirin Low Strength, Enteric"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[277]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[277]]
- String"Aspirin Low Strength, Enteric"
+ String"Bayer Aspirin Regimen Chewable"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[278]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[278]]
- String"Bayer Aspirin Regimen Chewable"
+ String"Bayer Chewable-Aspirin Regimen"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[279]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[279]]
- String"Bayer Chewable-Aspirin Regimen"
+ String"Good Neighbor Pharmacy Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[280]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[280]]
- String"Good Neighbor Pharmacy Aspirin"
+ String"Rapidol Aspirin Display 2x25"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[281]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[281]]
- String"Rapidol Aspirin Display 2x25"
+ String"CVS Effervescent Pain Reliever"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[282]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[282]]
- String"CVS Effervescent Pain Reliever"
+ String"Adult Aspirin Regimen Low Dose"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[283]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[283]]
- String"Adult Aspirin Regimen Low Dose"
+ String"Aspirin Low Dose Safety Coated"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[284]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[284]]
- String"Aspirin Low Dose Safety Coated"
+ String"Meijer Effervescent Pain Relief"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[285]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[285]]
- String"Meijer Effervescent Pain Relief"
+ String"Chewable Aspirin Adult low dose"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[286]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[286]]
- String"Chewable Aspirin Adult low dose"
+ String"Aspen Aspirin Liquid Concentrate"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[287]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[287]]
- String"Aspen Aspirin Liquid Concentrate"
+ String"Aspirin Enteric Coated Low Dose"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[288]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[288]]
- String"Aspirin Enteric Coated Low Dose"
+ String"Aspirin Low Dose Enteric Coated"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[289]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[289]]
- String"Aspirin Low Dose Enteric Coated"
+ String"Buffered Aspirin For Small Dogs"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[290]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[290]]
- String"Buffered Aspirin For Small Dogs"
+ String"Chewable Adult Low Dose Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[291]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[291]]
- String"Chewable Adult Low Dose Aspirin"
+ String"MBR Aspirin Bolus 240 Grains"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[292]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[292]]
- String"MBR Aspirin Bolus 240 Grains"
+ String"TopCare Effervescent Pain Relief"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[293]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[293]]
- String"TopCare Effervescent Pain Relief"
+ String"Aspirin Low Dose Chewable Orange"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[294]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[294]]
- String"Aspirin Low Dose Chewable Orange"
+ String"Pharbest Regular Strength Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[295]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[295]]
- String"Pharbest Regular Strength Aspirin"
+ String"First Aid Direct Chewable Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[296]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[296]]
- String"First Aid Direct Chewable Aspirin"
+ String"Regular Strength Aspirin 325 mg"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[297]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[297]]
- String"Regular Strength Aspirin 325 mg"
+ String"Pain Reliever / Low Dose Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[298]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[298]]
- String"Pain Reliever / Low Dose Aspirin"
+ String"Drug Mart Effervescent Pain Relief"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[299]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[299]]
- String"Drug Mart Effervescent Pain Relief"
+ String"Equaline Effervescent Pain Reliever"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[300]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[300]]
- String"Equaline Effervescent Pain Reliever"
+ String"Sunmark Aspirin Adult Low Strength"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[301]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[301]]
- String"Sunmark Aspirin Adult Low Strength"
+ String"Value Pharma Aspirin Pain Reliever"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[302]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[302]]
- String"Value Pharma Aspirin Pain Reliever"
+ String"Good Sense Effervescent Pain Relief"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[303]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[303]]
- String"Good Sense Effervescent Pain Relief"
+ String"AquaPrime Aspirin Liquid Concentrate"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[304]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[304]]
- String"AquaPrime Aspirin Liquid Concentrate"
+ String"Bayer Aspirin Regimen enteric coated"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[305]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[305]]
- String"Bayer Aspirin Regimen enteric coated"
+ String"Green Guard Chewable Aspirin 81 mg"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[306]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[306]]
- String"Green Guard Chewable Aspirin 81 mg"
+ String"AquaSource Aspirin Liquid Concentrate"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[307]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[307]]
- String"AquaSource Aspirin Liquid Concentrate"
+ String"Bayer Aspirin Extra Strength Caplets"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[308]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[308]]
- String"Bayer Aspirin Extra Strength Caplets"
+ String"Buffered aspirin, effervescent tablet"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[309]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[309]]
- String"Buffered aspirin, effervescent tablet"
+ String"Winco Foods Effervescent Pain Relief"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[310]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[310]]
- String"Winco Foods Effervescent Pain Relief"
+ String"Bufferin Regular Strength Pain Relief"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[311]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[311]]
- String"Bufferin Regular Strength Pain Relief"
+ String"Adult Low Dose Aspirin Enteric Coated"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[312]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[312]]
- String"Adult Low Dose Aspirin Enteric Coated"
+ String"Adult Low Dose Enteric Coated Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[313]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[313]]
- String"Adult Low Dose Enteric Coated Aspirin"
+ String"Aspirin Enteric Coated Tablets 81 mg"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[314]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[314]]
- String"Aspirin Enteric Coated Tablets 81 mg"
+ String"BAYER Aspirin Original, CVP HEALTH"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[315]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[315]]
- String"BAYER Aspirin Original, CVP HEALTH"
+ String"Market Basket Effervescent Pain Relief"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[316]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[316]]
- String"Market Basket Effervescent Pain Relief"
+ String"St. Joseph Chewable Low Dose Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[317]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[317]]
- String"St. Joseph Chewable Low Dose Aspirin"
+ String"Aspirin 81 mg Delayed Release Tablets"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[318]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[318]]
- String"Aspirin 81 mg Delayed Release Tablets"
+ String"Low Dose Aspirin Enteric Safety Coated"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[319]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[319]]
- String"Low Dose Aspirin Enteric Safety Coated"
+ String"Low Dose Aspirin Enteric Safety-Coated"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[320]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[320]]
- String"Low Dose Aspirin Enteric Safety-Coated"
+ String"Safety Coated Aspirin 81 mg Low Dose"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[321]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[321]]
- String"Safety Coated Aspirin 81 mg Low Dose"
+ String"Acido Acetilsalicilico With enteric coat"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[322]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[322]]
- String"Acido Acetilsalicilico With enteric coat"
+ String"BAYER Aspirin Original, TRAVEL BASIX"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[323]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[323]]
- String"BAYER Aspirin Original, TRAVEL BASIX"
+ String"Enteric Coated Aspirin Regular Strength"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[324]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[324]]
- String"Enteric Coated Aspirin Regular Strength"
+ String"Low Dose Miniprin Enteric Safety Coated"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[325]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[325]]
- String"Low Dose Miniprin Enteric Safety Coated"
+ String"Pain Relief Aspirin Chewable, Low Dose"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[326]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[326]]
- String"Pain Relief Aspirin Chewable, Low Dose"
+ String"Quality Choice Effervescent Pain Relief"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[327]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[327]]
- String"Quality Choice Effervescent Pain Relief"
+ String"Regular Strength Enteric Coated Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[328]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[328]]
- String"Regular Strength Enteric Coated Aspirin"
+ String"Right Remedies Aspirin Low Dose 81 mg"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[329]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[329]]
- String"Right Remedies Aspirin Low Dose 81 mg"
+ String"Aspirin Delayed Release Tablets, 81 mg"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[330]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[330]]
- String"Aspirin Delayed Release Tablets, 81 mg"
+ String"Aspirin Enteric Coated, Regular Strength"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[331]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[331]]
- String"Aspirin Enteric Coated, Regular Strength"
+ String"Coraspirin 81 mg Enteric Coasted Tablet"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[332]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[332]]
- String"Coraspirin 81 mg Enteric Coasted Tablet"
+ String"FIRST CHOICE ASPIRIN BOLUS-480grs"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[333]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[333]]
- String"FIRST CHOICE ASPIRIN BOLUS-480grs"
+ String"Value Pharmapain Reliever Extra Strength"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[334]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[334]]
- String"Value Pharmapain Reliever Extra Strength"
+ String"Dollar General Effervescent Pain Reliever"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[335]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[335]]
- String"Dollar General Effervescent Pain Reliever"
+ String"Best Choice Effervescent Pain Reliever 36"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[336]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[336]]
- String"Best Choice Effervescent Pain Reliever 36"
+ String"Buffered Aspirin For Medium to Large Dogs"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[337]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[337]]
- String"Buffered Aspirin For Medium to Large Dogs"
+ String"Cardioaspirin 81 mg Enteric Coated Tablet"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[338]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[338]]
- String"Cardioaspirin 81 mg Enteric Coated Tablet"
+ String"Medique Products Chewable Low Dose Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[339]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[339]]
- String"Medique Products Chewable Low Dose Aspirin"
+ String"FIRST CHOICE dairy supply ASPIRIN BOLUS"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[340]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[340]]
- String"FIRST CHOICE dairy supply ASPIRIN BOLUS"
+ String"Aspirin 81mg Enteric coated Delayed Release"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[341]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[341]]
- String"Aspirin 81mg Enteric coated Delayed Release"
+ String"Adult Low Dose Aspirin Enteric Safety Coated"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[342]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[342]]
- String"Adult Low Dose Aspirin Enteric Safety Coated"
+ String"Publix Fast Relief Effervescent-Original Flavor"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[343]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[343]]
- String"Publix Fast Relief Effervescent-Original Flavor"
+ String"Safety Coated Aspirin 325 mg Regular Strength"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[344]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[344]]
- String"Safety Coated Aspirin 325 mg Regular Strength"
+ String"Coraspirina 81 mg Tabletas con cubierta enterica"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[345]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[345]]
- String"Coraspirina 81 mg Tabletas con cubierta enterica"
+ String"Gencare-Aspirin Low Dose Pain reliever (NSAID)"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[346]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[346]]
- String"Gencare-Aspirin Low Dose Pain reliever (NSAID)"
+ String"Cardiospirina 81 mg Tabletas con cubierta enterica"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[347]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[347]]
- String"Cardiospirina 81 mg Tabletas con cubierta enterica"
+ String"Natural Aspirin plus Tart Cherry Dietary Supplement"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[348]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[348]]
- String"Natural Aspirin plus Tart Cherry Dietary Supplement"
+ String"ASPIRIN LOW DOSE CHEWABLE ORANGE PAIN RELIEVER"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[349]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[349]]
- String"ASPIRIN LOW DOSE CHEWABLE ORANGE PAIN RELIEVER"
+ String"Bayer Aspirin Regimen Chewable Low Dose Aspirin Orange"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[350]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[350]]
- String"Bayer Aspirin Regimen Chewable Low Dose Aspirin Orange"
+ String"Aspirin 81mg Enteric coated Low Strength Aspirin Regimen"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[351]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[351]]
- String"Aspirin 81mg Enteric coated Low Strength Aspirin Regimen"
+ String"Natural Aspirin plus Immune Supporting Dietary Supplement"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[352]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[352]]
- String"Natural Aspirin plus Immune Supporting Dietary Supplement"
+ String"Natural Aspirin plus Lemon and Honey Dietary Supplement"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[353]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[353]]
- String"Natural Aspirin plus Lemon and Honey Dietary Supplement"
+ String"Bayer Chewable-Aspirin Regimen Low Dose Aspirin Cherry Flavored"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[354]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[354]]
- String"Bayer Chewable-Aspirin Regimen Low Dose Aspirin Cherry Flavored"
+ String"200-064-1"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[355]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[355]]
- String"200-064-1"
+ String"Caprin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[357]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[357]]
- String"Colfarit"
+ String"Easprin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[358]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[358]]
- String"Easprin"
+ String"Colfarit"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[378]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[378]]
- String"acetyl salicylic acid"
+ String"Acetylsalicylsaure"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[379]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[379]]
- String"Acetylsalicylsaure"
+ String"Solprin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[380]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[2]]$Information[[1]]$Value$StringWithMarkup[[380]]
- String"Solprin"
+ String"acetyl salicylic acid"
`actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup` is length 237
`expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup` is length 231
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[31]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[31]]
- String"Bayaspirin"
+ String"Orphengesic"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[32]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[32]]
- String"Nichiaspirin"
+ String"Aggrenox"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[33]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[33]]
- String"Orphengesic"
+ String"Invagesic"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[34]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[34]]
- String"Zenaspirin"
+ String"Lanorinal"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[35]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[35]]
- String"Aggrenox"
+ String"Pravigard"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[36]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[36]]
- String"Invagesic"
+ String"Pravigard PAC"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[37]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[37]]
- String"Lanorinal"
+ String"aspirin lysine"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[38]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[38]]
- String"Pravigard"
+ String"Aspirin calcium"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[39]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[39]]
- String"Pravigard PAC"
+ String"Darvon compound"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[40]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[40]]
- String"Salitison"
+ String"Aspirin sodium"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[41]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[41]]
- String"aspirin lysine"
+ String"Norgesic forte"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[42]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[42]]
- String"Aspirin calcium"
+ String"Invagesic Forte"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[43]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[43]]
- String"Darvon compound"
+ String"Acetol (VAN)"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[44]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[44]]
- String"Aspirin sodium"
+ String"Mepro-Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[45]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[45]]
- String"Norgesic forte"
+ String"Acetylsalisylsyre"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[46]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[46]]
- String"Invagesic Forte"
+ String"AspirinTest2"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[47]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[47]]
- String"Acetol (VAN)"
+ String"Mixture Name"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[48]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[48]]
- String"Mepro-Aspirin"
+ String"Aspirin anhydride"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[49]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[49]]
- String"Acetylsalisylsyre"
+ String"Aspirin potassium"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[50]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[50]]
- String"AspirinTest2"
+ String"Orphengesic Forte"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[51]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[51]]
- String"Mixture Name"
+ String"SK-65 Compound"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[52]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[52]]
- String"Aspirin anhydride"
+ String"Empirin with Codeine"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[53]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[53]]
- String"Aspirin potassium"
+ String"Q-Gesic"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[54]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[54]]
- String"Orphengesic Forte"
+ String"Aspirin CD3"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[55]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[55]]
- String"SK-65 Compound"
+ String"O-acetylsalicylsyre"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[56]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[56]]
- String"Empirin with Codeine"
+ String"Compound 65"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[57]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[57]]
- String"Q-Gesic"
+ String"acetylsalisylic acid"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[58]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[58]]
- String"Aspirin CD3"
+ String"Aspirin [BAN:JAN]"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[59]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[59]]
- String"O-acetylsalicylsyre"
+ String"component of Phensal"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[60]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[60]]
- String"Compound 65"
+ String"Dasin (Salt/Mix)"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[61]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[61]]
- String"acetylsalisylic acid"
+ String"Darvon compound-65"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[62]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[62]]
- String"Aspirin [BAN:JAN]"
+ String"Anacin (Salt/Mix)"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[63]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[63]]
- String"component of Phensal"
+ String"Anacin Maximum Strength"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[64]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[64]]
- String"Dasin (Salt/Mix)"
+ String"Axotal (Salt/Mix)"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[65]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[65]]
- String"Darvon compound-65"
+ String"ACYLPIRIN"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[66]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[66]]
- String"Anacin (Salt/Mix)"
+ String"Aspirin USP-26"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[67]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[67]]
- String"Anacin Maximum Strength"
+ String"AZDONE"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[68]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[68]]
- String"Axotal (Salt/Mix)"
+ String"CODOXY"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[69]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[69]]
- String"ACYLPIRIN"
+ String"ROXIPRIN"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[70]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[70]]
- String"Aspirin USP-26"
+ String"VICOPRIN"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[71]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[71]]
- String"AZDONE"
+ String"component of Percodan"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[72]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[72]]
- String"CODOXY"
+ String"Phensal (Salt/Mix)"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[73]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[73]]
- String"ROXIPRIN"
+ String"C9H8O4"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[74]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[74]]
- String"VICOPRIN"
+ String"BUTAL COMPOUND"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[75]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[75]]
- String"component of Percodan"
+ String"component of Percobarb"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[76]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[76]]
- String"Phensal (Salt/Mix)"
+ String"Fiorinal (Salt/Mix)"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[77]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[77]]
- String"C9H8O4"
+ String"Norgesic (Salt/Mix)"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[78]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[78]]
- String"BUTAL COMPOUND"
+ String"PERCODAN-DEMI"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[79]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[79]]
- String"component of Percobarb"
+ String"Synalgos (Salt/Mix)"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[80]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[80]]
- String"Fiorinal (Salt/Mix)"
+ String"TALWIN COMPOUND"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[81]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[81]]
- String"Norgesic (Salt/Mix)"
+ String"Vanquish (Salt/Mix)"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[82]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[82]]
- String"PERCODAN-DEMI"
+ String"Equagesic (Salt/Mix)"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[83]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[83]]
- String"Synalgos (Salt/Mix)"
+ String"O-accetylsalicylic acid"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[84]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[84]]
- String"TALWIN COMPOUND"
+ String"P-A-C Analgesic Tablets"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[85]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[85]]
- String"Vanquish (Salt/Mix)"
+ String"Propoxyphene Compound 65"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[86]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[86]]
- String"o-acetyloxybenzoic acid"
+ String"Robaxisal (Salt/Mix)"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[87]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[87]]
- String"Equagesic (Salt/Mix)"
+ String"o-acetyl-salicylic acid"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[88]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[88]]
- String"O-accetylsalicylic acid"
+ String"Acetylsalicylic acid-d3"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[89]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[89]]
- String"P-A-C Analgesic Tablets"
+ String"component of Ansemco 2"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[90]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[90]]
- String"Propoxyphene Compound 65"
+ String"Acetylsalicylic Acid-d4"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[91]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[91]]
- String"Robaxisal (Salt/Mix)"
+ String"ACMC-209kpz"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[92]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[92]]
- String"o-acetyl-salicylic acid"
+ String"ASPIRIN MAGNESIUM"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[93]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[93]]
- String"Acetylsalicylic acid-d3"
+ String"2-Acetoxy-Benzoic Acid"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[94]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[94]]
- String"component of Ansemco 2"
+ String"Benzoicacid, 2-(acetyloxy)-"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[95]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[95]]
- String"Acetylsalicylic Acid-d4"
+ String"DARVON W/ ASA"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[96]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[96]]
- String"ACMC-209kpz"
+ String"DARVON-N W/ ASA"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[97]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[97]]
- String"ASPIRIN MAGNESIUM"
+ String"BUTALBITAL COMPOUND"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[98]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[98]]
- String"2-Acetoxy-Benzoic Acid"
+ String"Propoxyphene Compound-65"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[99]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[99]]
- String"Benzoicacid, 2-(acetyloxy)-"
+ String"BSYNRYMUTXBXSQ-UHFFFAOYSA-N"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[100]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[100]]
- String"DARVON W/ ASA"
+ String"Synalgos-DC (Salt/Mix)"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[101]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[101]]
- String"DARVON-N W/ ASA"
+ String"D0GY5Z"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[102]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[102]]
- String"BUTALBITAL COMPOUND"
+ String"D0XB8R"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[103]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[103]]
- String"Propoxyphene Compound-65"
+ String"ZINC53"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[104]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[104]]
- String"BSYNRYMUTXBXSQ-UHFFFAOYSA-N"
+ String"A.S.A. and Codeine Compound"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[105]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[105]]
- String"Synalgos-DC (Salt/Mix)"
+ String"EXCEDRIN (MIGRAINE)"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[106]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[106]]
- String"D0GY5Z"
+ String"AC1L1D8U"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[107]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[107]]
- String"D0XB8R"
+ String"AC1Q1LA0"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[108]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[108]]
- String"ZINC53"
+ String"Aspirin USP (3080)"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[109]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[109]]
- String"A.S.A. and Codeine Compound"
+ String"CARISOPRODOL COMPOUND"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[110]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[110]]
- String"EXCEDRIN (MIGRAINE)"
+ String"A.S.A"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[111]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[111]]
- String"AC1L1D8U"
+ String"Aspirin USP (2080B)"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[112]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[112]]
- String"AC1Q1LA0"
+ String"OXYCODONE AND ASPIRIN"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[113]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[113]]
- String"Aspirin USP (3080)"
+ String"Acetylsalicylsaure (GERMAN)"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[114]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[114]]
- String"CARISOPRODOL COMPOUND"
+ String"2-(AcetYl-Oxy)Benzoic Acid"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[115]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[115]]
- String"A.S.A"
+ String"KSC269M6D"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[116]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[116]]
- String"Aspirin USP (2080B)"
+ String"MEPROBAMATE AND ASPIRIN"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[117]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[117]]
- String"OXYCODONE AND ASPIRIN"
+ String"acetylsalicylic acid (aspirin)"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[118]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[118]]
- String"Acetylsalicylsaure (GERMAN)"
+ String"CARISOPRODOL AND ASPIRIN"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[119]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[119]]
- String"2-(AcetYl-Oxy)Benzoic Acid"
+ String"component of A.S.A. Compound"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[120]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[120]]
- String"KSC269M6D"
+ String"SK-65 Compound (Salt/Mix)"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[121]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[121]]
- String"MEPROBAMATE AND ASPIRIN"
+ String"component of Midol (Salt/Mix)"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[122]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[122]]
- String"acetylsalicylic acid (aspirin)"
+ String"(non-d)Acetylsalicylic Acid-d3"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[123]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[123]]
- String"CARISOPRODOL AND ASPIRIN"
+ String"DEA No. 9804"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[124]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[124]]
- String"component of A.S.A. Compound"
+ String"METHOCARBAMOL AND ASPIRIN"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[125]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[125]]
- String"SK-65 Compound (Salt/Mix)"
+ String"FIORINAL W/CODEINE NO 3"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[126]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[126]]
- String"component of Midol (Salt/Mix)"
+ String"SOMA COMPOUND W/ CODEINE"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[127]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[127]]
- String"(non-d)Acetylsalicylic Acid-d3"
+ String"CTK1G9661"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[128]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[128]]
- String"DEA No. 9804"
+ String"ERK5-3L16"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[129]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[129]]
- String"METHOCARBAMOL AND ASPIRIN"
+ String"KS-00000ULP"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[130]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[130]]
- String"FIORINAL W/CODEINE NO 3"
+ String"CID2244"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[131]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[131]]
- String"SOMA COMPOUND W/ CODEINE"
+ String"Acide acetylsalicylique (FRENCH)"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[132]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[132]]
- String"CTK1G9661"
+ String"Arthritis Pain Formula Maximum Strength"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[133]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[133]]
- String"ERK5-3L16"
+ String"BCP21790"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[134]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[134]]
- String"KS-00000ULP"
+ String"C9-H8-O4"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[135]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[135]]
- String"CID2244"
+ String"CID:2244"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[136]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[136]]
- String"Acide acetylsalicylique (FRENCH)"
+ String"ACETYLSALICYLIC ACID, ASPIRIN"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[137]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[137]]
- String"Arthritis Pain Formula Maximum Strength"
+ String"Anacin Maximum Strength (Salt/Mix)"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[138]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[138]]
- String"BCP21790"
+ String"component of Ansemco 2 (Salt/Mix)"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[139]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[139]]
- String"C9-H8-O4"
+ String"ANW-31125"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[140]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[140]]
- String"CID:2244"
+ String"LS-143"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[141]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[141]]
- String"ACETYLSALICYLIC ACID, ASPIRIN"
+ String"NA2811"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[142]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[142]]
- String"Anacin Maximum Strength (Salt/Mix)"
+ String"NP2660"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[143]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[143]]
- String"component of Ansemco 2 (Salt/Mix)"
+ String"UN2811"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[144]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[144]]
- String"ANW-31125"
+ String"P-A-C Analgesic Tablets (Salt/Mix)"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[145]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[145]]
- String"LS-143"
+ String"BUTALBITAL ASPIRIN AND CAFFEINE"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[146]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[146]]
- String"NA2811"
+ String"BUTALBITAL, ASPIRIN & CAFFEINE"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[147]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[147]]
- String"NP2660"
+ String"CS-T-01103"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[148]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[148]]
- String"UN2811"
+ String"RTX-012224"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[149]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[149]]
- String"P-A-C Analgesic Tablets (Salt/Mix)"
+ String"BUTALBITAL, ASPIRIN AND CAFFEINE"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[150]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[150]]
- String"BUTALBITAL ASPIRIN AND CAFFEINE"
+ String"BUTALBITAL W/ ASPIRIN & CAFFEINE"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[151]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[151]]
- String"BUTALBITAL, ASPIRIN & CAFFEINE"
+ String"AJ-07843"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[152]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[152]]
- String"CS-T-01103"
+ String"AN-24382"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[153]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[153]]
- String"J2.300K"
+ String"ASPIRIN AND CAFFEINE W/ BUTALBITAL"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[154]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[154]]
- String"RTX-012224"
+ String"BC221833"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[155]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[155]]
- String"BUTALBITAL, ASPIRIN AND CAFFEINE"
+ String"H740"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[156]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[156]]
- String"BUTALBITAL W/ ASPIRIN & CAFFEINE"
+ String"SC-18564"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[157]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[157]]
- String"AJ-07843"
+ String"SC-61857"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[158]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[158]]
- String"AN-24382"
+ String"SID:53788943"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[159]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[159]]
- String"ASPIRIN AND CAFFEINE W/ BUTALBITAL"
+ String"A.S.A. and Codeine Compound (Salt/Mix)"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[160]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[160]]
- String"BC221833"
+ String"ACETAMINOPHEN, ASPIRIN AND CAFFEINE"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[161]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[161]]
- String"H740"
+ String"component of A.S.A. and Codeine Compound"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[162]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[162]]
- String"SC-18564"
+ String"AB1003266"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[163]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[163]]
- String"SC-61857"
+ String"Sine-Off Sinus Medicine Tablets-Aspirin Formula"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[164]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[164]]
- String"SID:53788943"
+ String"2-(2,2,2-trideuterioacetyl)oxybenzoic acid"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[165]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[165]]
- String"A.S.A. and Codeine Compound (Salt/Mix)"
+ String"A4013"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[166]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[166]]
- String"ACETAMINOPHEN, ASPIRIN AND CAFFEINE"
+ String"FT-0655181"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[167]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[167]]
- String"component of A.S.A. and Codeine Compound"
+ String"FT-0661360"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[168]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[168]]
- String"AB1003266"
+ String"OXYCODONE AND ASPIRIN (HALF-STRENGTH)"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[169]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[169]]
- String"Sine-Off Sinus Medicine Tablets-Aspirin Formula"
+ String"CODEINE, ASPIRIN, APAP FORMULA NO. 2"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[170]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[170]]
- String"2-(2,2,2-trideuterioacetyl)oxybenzoic acid"
+ String"CODEINE, ASPIRIN, APAP FORMULA NO. 3"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[171]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[171]]
- String"A4013"
+ String"CODEINE, ASPIRIN, APAP FORMULA NO. 4"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[172]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[172]]
- String"FT-0655181"
+ String"1777-EP2269989A1"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[173]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[173]]
- String"FT-0661360"
+ String"1777-EP2269990A1"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[174]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[174]]
- String"OXYCODONE AND ASPIRIN (HALF-STRENGTH)"
+ String"1777-EP2272825A2"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[175]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[175]]
- String"CODEINE, ASPIRIN, APAP FORMULA NO. 2"
+ String"1777-EP2275420A1"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[176]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[176]]
- String"CODEINE, ASPIRIN, APAP FORMULA NO. 3"
+ String"1777-EP2277865A1"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[177]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[177]]
- String"CODEINE, ASPIRIN, APAP FORMULA NO. 4"
+ String"1777-EP2280008A2"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[178]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[178]]
- String"1777-EP2269989A1"
+ String"1777-EP2281563A1"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[179]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[179]]
- String"1777-EP2269990A1"
+ String"1777-EP2281815A1"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[180]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[180]]
- String"1777-EP2272825A2"
+ String"1777-EP2281818A1"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[181]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[181]]
- String"1777-EP2275420A1"
+ String"1777-EP2292227A2"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[182]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[182]]
- String"1777-EP2277865A1"
+ String"1777-EP2295055A2"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[183]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[183]]
- String"1777-EP2280008A2"
+ String"1777-EP2298764A1"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[184]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[184]]
- String"1777-EP2281563A1"
+ String"1777-EP2298765A1"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[185]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[185]]
- String"1777-EP2281815A1"
+ String"1777-EP2298768A1"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[186]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[186]]
- String"1777-EP2281818A1"
+ String"1777-EP2298776A1"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[187]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[187]]
- String"1777-EP2292227A2"
+ String"1777-EP2305219A1"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[188]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[188]]
- String"1777-EP2295055A2"
+ String"1777-EP2305260A1"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[189]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[189]]
- String"1777-EP2298764A1"
+ String"1777-EP2305640A2"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[190]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[190]]
- String"1777-EP2298765A1"
+ String"1777-EP2305652A2"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[191]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[191]]
- String"1777-EP2298768A1"
+ String"1777-EP2308510A1"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[192]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[192]]
- String"1777-EP2298776A1"
+ String"1777-EP2311453A1"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[193]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[193]]
- String"1777-EP2305219A1"
+ String"1777-EP2314590A1"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[194]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[194]]
- String"1777-EP2305260A1"
+ String"1777-EP2314593A1"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[195]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[195]]
- String"1777-EP2305640A2"
+ String"1777-EP2316459A1"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[196]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[196]]
- String"1777-EP2305652A2"
+ String"1777-EP2371811A2"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[197]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[197]]
- String"1777-EP2308510A1"
+ String"6474-EP1441224A2"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[198]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[198]]
- String"1777-EP2311453A1"
+ String"6474-EP2272832A1"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[199]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[199]]
- String"1777-EP2314590A1"
+ String"6474-EP2275420A1"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[200]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[200]]
- String"1777-EP2314593A1"
+ String"6474-EP2277861A1"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[201]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[201]]
- String"1777-EP2316459A1"
+ String"6474-EP2277875A2"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[202]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[202]]
- String"1777-EP2371811A2"
+ String"6474-EP2298757A2"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[203]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[203]]
- String"6474-EP1441224A2"
+ String"6474-EP2298764A1"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[204]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[204]]
- String"6474-EP2272832A1"
+ String"6474-EP2298765A1"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[205]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[205]]
- String"6474-EP2275420A1"
+ String"6474-EP2314585A1"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[206]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[206]]
- String"6474-EP2277861A1"
+ String"24189-EP2295409A1"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[207]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[207]]
- String"6474-EP2277875A2"
+ String"24189-EP2314590A1"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[208]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[208]]
- String"6474-EP2298757A2"
+ String"PROPOXYPHENE HCL W/ ASPIRIN AND CAFFEINE"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[209]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[209]]
- String"6474-EP2298764A1"
+ String"170197-EP2275413A1"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[210]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[210]]
- String"6474-EP2298765A1"
+ String"170197-EP2287156A1"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[211]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[211]]
- String"6474-EP2314585A1"
+ String"186947-EP2270113A1"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[212]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[212]]
- String"24189-EP2295409A1"
+ String"186947-EP2272935A1"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[213]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[213]]
- String"24189-EP2314590A1"
+ String"CARISOPRODOL, ASPIRIN AND CODEINE PHOSPHATE"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[214]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[214]]
- String"PROPOXYPHENE HCL W/ ASPIRIN AND CAFFEINE"
+ String"D001241"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[215]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[215]]
- String"170197-EP2275413A1"
+ String"ORPHENADRINE CITRATE, ASPIRIN, AND CAFFEINE"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[216]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[216]]
- String"170197-EP2287156A1"
+ String"A1203548"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[217]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[217]]
- String"186947-EP2270113A1"
+ String"ACETAMINOPHEN, ASPIRIN, AND CODEINE PHOSPHATE"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[218]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[218]]
- String"186947-EP2272935A1"
+ String"I14-7505"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[219]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[219]]
- String"CARISOPRODOL, ASPIRIN AND CODEINE PHOSPHATE"
+ String"METHANONE,(2-CHLORO-3-PYRIDINYL)CYCLOBUTYL-"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[220]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[220]]
- String"D001241"
+ String"BUTALBITAL, ASPIRIN, CAFFEINE, AND CODEINE PHOSPHATE"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[221]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[221]]
- String"ORPHENADRINE CITRATE, ASPIRIN, AND CAFFEINE"
+ String"O-Acetylsalicylic acid =98.0% (by GC, titration analysis)"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[222]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[222]]
- String"A1203548"
+ String"2-Acetoxybenzoic acid; O-Acetylsalicylic acid; ASA; Aspirin"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[223]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[223]]
- String"ACETAMINOPHEN, ASPIRIN, AND CODEINE PHOSPHATE"
+ String"98201-60-6"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[224]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[224]]
- String"I14-7505"
+ String"Acetylsalicylic Acid for Peak Identification CRS (Y0001460)"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[225]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[225]]
- String"METHANONE,(2-CHLORO-3-PYRIDINYL)CYCLOBUTYL-"
+ String"921943-73-9"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[226]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[226]]
- String"BUTALBITAL, ASPIRIN, CAFFEINE, AND CODEINE PHOSPHATE"
+ String"Acetylsalicylic acid, 99%, an irreversible COX1 and COX2 inhibitor - 100G 100g"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[227]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[227]]
- String"O-Acetylsalicylic acid =98.0% (by GC, titration analysis)"
+ String"156865-15-5"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[228]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[228]]
- String"2-Acetoxybenzoic acid; O-Acetylsalicylic acid; ASA; Aspirin"
+ String"2-Acetoxybenzoic Acid; 2-(Acetyloxy)benzoic Acid; Acylpyrin; Angettes; Aspro; Aspirin; ASA; Acetylsalicylic Acid; Benzoic acid, 2-(acetyloxy)-; Rhodine (7CI); Salicylic acid acetate (8CI); 2-(Acetyloxy)benzoic acid; 2-Acetoxybenzoic acid; 2-Carboxyphenyl acetate; A.S.A. Empirin; AC 5230; Acenterine; Acesal; Acesan; Acetard; Aceticyl; Acetilum acidulatum; Acetisal; Acetol; Acetonyl; Acetophen; Acetosal; Acetosalic acid; Acetosalin; Acetylin; Acetylsal; Acetylsalicylic acid; Acetyonyl; Acetysal; Acidum acetylsalicylicum; Acimetten; Acisal; Adiro; Albyl E; Asaflow; Asagran; Asatard; Ascoden 30; Ascolong; Ascriptin; Aspalon; Aspergum; Aspirdrops; Aspirin Protect 100; Aspirin Protect 300; Aspirin-Direkt; Aspirina 03; Aspro Clear; Aspropharm; Asteric; Astrix; Bayer; Benaspir; Bialpirina; Bialpirinia; Caprin; Cardioaspirina; Claradin; Colfarit; Colsprin; Contrheuma Retard; Coricidin; Coricidin "
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[229]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[229]]
- String"98201-60-6"
+ String"97781-16-3"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[230]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[230]]
- String"Acetylsalicylic Acid for Peak Identification CRS (Y0001460)"
+ String"99512-66-0"
actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[231]] vs expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[231]]
- String"921943-73-9"
+ String"Aspirin (NOTE: It is especially important not to use aspirin during the last three months of pregnancy, unless specifically directed to do so by a physician because it may cause problems in the unborn child or complications during delivery.)"
`actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[232]]` is a character vector ('Acetylsalicylic acid, 99%, an irreversible COX1 and COX2 inhibitor - 100G 100g')
`expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[232]]` is absent
`actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[233]]` is a character vector ('156865-15-5')
`expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[233]]` is absent
`actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[234]]` is a character vector ('2-Acetoxybenzoic Acid; 2-(Acetyloxy)benzoic Acid; Acylpyrin; Angettes; Aspro; Aspirin; ASA; Acetylsalicylic Acid; Benzoic acid, 2-(acetyloxy)-; Rhodine (7CI); Salicylic acid acetate (8CI); 2-(Acetyloxy)benzoic acid; 2-Acetoxybenzoic acid; 2-Carboxyphenyl acetate; A.S.A. Empirin; AC 5230; Acenterine; Acesal; Acesan; Acetard; Aceticyl; Acetilum acidulatum; Acetisal; Acetol; Acetonyl; Acetophen; Acetosal; Acetosalic acid; Acetosalin; Acetylin; Acetylsal; Acetylsalicylic acid; Acetyonyl; Acetysal; Acidum acetylsalicylicum; Acimetten; Acisal; Adiro; Albyl E; Asaflow; Asagran; Asatard; Ascoden 30; Ascolong; Ascriptin; Aspalon; Aspergum; Aspirdrops; Aspirin Protect 100; Aspirin Protect 300; Aspirin-Direkt; Aspirina 03; Aspro Clear; Aspropharm; Asteric; Astrix; Bayer; Benaspir; Bialpirina; Bialpirinia; Caprin; Cardioaspirina; Claradin; Colfarit; Colsprin; Contrheuma Retard; Coricidin; Coricidin ')
`expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[234]]` is absent
`actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[235]]` is a character vector ('97781-16-3')
`expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[235]]` is absent
`actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[236]]` is a character vector ('99512-66-0')
`expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[236]]` is absent
`actual$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[237]]` is a character vector ('Aspirin (NOTE: It is especially important not to use aspirin during the last three months of pregnancy, unless specifically directed to do so by a physician because it may cause problems in the unborn child or complications during delivery.)')
`expected$result$Record$Section[[3]]$Section[[5]]$Section[[3]]$Information[[1]]$Value$StringWithMarkup[[237]]` is absent
actual$result$Record$Section[[3]]$Section[[7]]$Information[[1]]$Value$DateISO8601 vs expected$result$Record$Section[[3]]$Section[[7]]$Information[[1]]$Value$DateISO8601
- "2025-11-22"
+ "2025-11-15"
actual$result$Record$Section[[4]]$Section[[4]]$Section[[1]]$Section[[2]]$Information[[2]]$Reference vs expected$result$Record$Section[[4]]$Section[[4]]$Section[[1]]$Section[[2]]$Information[[2]]$Reference
- "S104 | UKVETMED | UK Veterinary Medicines Directorate's List | DOI:10.5281/zenodo.7802119"
+ "S72 | NTUPHTW | Pharmaceutically Active Substances from National Taiwan University | DOI:10.5281/zenodo.3955664"
actual$result$Record$Section[[4]]$Section[[4]]$Section[[1]]$Section[[2]]$Information[[2]]$ExtendedReference[[1]]$Citation vs expected$result$Record$Section[[4]]$Section[[4]]$Section[[1]]$Section[[2]]$Information[[2]]$ExtendedReference[[1]]$Citation
- "S104 | UKVETMED | UK Veterinary Medicines Directorate's List | DOI:10.5281/zenodo.7802119"
+ "S72 | NTUPHTW | Pharmaceutically Active Substances from National Taiwan University | DOI:10.5281/zenodo.3955664"
actual$result$Record$Section[[4]]$Section[[4]]$Section[[1]]$Section[[2]]$Information[[2]]$ExtendedReference[[1]]$Matched$PCLID vs expected$result$Record$Section[[4]]$Section[[4]]$Section[[1]]$Section[[2]]$Information[[2]]$ExtendedReference[[1]]$Matched$PCLID
- 900163608.0
+ 906297468.0
actual$result$Record$Section[[4]]$Section[[4]]$Section[[1]]$Section[[2]]$Information[[2]]$ExtendedReference[[1]]$Matched$Citation vs expected$result$Record$Section[[4]]$Section[[4]]$Section[[1]]$Section[[2]]$Information[[2]]$ExtendedReference[[1]]$Matched$Citation
- "S104 | UKVETMED | UK Veterinary Medicines Directorate's List | DOI:10.5281/zenodo.7802119"
+ "S72 | NTUPHTW | Pharmaceutically Active Substances from National Taiwan University | DOI:10.5281/zenodo.3955664"
actual$result$Record$Section[[4]]$Section[[4]]$Section[[1]]$Section[[2]]$Information[[2]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[4]]$Section[[4]]$Section[[1]]$Section[[2]]$Information[[2]]$Value$StringWithMarkup[[1]]
- String"Pharmaceuticals -> UK Veterinary Medicines Directorate List"
+ String"Pharmaceuticals -> Animal Drugs -> Approved in Taiwan"
actual$result$Record$Section[[4]]$Section[[4]]$Section[[1]]$Section[[2]]$Information[[3]]$Reference vs expected$result$Record$Section[[4]]$Section[[4]]$Section[[1]]$Section[[2]]$Information[[3]]$Reference
- "S72 | NTUPHTW | Pharmaceutically Active Substances from National Taiwan University | DOI:10.5281/zenodo.3955664"
+ "S104 | UKVETMED | UK Veterinary Medicines Directorate's List | DOI:10.5281/zenodo.7802119"
actual$result$Record$Section[[4]]$Section[[4]]$Section[[1]]$Section[[2]]$Information[[3]]$ExtendedReference[[1]]$Citation vs expected$result$Record$Section[[4]]$Section[[4]]$Section[[1]]$Section[[2]]$Information[[3]]$ExtendedReference[[1]]$Citation
- "S72 | NTUPHTW | Pharmaceutically Active Substances from National Taiwan University | DOI:10.5281/zenodo.3955664"
+ "S104 | UKVETMED | UK Veterinary Medicines Directorate's List | DOI:10.5281/zenodo.7802119"
actual$result$Record$Section[[4]]$Section[[4]]$Section[[1]]$Section[[2]]$Information[[3]]$ExtendedReference[[1]]$Matched$PCLID vs expected$result$Record$Section[[4]]$Section[[4]]$Section[[1]]$Section[[2]]$Information[[3]]$ExtendedReference[[1]]$Matched$PCLID
- 906297468.0
+ 900163608.0
actual$result$Record$Section[[4]]$Section[[4]]$Section[[1]]$Section[[2]]$Information[[3]]$ExtendedReference[[1]]$Matched$Citation vs expected$result$Record$Section[[4]]$Section[[4]]$Section[[1]]$Section[[2]]$Information[[3]]$ExtendedReference[[1]]$Matched$Citation
- "S72 | NTUPHTW | Pharmaceutically Active Substances from National Taiwan University | DOI:10.5281/zenodo.3955664"
+ "S104 | UKVETMED | UK Veterinary Medicines Directorate's List | DOI:10.5281/zenodo.7802119"
actual$result$Record$Section[[4]]$Section[[4]]$Section[[1]]$Section[[2]]$Information[[3]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[4]]$Section[[4]]$Section[[1]]$Section[[2]]$Information[[3]]$Value$StringWithMarkup[[1]]
- String"Pharmaceuticals -> Animal Drugs -> Approved in Taiwan"
+ String"Pharmaceuticals -> UK Veterinary Medicines Directorate List"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information` is length 449
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information` is length 448
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[11]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[11]]$Value$StringWithMarkup[[1]]
- String"11.194600"
+ String"11.1946"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[12]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[12]]$Name
- "Precursor Adduct"
+ "Top 5 Peaks"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[12]]$Value$StringWithMarkup` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[12]]$Value$StringWithMarkup` is length 5
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[12]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[12]]$Value$StringWithMarkup[[1]]
- String"[M+H]+"
+ String"149.02348 999"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[12]]$Value$StringWithMarkup[[2]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[12]]$Value$StringWithMarkup[[2]]` is a character vector ('163.03931 624')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[12]]$Value$StringWithMarkup[[3]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[12]]$Value$StringWithMarkup[[3]]` is a character vector ('121.02859 162')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[12]]$Value$StringWithMarkup[[4]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[12]]$Value$StringWithMarkup[[4]]` is a character vector ('163.07509 128')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[12]]$Value$StringWithMarkup[[5]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[12]]$Value$StringWithMarkup[[5]]` is a character vector ('181.12311 101')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[13]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[13]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[13]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[13]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[13]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[13]]$Name
- "Top 5 Peaks"
+ "SPLASH"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[13]]$Value$StringWithMarkup` is length 5
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[13]]$Value$StringWithMarkup` is length 1
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[13]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[13]]$Value$StringWithMarkup[[1]]
- String"149.02348 999"
+ String"splash10-01ot-1900000000-26847a6b8a260937a527"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[13]]$Value$StringWithMarkup[[2]]` is a character vector ('163.03931 624')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[13]]$Value$StringWithMarkup[[2]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[13]]$Value$StringWithMarkup[[3]]` is a character vector ('121.02859 162')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[13]]$Value$StringWithMarkup[[3]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[13]]$Value$StringWithMarkup[[4]]` is a character vector ('163.07509 128')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[13]]$Value$StringWithMarkup[[4]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[13]]$Value$StringWithMarkup[[5]]` is a character vector ('181.12311 101')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[13]]$Value$StringWithMarkup[[5]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[13]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[13]]$URL` is a character vector ('https://massbank.eu/MassBank/search?splash=splash10-01ot-1900000000-26847a6b8a260937a527')
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[14]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[14]]$Name
- "SPLASH"
+ "Thumbnail"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[14]]$URL vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[14]]$URL
- "https://massbank.eu/MassBank/search?splash=splash10-01ot-1900000000-26847a6b8a260937a527"
+ "https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=149.02348:999,163.03931:624,121.02859:162,163.07509:128,181.12311:101"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[14]]$Value` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[14]]$Value` is length 2
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[14]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[14]]$Value)
- "StringWithMarkup"
+ "ExternalDataURL"
+ "MimeType"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[14]]$Value$StringWithMarkup` is a list
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[14]]$Value$StringWithMarkup` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[14]]$Value$ExternalDataURL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[14]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=149.02348:999,163.03931:624,121.02859:162,163.07509:128,181.12311:101')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[14]]$Value$MimeType` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[14]]$Value$MimeType` is a character vector ('image/svg')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[15]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[15]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[15]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[15]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[15]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[15]]$Name
- "Thumbnail"
+ "License"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[15]]$URL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=149.02348:999,163.03931:624,121.02859:162,163.07509:128,181.12311:101')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[15]]$URL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[15]]$Value` is length 2
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[15]]$Value` is length 1
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[15]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[15]]$Value)
- "ExternalDataURL"
- "MimeType"
+ "StringWithMarkup"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[15]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=149.02348:999,163.03931:624,121.02859:162,163.07509:128,181.12311:101')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[15]]$Value$ExternalDataURL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[15]]$Value$MimeType` is a character vector ('image/svg')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[15]]$Value$MimeType` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[15]]$Value$StringWithMarkup` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[15]]$Value$StringWithMarkup` is a list
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[16]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[16]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[16]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[16]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[16]]$ReferenceNumber vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[16]]$ReferenceNumber
- 88.0
+ 89.0
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[16]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[16]]$Name
- "License"
+ "Accession ID"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[16]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[16]]$Value$StringWithMarkup[[1]]
- String"CC BY"
+ String"MSBNK-BGC_Munich-RP011211"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[16]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[16]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-BGC_Munich-RP011211')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[17]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[17]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[17]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[17]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[17]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[17]]$Name
- "Accession ID"
+ "Authors"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[17]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-BGC_Munich-RP011211')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[17]]$URL` is absent
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[17]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[17]]$Value$StringWithMarkup[[1]]
- String"MSBNK-BGC_Munich-RP011211"
+ String"BGC, Helmholtz Zentrum Muenchen"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[18]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[18]]$Name
- "Authors"
+ "Instrument"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[18]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[18]]$Value$StringWithMarkup[[1]]
- String"BGC, Helmholtz Zentrum Muenchen"
+ String"maXis plus UHR-ToF-MS, Bruker Daltonics"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[19]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[19]]$Name
- "Instrument"
+ "Instrument Type"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[19]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[19]]$Value$StringWithMarkup[[1]]
- String"maXis plus UHR-ToF-MS, Bruker Daltonics"
+ String"LC-ESI-QTOF"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[20]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[20]]$Name
- "Instrument Type"
+ "MS Level"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[20]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[20]]$Value$StringWithMarkup[[1]]
- String"LC-ESI-QTOF"
+ String"MS2"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[21]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[21]]$Name
- "MS Level"
+ "Ionization Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[21]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[21]]$Value$StringWithMarkup[[1]]
- String"MS2"
+ String"NEGATIVE"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[22]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[22]]$Name
- "Ionization Mode"
+ "Ionization"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[22]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[22]]$Value$StringWithMarkup[[1]]
- String"NEGATIVE"
+ String"ESI"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[23]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[23]]$Name
- "Ionization"
+ "Collision Energy"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[23]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[23]]$Value$StringWithMarkup[[1]]
- String"ESI"
+ String"10"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[24]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[24]]$Name
- "Collision Energy"
+ "Fragmentation Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[24]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[24]]$Value$StringWithMarkup[[1]]
- String"10"
+ String"CID"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[25]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[25]]$Name
- "Fragmentation Mode"
+ "Column Name"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[25]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[25]]$Value$StringWithMarkup[[1]]
- String"CID"
+ String"BEH C18 1.7um, 2.1x100mm, Waters"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[26]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[26]]$Name
- "Column Name"
+ "Retention Time"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[26]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[26]]$Value$StringWithMarkup[[1]]
- String"BEH C18 1.7um, 2.1x100mm, Waters"
+ String"8.412 min"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[27]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[27]]$Name
- "Retention Time"
+ "Precursor m/z"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[27]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[27]]$Value$StringWithMarkup[[1]]
- String"8.412 min"
+ String"179.035"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[28]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[28]]$Name
- "Precursor m/z"
+ "Precursor Adduct"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[28]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[28]]$Value$StringWithMarkup[[1]]
- String"179.035"
+ String"[M-H]-"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[29]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[29]]$Name
- "Precursor Adduct"
+ "Top 5 Peaks"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[29]]$Value$StringWithMarkup` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[29]]$Value$StringWithMarkup` is length 2
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[29]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[29]]$Value$StringWithMarkup[[1]]
- String"[M-H]-"
+ String"110.0243 999"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[29]]$Value$StringWithMarkup[[2]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[29]]$Value$StringWithMarkup[[2]]` is a character vector ('113.0349 874')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[30]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[30]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[30]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[30]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[30]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[30]]$Name
- "Top 5 Peaks"
+ "SPLASH"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[30]]$Value$StringWithMarkup` is length 2
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[30]]$Value$StringWithMarkup` is length 1
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[30]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[30]]$Value$StringWithMarkup[[1]]
- String"110.0243 999"
+ String"splash10-03di-0900000000-1565edcf7851b501f5cf"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[30]]$Value$StringWithMarkup[[2]]` is a character vector ('113.0349 874')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[30]]$Value$StringWithMarkup[[2]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[30]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[30]]$URL` is a character vector ('https://massbank.eu/MassBank/search?splash=splash10-03di-0900000000-1565edcf7851b501f5cf')
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[31]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[31]]$Name
- "SPLASH"
+ "Thumbnail"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[31]]$URL vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[31]]$URL
- "https://massbank.eu/MassBank/search?splash=splash10-03di-0900000000-1565edcf7851b501f5cf"
+ "https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=110.0243:999,113.0349:874,"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[31]]$Value` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[31]]$Value` is length 2
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[31]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[31]]$Value)
- "StringWithMarkup"
+ "ExternalDataURL"
+ "MimeType"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[31]]$Value$StringWithMarkup` is a list
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[31]]$Value$StringWithMarkup` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[31]]$Value$ExternalDataURL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[31]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=110.0243:999,113.0349:874,')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[31]]$Value$MimeType` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[31]]$Value$MimeType` is a character vector ('image/svg')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[32]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[32]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[32]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[32]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[32]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[32]]$Name
- "Thumbnail"
+ "License"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[32]]$URL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=110.0243:999,113.0349:874,')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[32]]$URL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[32]]$Value` is length 2
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[32]]$Value` is length 1
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[32]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[32]]$Value)
- "ExternalDataURL"
- "MimeType"
+ "StringWithMarkup"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[32]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=110.0243:999,113.0349:874,')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[32]]$Value$ExternalDataURL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[32]]$Value$MimeType` is a character vector ('image/svg')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[32]]$Value$MimeType` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[32]]$Value$StringWithMarkup` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[32]]$Value$StringWithMarkup` is a list
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[33]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[33]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[33]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[33]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[33]]$ReferenceNumber vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[33]]$ReferenceNumber
- 89.0
+ 90.0
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[33]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[33]]$Name
- "License"
+ "Accession ID"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[33]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[33]]$Value$StringWithMarkup[[1]]
- String"CC BY"
+ String"MSBNK-Eawag-EQ357801"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[33]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[33]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Eawag-EQ357801')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[34]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[34]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[34]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[34]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[34]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[34]]$Name
- "Accession ID"
+ "Authors"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[34]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Eawag-EQ357801')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[34]]$URL` is absent
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[34]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[34]]$Value$StringWithMarkup[[1]]
- String"MSBNK-Eawag-EQ357801"
+ String"Stravs M, Schymanski E, Singer H, Department of Environmental Chemistry, Eawag and Thomaidis N, University of Athens"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[35]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[35]]$Name
- "Authors"
+ "Instrument"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[35]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[35]]$Value$StringWithMarkup[[1]]
- String"Stravs M, Schymanski E, Singer H, Department of Environmental Chemistry, Eawag and Thomaidis N, University of Athens"
+ String"Q Exactive Plus Orbitrap Thermo Scientific"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[36]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[36]]$Name
- "Instrument"
+ "Instrument Type"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[36]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[36]]$Value$StringWithMarkup[[1]]
- String"Q Exactive Plus Orbitrap Thermo Scientific"
+ String"LC-ESI-QFT"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[37]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[37]]$Name
- "Instrument Type"
+ "MS Level"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[37]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[37]]$Value$StringWithMarkup[[1]]
- String"LC-ESI-QFT"
+ String"MS2"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[38]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[38]]$Name
- "MS Level"
+ "Ionization Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[38]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[38]]$Value$StringWithMarkup[[1]]
- String"MS2"
+ String"POSITIVE"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[39]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[39]]$Name
- "Ionization Mode"
+ "Ionization"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[39]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[39]]$Value$StringWithMarkup[[1]]
- String"POSITIVE"
+ String"ESI"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[40]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[40]]$Name
- "Ionization"
+ "Collision Energy"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[40]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[40]]$Value$StringWithMarkup[[1]]
- String"ESI"
+ String"15 (nominal)"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[41]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[41]]$Name
- "Collision Energy"
+ "Fragmentation Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[41]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[41]]$Value$StringWithMarkup[[1]]
- String"15 (nominal)"
+ String"HCD"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[42]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[42]]$Name
- "Fragmentation Mode"
+ "Column Name"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[42]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[42]]$Value$StringWithMarkup[[1]]
- String"HCD"
+ String"XBridge C18 3.5um, 2.1x50mm, Waters"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[43]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[43]]$Name
- "Column Name"
+ "Retention Time"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[43]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[43]]$Value$StringWithMarkup[[1]]
- String"XBridge C18 3.5um, 2.1x50mm, Waters"
+ String"20.3 min"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[44]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[44]]$Name
- "Retention Time"
+ "Precursor m/z"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[44]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[44]]$Value$StringWithMarkup[[1]]
- String"20.3 min"
+ String"181.0495"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[45]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[45]]$Name
- "Precursor m/z"
+ "Precursor Adduct"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[45]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[45]]$Value$StringWithMarkup[[1]]
- String"181.0495"
+ String"[M+H]+"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[46]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[46]]$Name
- "Precursor Adduct"
+ "Top 5 Peaks"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[46]]$Value$StringWithMarkup` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[46]]$Value$StringWithMarkup` is length 5
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[46]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[46]]$Value$StringWithMarkup[[1]]
- String"[M+H]+"
+ String"149.0231 999"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[46]]$Value$StringWithMarkup[[2]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[46]]$Value$StringWithMarkup[[2]]` is a character vector ('163.0386 637')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[46]]$Value$StringWithMarkup[[3]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[46]]$Value$StringWithMarkup[[3]]` is a character vector ('181.0493 6')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[46]]$Value$StringWithMarkup[[4]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[46]]$Value$StringWithMarkup[[4]]` is a character vector ('167.0337 2')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[46]]$Value$StringWithMarkup[[5]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[46]]$Value$StringWithMarkup[[5]]` is a character vector ('65.0385 2')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[47]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[47]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[47]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[47]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[47]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[47]]$Name
- "Top 5 Peaks"
+ "SPLASH"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[47]]$Value$StringWithMarkup` is length 5
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[47]]$Value$StringWithMarkup` is length 1
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[47]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[47]]$Value$StringWithMarkup[[1]]
- String"149.0231 999"
+ String"splash10-01ot-0900000000-1256ca04e4244fbc4a64"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[47]]$Value$StringWithMarkup[[2]]` is a character vector ('163.0386 637')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[47]]$Value$StringWithMarkup[[2]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[47]]$Value$StringWithMarkup[[3]]` is a character vector ('181.0493 6')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[47]]$Value$StringWithMarkup[[3]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[47]]$Value$StringWithMarkup[[4]]` is a character vector ('167.0337 2')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[47]]$Value$StringWithMarkup[[4]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[47]]$Value$StringWithMarkup[[5]]` is a character vector ('65.0385 2')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[47]]$Value$StringWithMarkup[[5]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[47]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[47]]$URL` is a character vector ('https://massbank.eu/MassBank/search?splash=splash10-01ot-0900000000-1256ca04e4244fbc4a64')
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[48]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[48]]$Name
- "SPLASH"
+ "Thumbnail"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[48]]$URL vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[48]]$URL
- "https://massbank.eu/MassBank/search?splash=splash10-01ot-0900000000-1256ca04e4244fbc4a64"
+ "https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=149.0231:999,163.0386:637,181.0493:6,167.0337:2,65.0385:2"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[48]]$Value` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[48]]$Value` is length 2
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[48]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[48]]$Value)
- "StringWithMarkup"
+ "ExternalDataURL"
+ "MimeType"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[48]]$Value$StringWithMarkup` is a list
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[48]]$Value$StringWithMarkup` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[48]]$Value$ExternalDataURL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[48]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=149.0231:999,163.0386:637,181.0493:6,167.0337:2,65.0385:2')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[48]]$Value$MimeType` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[48]]$Value$MimeType` is a character vector ('image/svg')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[49]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[49]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[49]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[49]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[49]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[49]]$Name
- "Thumbnail"
+ "License"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[49]]$URL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=149.0231:999,163.0386:637,181.0493:6,167.0337:2,65.0385:2')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[49]]$URL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[49]]$Value` is length 2
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[49]]$Value` is length 1
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[49]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[49]]$Value)
- "ExternalDataURL"
- "MimeType"
+ "StringWithMarkup"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[49]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=149.0231:999,163.0386:637,181.0493:6,167.0337:2,65.0385:2')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[49]]$Value$ExternalDataURL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[49]]$Value$MimeType` is a character vector ('image/svg')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[49]]$Value$MimeType` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[49]]$Value$StringWithMarkup` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[49]]$Value$StringWithMarkup` is a list
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[50]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[50]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[50]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[50]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[50]]$ReferenceNumber vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[50]]$ReferenceNumber
- 90.0
+ 91.0
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[50]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[50]]$Name
- "License"
+ "Accession ID"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[50]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[50]]$Value$StringWithMarkup[[1]]
- String"CC BY"
+ String"MSBNK-Eawag-EQ357802"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[50]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[50]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Eawag-EQ357802')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[51]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[51]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[51]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[51]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[51]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[51]]$Name
- "Accession ID"
+ "Authors"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[51]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Eawag-EQ357802')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[51]]$URL` is absent
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[51]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[51]]$Value$StringWithMarkup[[1]]
- String"MSBNK-Eawag-EQ357802"
+ String"Stravs M, Schymanski E, Singer H, Department of Environmental Chemistry, Eawag and Thomaidis N, University of Athens"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[52]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[52]]$Name
- "Authors"
+ "Instrument"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[52]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[52]]$Value$StringWithMarkup[[1]]
- String"Stravs M, Schymanski E, Singer H, Department of Environmental Chemistry, Eawag and Thomaidis N, University of Athens"
+ String"Q Exactive Plus Orbitrap Thermo Scientific"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[53]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[53]]$Name
- "Instrument"
+ "Instrument Type"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[53]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[53]]$Value$StringWithMarkup[[1]]
- String"Q Exactive Plus Orbitrap Thermo Scientific"
+ String"LC-ESI-QFT"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[54]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[54]]$Name
- "Instrument Type"
+ "MS Level"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[54]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[54]]$Value$StringWithMarkup[[1]]
- String"LC-ESI-QFT"
+ String"MS2"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[55]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[55]]$Name
- "MS Level"
+ "Ionization Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[55]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[55]]$Value$StringWithMarkup[[1]]
- String"MS2"
+ String"POSITIVE"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[56]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[56]]$Name
- "Ionization Mode"
+ "Ionization"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[56]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[56]]$Value$StringWithMarkup[[1]]
- String"POSITIVE"
+ String"ESI"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[57]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[57]]$Name
- "Ionization"
+ "Collision Energy"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[57]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[57]]$Value$StringWithMarkup[[1]]
- String"ESI"
+ String"30 (nominal)"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[58]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[58]]$Name
- "Collision Energy"
+ "Fragmentation Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[58]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[58]]$Value$StringWithMarkup[[1]]
- String"30 (nominal)"
+ String"HCD"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[59]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[59]]$Name
- "Fragmentation Mode"
+ "Column Name"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[59]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[59]]$Value$StringWithMarkup[[1]]
- String"HCD"
+ String"XBridge C18 3.5um, 2.1x50mm, Waters"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[60]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[60]]$Name
- "Column Name"
+ "Retention Time"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[60]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[60]]$Value$StringWithMarkup[[1]]
- String"XBridge C18 3.5um, 2.1x50mm, Waters"
+ String"20.3 min"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[61]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[61]]$Name
- "Retention Time"
+ "Precursor m/z"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[61]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[61]]$Value$StringWithMarkup[[1]]
- String"20.3 min"
+ String"181.0495"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[62]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[62]]$Name
- "Precursor m/z"
+ "Precursor Adduct"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[62]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[62]]$Value$StringWithMarkup[[1]]
- String"181.0495"
+ String"[M+H]+"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[63]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[63]]$Name
- "Precursor Adduct"
+ "Top 5 Peaks"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[63]]$Value$StringWithMarkup` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[63]]$Value$StringWithMarkup` is length 5
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[63]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[63]]$Value$StringWithMarkup[[1]]
- String"[M+H]+"
+ String"149.0231 999"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[63]]$Value$StringWithMarkup[[2]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[63]]$Value$StringWithMarkup[[2]]` is a character vector ('163.0386 632')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[63]]$Value$StringWithMarkup[[3]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[63]]$Value$StringWithMarkup[[3]]` is a character vector ('181.0493 4')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[63]]$Value$StringWithMarkup[[4]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[63]]$Value$StringWithMarkup[[4]]` is a character vector ('133.0282 3')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[63]]$Value$StringWithMarkup[[5]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[63]]$Value$StringWithMarkup[[5]]` is a character vector ('167.0336 2')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[64]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[64]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[64]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[64]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[64]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[64]]$Name
- "Top 5 Peaks"
+ "SPLASH"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[64]]$Value$StringWithMarkup` is length 5
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[64]]$Value$StringWithMarkup` is length 1
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[64]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[64]]$Value$StringWithMarkup[[1]]
- String"149.0231 999"
+ String"splash10-01ot-0900000000-2cae7e19320bfa1a03a0"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[64]]$Value$StringWithMarkup[[2]]` is a character vector ('163.0386 632')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[64]]$Value$StringWithMarkup[[2]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[64]]$Value$StringWithMarkup[[3]]` is a character vector ('181.0493 4')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[64]]$Value$StringWithMarkup[[3]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[64]]$Value$StringWithMarkup[[4]]` is a character vector ('133.0282 3')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[64]]$Value$StringWithMarkup[[4]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[64]]$Value$StringWithMarkup[[5]]` is a character vector ('167.0336 2')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[64]]$Value$StringWithMarkup[[5]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[64]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[64]]$URL` is a character vector ('https://massbank.eu/MassBank/search?splash=splash10-01ot-0900000000-2cae7e19320bfa1a03a0')
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[65]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[65]]$Name
- "SPLASH"
+ "Thumbnail"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[65]]$URL vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[65]]$URL
- "https://massbank.eu/MassBank/search?splash=splash10-01ot-0900000000-2cae7e19320bfa1a03a0"
+ "https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=149.0231:999,163.0386:632,181.0493:4,133.0282:3,167.0336:2"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[65]]$Value` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[65]]$Value` is length 2
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[65]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[65]]$Value)
- "StringWithMarkup"
+ "ExternalDataURL"
+ "MimeType"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[65]]$Value$StringWithMarkup` is a list
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[65]]$Value$StringWithMarkup` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[65]]$Value$ExternalDataURL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[65]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=149.0231:999,163.0386:632,181.0493:4,133.0282:3,167.0336:2')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[65]]$Value$MimeType` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[65]]$Value$MimeType` is a character vector ('image/svg')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[66]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[66]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[66]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[66]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[66]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[66]]$Name
- "Thumbnail"
+ "License"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[66]]$URL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=149.0231:999,163.0386:632,181.0493:4,133.0282:3,167.0336:2')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[66]]$URL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[66]]$Value` is length 2
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[66]]$Value` is length 1
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[66]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[66]]$Value)
- "ExternalDataURL"
- "MimeType"
+ "StringWithMarkup"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[66]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=149.0231:999,163.0386:632,181.0493:4,133.0282:3,167.0336:2')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[66]]$Value$ExternalDataURL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[66]]$Value$MimeType` is a character vector ('image/svg')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[66]]$Value$MimeType` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[66]]$Value$StringWithMarkup` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[66]]$Value$StringWithMarkup` is a list
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[67]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[67]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[67]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[67]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[67]]$ReferenceNumber vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[67]]$ReferenceNumber
- 91.0
+ 92.0
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[67]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[67]]$Name
- "License"
+ "Accession ID"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[67]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[67]]$Value$StringWithMarkup[[1]]
- String"CC BY"
+ String"MSBNK-Eawag-EQ357803"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[67]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[67]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Eawag-EQ357803')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[68]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[68]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[68]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[68]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[68]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[68]]$Name
- "Accession ID"
+ "Authors"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[68]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Eawag-EQ357803')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[68]]$URL` is absent
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[68]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[68]]$Value$StringWithMarkup[[1]]
- String"MSBNK-Eawag-EQ357803"
+ String"Stravs M, Schymanski E, Singer H, Department of Environmental Chemistry, Eawag and Thomaidis N, University of Athens"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[69]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[69]]$Name
- "Authors"
+ "Instrument"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[69]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[69]]$Value$StringWithMarkup[[1]]
- String"Stravs M, Schymanski E, Singer H, Department of Environmental Chemistry, Eawag and Thomaidis N, University of Athens"
+ String"Q Exactive Plus Orbitrap Thermo Scientific"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[70]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[70]]$Name
- "Instrument"
+ "Instrument Type"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[70]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[70]]$Value$StringWithMarkup[[1]]
- String"Q Exactive Plus Orbitrap Thermo Scientific"
+ String"LC-ESI-QFT"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[71]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[71]]$Name
- "Instrument Type"
+ "MS Level"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[71]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[71]]$Value$StringWithMarkup[[1]]
- String"LC-ESI-QFT"
+ String"MS2"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[72]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[72]]$Name
- "MS Level"
+ "Ionization Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[72]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[72]]$Value$StringWithMarkup[[1]]
- String"MS2"
+ String"POSITIVE"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[73]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[73]]$Name
- "Ionization Mode"
+ "Ionization"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[73]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[73]]$Value$StringWithMarkup[[1]]
- String"POSITIVE"
+ String"ESI"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[74]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[74]]$Name
- "Ionization"
+ "Collision Energy"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[74]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[74]]$Value$StringWithMarkup[[1]]
- String"ESI"
+ String"45 (nominal)"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[75]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[75]]$Name
- "Collision Energy"
+ "Fragmentation Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[75]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[75]]$Value$StringWithMarkup[[1]]
- String"45 (nominal)"
+ String"HCD"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[76]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[76]]$Name
- "Fragmentation Mode"
+ "Column Name"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[76]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[76]]$Value$StringWithMarkup[[1]]
- String"HCD"
+ String"XBridge C18 3.5um, 2.1x50mm, Waters"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[77]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[77]]$Name
- "Column Name"
+ "Retention Time"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[77]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[77]]$Value$StringWithMarkup[[1]]
- String"XBridge C18 3.5um, 2.1x50mm, Waters"
+ String"20.3 min"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[78]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[78]]$Name
- "Retention Time"
+ "Precursor m/z"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[78]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[78]]$Value$StringWithMarkup[[1]]
- String"20.3 min"
+ String"181.0495"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[79]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[79]]$Name
- "Precursor m/z"
+ "Precursor Adduct"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[79]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[79]]$Value$StringWithMarkup[[1]]
- String"181.0495"
+ String"[M+H]+"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[80]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[80]]$Name
- "Precursor Adduct"
+ "Top 5 Peaks"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[80]]$Value$StringWithMarkup` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[80]]$Value$StringWithMarkup` is length 5
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[80]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[80]]$Value$StringWithMarkup[[1]]
- String"[M+H]+"
+ String"149.0231 999"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[80]]$Value$StringWithMarkup[[2]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[80]]$Value$StringWithMarkup[[2]]` is a character vector ('163.0386 634')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[80]]$Value$StringWithMarkup[[3]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[80]]$Value$StringWithMarkup[[3]]` is a character vector ('121.0282 49')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[80]]$Value$StringWithMarkup[[4]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[80]]$Value$StringWithMarkup[[4]]` is a character vector ('133.0282 46')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[80]]$Value$StringWithMarkup[[5]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[80]]$Value$StringWithMarkup[[5]]` is a character vector ('135.0438 39')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[81]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[81]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[81]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[81]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[81]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[81]]$Name
- "Top 5 Peaks"
+ "SPLASH"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[81]]$Value$StringWithMarkup` is length 5
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[81]]$Value$StringWithMarkup` is length 1
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[81]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[81]]$Value$StringWithMarkup[[1]]
- String"149.0231 999"
+ String"splash10-01ot-0900000000-42f69c49b256900b7524"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[81]]$Value$StringWithMarkup[[2]]` is a character vector ('163.0386 634')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[81]]$Value$StringWithMarkup[[2]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[81]]$Value$StringWithMarkup[[3]]` is a character vector ('121.0282 49')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[81]]$Value$StringWithMarkup[[3]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[81]]$Value$StringWithMarkup[[4]]` is a character vector ('133.0282 46')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[81]]$Value$StringWithMarkup[[4]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[81]]$Value$StringWithMarkup[[5]]` is a character vector ('135.0438 39')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[81]]$Value$StringWithMarkup[[5]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[81]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[81]]$URL` is a character vector ('https://massbank.eu/MassBank/search?splash=splash10-01ot-0900000000-42f69c49b256900b7524')
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[82]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[82]]$Name
- "SPLASH"
+ "Thumbnail"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[82]]$URL vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[82]]$URL
- "https://massbank.eu/MassBank/search?splash=splash10-01ot-0900000000-42f69c49b256900b7524"
+ "https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=149.0231:999,163.0386:634,121.0282:49,133.0282:46,135.0438:39"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[82]]$Value` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[82]]$Value` is length 2
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[82]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[82]]$Value)
- "StringWithMarkup"
+ "ExternalDataURL"
+ "MimeType"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[82]]$Value$StringWithMarkup` is a list
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[82]]$Value$StringWithMarkup` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[82]]$Value$ExternalDataURL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[82]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=149.0231:999,163.0386:634,121.0282:49,133.0282:46,135.0438:39')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[82]]$Value$MimeType` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[82]]$Value$MimeType` is a character vector ('image/svg')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[83]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[83]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[83]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[83]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[83]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[83]]$Name
- "Thumbnail"
+ "License"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[83]]$URL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=149.0231:999,163.0386:634,121.0282:49,133.0282:46,135.0438:39')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[83]]$URL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[83]]$Value` is length 2
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[83]]$Value` is length 1
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[83]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[83]]$Value)
- "ExternalDataURL"
- "MimeType"
+ "StringWithMarkup"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[83]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=149.0231:999,163.0386:634,121.0282:49,133.0282:46,135.0438:39')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[83]]$Value$ExternalDataURL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[83]]$Value$MimeType` is a character vector ('image/svg')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[83]]$Value$MimeType` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[83]]$Value$StringWithMarkup` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[83]]$Value$StringWithMarkup` is a list
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[84]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[84]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[84]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[84]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[84]]$ReferenceNumber vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[84]]$ReferenceNumber
- 92.0
+ 93.0
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[84]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[84]]$Name
- "License"
+ "Accession ID"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[84]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[84]]$Value$StringWithMarkup[[1]]
- String"CC BY"
+ String"MSBNK-Eawag-EQ357804"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[84]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[84]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Eawag-EQ357804')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[85]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[85]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[85]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[85]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[85]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[85]]$Name
- "Accession ID"
+ "Authors"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[85]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Eawag-EQ357804')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[85]]$URL` is absent
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[85]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[85]]$Value$StringWithMarkup[[1]]
- String"MSBNK-Eawag-EQ357804"
+ String"Stravs M, Schymanski E, Singer H, Department of Environmental Chemistry, Eawag and Thomaidis N, University of Athens"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[86]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[86]]$Name
- "Authors"
+ "Instrument"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[86]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[86]]$Value$StringWithMarkup[[1]]
- String"Stravs M, Schymanski E, Singer H, Department of Environmental Chemistry, Eawag and Thomaidis N, University of Athens"
+ String"Q Exactive Plus Orbitrap Thermo Scientific"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[87]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[87]]$Name
- "Instrument"
+ "Instrument Type"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[87]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[87]]$Value$StringWithMarkup[[1]]
- String"Q Exactive Plus Orbitrap Thermo Scientific"
+ String"LC-ESI-QFT"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[88]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[88]]$Name
- "Instrument Type"
+ "MS Level"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[88]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[88]]$Value$StringWithMarkup[[1]]
- String"LC-ESI-QFT"
+ String"MS2"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[89]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[89]]$Name
- "MS Level"
+ "Ionization Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[89]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[89]]$Value$StringWithMarkup[[1]]
- String"MS2"
+ String"POSITIVE"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[90]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[90]]$Name
- "Ionization Mode"
+ "Ionization"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[90]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[90]]$Value$StringWithMarkup[[1]]
- String"POSITIVE"
+ String"ESI"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[91]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[91]]$Name
- "Ionization"
+ "Collision Energy"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[91]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[91]]$Value$StringWithMarkup[[1]]
- String"ESI"
+ String"60 (nominal)"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[92]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[92]]$Name
- "Collision Energy"
+ "Fragmentation Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[92]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[92]]$Value$StringWithMarkup[[1]]
- String"60 (nominal)"
+ String"HCD"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[93]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[93]]$Name
- "Fragmentation Mode"
+ "Column Name"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[93]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[93]]$Value$StringWithMarkup[[1]]
- String"HCD"
+ String"XBridge C18 3.5um, 2.1x50mm, Waters"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[94]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[94]]$Name
- "Column Name"
+ "Retention Time"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[94]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[94]]$Value$StringWithMarkup[[1]]
- String"XBridge C18 3.5um, 2.1x50mm, Waters"
+ String"20.3 min"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[95]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[95]]$Name
- "Retention Time"
+ "Precursor m/z"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[95]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[95]]$Value$StringWithMarkup[[1]]
- String"20.3 min"
+ String"181.0495"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[96]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[96]]$Name
- "Precursor m/z"
+ "Precursor Adduct"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[96]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[96]]$Value$StringWithMarkup[[1]]
- String"181.0495"
+ String"[M+H]+"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[97]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[97]]$Name
- "Precursor Adduct"
+ "Top 5 Peaks"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[97]]$Value$StringWithMarkup` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[97]]$Value$StringWithMarkup` is length 5
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[97]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[97]]$Value$StringWithMarkup[[1]]
- String"[M+H]+"
+ String"149.0231 999"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[97]]$Value$StringWithMarkup[[2]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[97]]$Value$StringWithMarkup[[2]]` is a character vector ('163.0386 530')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[97]]$Value$StringWithMarkup[[3]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[97]]$Value$StringWithMarkup[[3]]` is a character vector ('121.0282 282')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[97]]$Value$StringWithMarkup[[4]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[97]]$Value$StringWithMarkup[[4]]` is a character vector ('135.0438 178')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[97]]$Value$StringWithMarkup[[5]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[97]]$Value$StringWithMarkup[[5]]` is a character vector ('133.0282 169')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[98]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[98]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[98]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[98]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[98]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[98]]$Name
- "Top 5 Peaks"
+ "SPLASH"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[98]]$Value$StringWithMarkup` is length 5
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[98]]$Value$StringWithMarkup` is length 1
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[98]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[98]]$Value$StringWithMarkup[[1]]
- String"149.0231 999"
+ String"splash10-01ot-0900000000-4860d5cbeeb9c31311ec"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[98]]$Value$StringWithMarkup[[2]]` is a character vector ('163.0386 530')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[98]]$Value$StringWithMarkup[[2]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[98]]$Value$StringWithMarkup[[3]]` is a character vector ('121.0282 282')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[98]]$Value$StringWithMarkup[[3]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[98]]$Value$StringWithMarkup[[4]]` is a character vector ('135.0438 178')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[98]]$Value$StringWithMarkup[[4]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[98]]$Value$StringWithMarkup[[5]]` is a character vector ('133.0282 169')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[98]]$Value$StringWithMarkup[[5]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[98]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[98]]$URL` is a character vector ('https://massbank.eu/MassBank/search?splash=splash10-01ot-0900000000-4860d5cbeeb9c31311ec')
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[99]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[99]]$Name
- "SPLASH"
+ "Thumbnail"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[99]]$URL vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[99]]$URL
- "https://massbank.eu/MassBank/search?splash=splash10-01ot-0900000000-4860d5cbeeb9c31311ec"
+ "https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=149.0231:999,163.0386:530,121.0282:282,135.0438:178,133.0282:169"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[99]]$Value` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[99]]$Value` is length 2
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[99]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[99]]$Value)
- "StringWithMarkup"
+ "ExternalDataURL"
+ "MimeType"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[99]]$Value$StringWithMarkup` is a list
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[99]]$Value$StringWithMarkup` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[99]]$Value$ExternalDataURL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[99]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=149.0231:999,163.0386:530,121.0282:282,135.0438:178,133.0282:169')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[99]]$Value$MimeType` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[99]]$Value$MimeType` is a character vector ('image/svg')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[100]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[100]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[100]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[100]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[100]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[100]]$Name
- "Thumbnail"
+ "License"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[100]]$URL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=149.0231:999,163.0386:530,121.0282:282,135.0438:178,133.0282:169')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[100]]$URL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[100]]$Value` is length 2
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[100]]$Value` is length 1
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[100]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[100]]$Value)
- "ExternalDataURL"
- "MimeType"
+ "StringWithMarkup"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[100]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=149.0231:999,163.0386:530,121.0282:282,135.0438:178,133.0282:169')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[100]]$Value$ExternalDataURL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[100]]$Value$MimeType` is a character vector ('image/svg')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[100]]$Value$MimeType` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[100]]$Value$StringWithMarkup` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[100]]$Value$StringWithMarkup` is a list
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[101]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[101]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[101]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[101]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[101]]$ReferenceNumber vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[101]]$ReferenceNumber
- 93.0
+ 94.0
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[101]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[101]]$Name
- "License"
+ "Accession ID"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[101]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[101]]$Value$StringWithMarkup[[1]]
- String"CC BY"
+ String"MSBNK-Eawag-EQ357805"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[101]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[101]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Eawag-EQ357805')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[102]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[102]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[102]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[102]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[102]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[102]]$Name
- "Accession ID"
+ "Authors"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[102]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Eawag-EQ357805')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[102]]$URL` is absent
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[102]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[102]]$Value$StringWithMarkup[[1]]
- String"MSBNK-Eawag-EQ357805"
+ String"Stravs M, Schymanski E, Singer H, Department of Environmental Chemistry, Eawag and Thomaidis N, University of Athens"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[103]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[103]]$Name
- "Authors"
+ "Instrument"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[103]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[103]]$Value$StringWithMarkup[[1]]
- String"Stravs M, Schymanski E, Singer H, Department of Environmental Chemistry, Eawag and Thomaidis N, University of Athens"
+ String"Q Exactive Plus Orbitrap Thermo Scientific"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[104]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[104]]$Name
- "Instrument"
+ "Instrument Type"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[104]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[104]]$Value$StringWithMarkup[[1]]
- String"Q Exactive Plus Orbitrap Thermo Scientific"
+ String"LC-ESI-QFT"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[105]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[105]]$Name
- "Instrument Type"
+ "MS Level"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[105]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[105]]$Value$StringWithMarkup[[1]]
- String"LC-ESI-QFT"
+ String"MS2"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[106]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[106]]$Name
- "MS Level"
+ "Ionization Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[106]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[106]]$Value$StringWithMarkup[[1]]
- String"MS2"
+ String"POSITIVE"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[107]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[107]]$Name
- "Ionization Mode"
+ "Ionization"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[107]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[107]]$Value$StringWithMarkup[[1]]
- String"POSITIVE"
+ String"ESI"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[108]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[108]]$Name
- "Ionization"
+ "Collision Energy"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[108]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[108]]$Value$StringWithMarkup[[1]]
- String"ESI"
+ String"75 (nominal)"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[109]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[109]]$Name
- "Collision Energy"
+ "Fragmentation Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[109]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[109]]$Value$StringWithMarkup[[1]]
- String"75 (nominal)"
+ String"HCD"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[110]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[110]]$Name
- "Fragmentation Mode"
+ "Column Name"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[110]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[110]]$Value$StringWithMarkup[[1]]
- String"HCD"
+ String"XBridge C18 3.5um, 2.1x50mm, Waters"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[111]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[111]]$Name
- "Column Name"
+ "Retention Time"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[111]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[111]]$Value$StringWithMarkup[[1]]
- String"XBridge C18 3.5um, 2.1x50mm, Waters"
+ String"20.3 min"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[112]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[112]]$Name
- "Retention Time"
+ "Precursor m/z"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[112]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[112]]$Value$StringWithMarkup[[1]]
- String"20.3 min"
+ String"181.0495"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[113]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[113]]$Name
- "Precursor m/z"
+ "Precursor Adduct"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[113]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[113]]$Value$StringWithMarkup[[1]]
- String"181.0495"
+ String"[M+H]+"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[114]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[114]]$Name
- "Precursor Adduct"
+ "Top 5 Peaks"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[114]]$Value$StringWithMarkup` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[114]]$Value$StringWithMarkup` is length 5
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[114]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[114]]$Value$StringWithMarkup[[1]]
- String"[M+H]+"
+ String"149.0231 999"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[114]]$Value$StringWithMarkup[[2]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[114]]$Value$StringWithMarkup[[2]]` is a character vector ('121.0282 762')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[114]]$Value$StringWithMarkup[[3]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[114]]$Value$StringWithMarkup[[3]]` is a character vector ('65.0384 580')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[114]]$Value$StringWithMarkup[[4]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[114]]$Value$StringWithMarkup[[4]]` is a character vector ('121.0394 377')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[114]]$Value$StringWithMarkup[[5]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[114]]$Value$StringWithMarkup[[5]]` is a character vector ('135.0438 376')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[115]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[115]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[115]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[115]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[115]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[115]]$Name
- "Top 5 Peaks"
+ "SPLASH"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[115]]$Value$StringWithMarkup` is length 5
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[115]]$Value$StringWithMarkup` is length 1
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[115]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[115]]$Value$StringWithMarkup[[1]]
- String"149.0231 999"
+ String"splash10-006t-3900000000-cc185048e2a1bcc52124"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[115]]$Value$StringWithMarkup[[2]]` is a character vector ('121.0282 762')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[115]]$Value$StringWithMarkup[[2]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[115]]$Value$StringWithMarkup[[3]]` is a character vector ('65.0384 580')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[115]]$Value$StringWithMarkup[[3]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[115]]$Value$StringWithMarkup[[4]]` is a character vector ('121.0394 377')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[115]]$Value$StringWithMarkup[[4]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[115]]$Value$StringWithMarkup[[5]]` is a character vector ('135.0438 376')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[115]]$Value$StringWithMarkup[[5]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[115]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[115]]$URL` is a character vector ('https://massbank.eu/MassBank/search?splash=splash10-006t-3900000000-cc185048e2a1bcc52124')
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[116]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[116]]$Name
- "SPLASH"
+ "Thumbnail"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[116]]$URL vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[116]]$URL
- "https://massbank.eu/MassBank/search?splash=splash10-006t-3900000000-cc185048e2a1bcc52124"
+ "https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=149.0231:999,121.0282:762,65.0384:580,121.0394:377,135.0438:376"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[116]]$Value` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[116]]$Value` is length 2
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[116]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[116]]$Value)
- "StringWithMarkup"
+ "ExternalDataURL"
+ "MimeType"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[116]]$Value$StringWithMarkup` is a list
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[116]]$Value$StringWithMarkup` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[116]]$Value$ExternalDataURL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[116]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=149.0231:999,121.0282:762,65.0384:580,121.0394:377,135.0438:376')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[116]]$Value$MimeType` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[116]]$Value$MimeType` is a character vector ('image/svg')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[117]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[117]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[117]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[117]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[117]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[117]]$Name
- "Thumbnail"
+ "License"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[117]]$URL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=149.0231:999,121.0282:762,65.0384:580,121.0394:377,135.0438:376')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[117]]$URL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[117]]$Value` is length 2
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[117]]$Value` is length 1
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[117]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[117]]$Value)
- "ExternalDataURL"
- "MimeType"
+ "StringWithMarkup"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[117]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=149.0231:999,121.0282:762,65.0384:580,121.0394:377,135.0438:376')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[117]]$Value$ExternalDataURL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[117]]$Value$MimeType` is a character vector ('image/svg')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[117]]$Value$MimeType` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[117]]$Value$StringWithMarkup` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[117]]$Value$StringWithMarkup` is a list
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[118]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[118]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[118]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[118]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[118]]$ReferenceNumber vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[118]]$ReferenceNumber
- 94.0
+ 95.0
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[118]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[118]]$Name
- "License"
+ "Accession ID"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[118]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[118]]$Value$StringWithMarkup[[1]]
- String"CC BY"
+ String"MSBNK-Eawag-EQ357806"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[118]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[118]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Eawag-EQ357806')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[119]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[119]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[119]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[119]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[119]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[119]]$Name
- "Accession ID"
+ "Authors"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[119]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Eawag-EQ357806')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[119]]$URL` is absent
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[119]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[119]]$Value$StringWithMarkup[[1]]
- String"MSBNK-Eawag-EQ357806"
+ String"Stravs M, Schymanski E, Singer H, Department of Environmental Chemistry, Eawag and Thomaidis N, University of Athens"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[120]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[120]]$Name
- "Authors"
+ "Instrument"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[120]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[120]]$Value$StringWithMarkup[[1]]
- String"Stravs M, Schymanski E, Singer H, Department of Environmental Chemistry, Eawag and Thomaidis N, University of Athens"
+ String"Q Exactive Plus Orbitrap Thermo Scientific"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[121]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[121]]$Name
- "Instrument"
+ "Instrument Type"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[121]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[121]]$Value$StringWithMarkup[[1]]
- String"Q Exactive Plus Orbitrap Thermo Scientific"
+ String"LC-ESI-QFT"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[122]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[122]]$Name
- "Instrument Type"
+ "MS Level"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[122]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[122]]$Value$StringWithMarkup[[1]]
- String"LC-ESI-QFT"
+ String"MS2"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[123]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[123]]$Name
- "MS Level"
+ "Ionization Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[123]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[123]]$Value$StringWithMarkup[[1]]
- String"MS2"
+ String"POSITIVE"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[124]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[124]]$Name
- "Ionization Mode"
+ "Ionization"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[124]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[124]]$Value$StringWithMarkup[[1]]
- String"POSITIVE"
+ String"ESI"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[125]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[125]]$Name
- "Ionization"
+ "Collision Energy"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[125]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[125]]$Value$StringWithMarkup[[1]]
- String"ESI"
+ String"90 (nominal)"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[126]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[126]]$Name
- "Collision Energy"
+ "Fragmentation Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[126]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[126]]$Value$StringWithMarkup[[1]]
- String"90 (nominal)"
+ String"HCD"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[127]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[127]]$Name
- "Fragmentation Mode"
+ "Column Name"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[127]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[127]]$Value$StringWithMarkup[[1]]
- String"HCD"
+ String"XBridge C18 3.5um, 2.1x50mm, Waters"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[128]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[128]]$Name
- "Column Name"
+ "Retention Time"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[128]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[128]]$Value$StringWithMarkup[[1]]
- String"XBridge C18 3.5um, 2.1x50mm, Waters"
+ String"20.3 min"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[129]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[129]]$Name
- "Retention Time"
+ "Precursor m/z"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[129]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[129]]$Value$StringWithMarkup[[1]]
- String"20.3 min"
+ String"181.0495"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[130]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[130]]$Name
- "Precursor m/z"
+ "Precursor Adduct"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[130]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[130]]$Value$StringWithMarkup[[1]]
- String"181.0495"
+ String"[M+H]+"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[131]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[131]]$Name
- "Precursor Adduct"
+ "Top 5 Peaks"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[131]]$Value$StringWithMarkup` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[131]]$Value$StringWithMarkup` is length 5
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[131]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[131]]$Value$StringWithMarkup[[1]]
- String"[M+H]+"
+ String"65.0384 999"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[131]]$Value$StringWithMarkup[[2]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[131]]$Value$StringWithMarkup[[2]]` is a character vector ('121.0282 376')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[131]]$Value$StringWithMarkup[[3]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[131]]$Value$StringWithMarkup[[3]]` is a character vector ('95.049 371')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[131]]$Value$StringWithMarkup[[4]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[131]]$Value$StringWithMarkup[[4]]` is a character vector ('121.0394 310')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[131]]$Value$StringWithMarkup[[5]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[131]]$Value$StringWithMarkup[[5]]` is a character vector ('105.0446 251')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[132]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[132]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[132]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[132]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[132]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[132]]$Name
- "Top 5 Peaks"
+ "SPLASH"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[132]]$Value$StringWithMarkup` is length 5
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[132]]$Value$StringWithMarkup` is length 1
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[132]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[132]]$Value$StringWithMarkup[[1]]
- String"65.0384 999"
+ String"splash10-01ba-9700000000-ec436cb71e803899f611"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[132]]$Value$StringWithMarkup[[2]]` is a character vector ('121.0282 376')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[132]]$Value$StringWithMarkup[[2]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[132]]$Value$StringWithMarkup[[3]]` is a character vector ('95.049 371')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[132]]$Value$StringWithMarkup[[3]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[132]]$Value$StringWithMarkup[[4]]` is a character vector ('121.0394 310')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[132]]$Value$StringWithMarkup[[4]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[132]]$Value$StringWithMarkup[[5]]` is a character vector ('105.0446 251')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[132]]$Value$StringWithMarkup[[5]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[132]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[132]]$URL` is a character vector ('https://massbank.eu/MassBank/search?splash=splash10-01ba-9700000000-ec436cb71e803899f611')
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[133]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[133]]$Name
- "SPLASH"
+ "Thumbnail"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[133]]$URL vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[133]]$URL
- "https://massbank.eu/MassBank/search?splash=splash10-01ba-9700000000-ec436cb71e803899f611"
+ "https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=65.0384:999,121.0282:376,95.049:371,121.0394:310,105.0446:251"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[133]]$Value` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[133]]$Value` is length 2
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[133]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[133]]$Value)
- "StringWithMarkup"
+ "ExternalDataURL"
+ "MimeType"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[133]]$Value$StringWithMarkup` is a list
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[133]]$Value$StringWithMarkup` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[133]]$Value$ExternalDataURL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[133]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=65.0384:999,121.0282:376,95.049:371,121.0394:310,105.0446:251')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[133]]$Value$MimeType` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[133]]$Value$MimeType` is a character vector ('image/svg')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[134]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[134]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[134]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[134]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[134]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[134]]$Name
- "Thumbnail"
+ "License"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[134]]$URL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=65.0384:999,121.0282:376,95.049:371,121.0394:310,105.0446:251')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[134]]$URL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[134]]$Value` is length 2
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[134]]$Value` is length 1
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[134]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[134]]$Value)
- "ExternalDataURL"
- "MimeType"
+ "StringWithMarkup"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[134]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=65.0384:999,121.0282:376,95.049:371,121.0394:310,105.0446:251')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[134]]$Value$ExternalDataURL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[134]]$Value$MimeType` is a character vector ('image/svg')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[134]]$Value$MimeType` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[134]]$Value$StringWithMarkup` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[134]]$Value$StringWithMarkup` is a list
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[135]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[135]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[135]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[135]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[135]]$ReferenceNumber vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[135]]$ReferenceNumber
- 95.0
+ 96.0
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[135]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[135]]$Name
- "License"
+ "Accession ID"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[135]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[135]]$Value$StringWithMarkup[[1]]
- String"CC BY"
+ String"MSBNK-Eawag-EQ357807"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[135]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[135]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Eawag-EQ357807')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[136]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[136]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[136]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[136]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[136]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[136]]$Name
- "Accession ID"
+ "Authors"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[136]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Eawag-EQ357807')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[136]]$URL` is absent
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[136]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[136]]$Value$StringWithMarkup[[1]]
- String"MSBNK-Eawag-EQ357807"
+ String"Stravs M, Schymanski E, Singer H, Department of Environmental Chemistry, Eawag and Thomaidis N, University of Athens"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[137]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[137]]$Name
- "Authors"
+ "Instrument"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[137]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[137]]$Value$StringWithMarkup[[1]]
- String"Stravs M, Schymanski E, Singer H, Department of Environmental Chemistry, Eawag and Thomaidis N, University of Athens"
+ String"Q Exactive Plus Orbitrap Thermo Scientific"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[138]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[138]]$Name
- "Instrument"
+ "Instrument Type"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[138]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[138]]$Value$StringWithMarkup[[1]]
- String"Q Exactive Plus Orbitrap Thermo Scientific"
+ String"LC-ESI-QFT"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[139]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[139]]$Name
- "Instrument Type"
+ "MS Level"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[139]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[139]]$Value$StringWithMarkup[[1]]
- String"LC-ESI-QFT"
+ String"MS2"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[140]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[140]]$Name
- "MS Level"
+ "Ionization Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[140]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[140]]$Value$StringWithMarkup[[1]]
- String"MS2"
+ String"POSITIVE"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[141]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[141]]$Name
- "Ionization Mode"
+ "Ionization"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[141]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[141]]$Value$StringWithMarkup[[1]]
- String"POSITIVE"
+ String"ESI"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[142]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[142]]$Name
- "Ionization"
+ "Collision Energy"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[142]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[142]]$Value$StringWithMarkup[[1]]
- String"ESI"
+ String"120 (nominal)"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[143]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[143]]$Name
- "Collision Energy"
+ "Fragmentation Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[143]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[143]]$Value$StringWithMarkup[[1]]
- String"120 (nominal)"
+ String"HCD"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[144]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[144]]$Name
- "Fragmentation Mode"
+ "Column Name"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[144]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[144]]$Value$StringWithMarkup[[1]]
- String"HCD"
+ String"XBridge C18 3.5um, 2.1x50mm, Waters"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[145]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[145]]$Name
- "Column Name"
+ "Retention Time"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[145]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[145]]$Value$StringWithMarkup[[1]]
- String"XBridge C18 3.5um, 2.1x50mm, Waters"
+ String"20.3 min"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[146]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[146]]$Name
- "Retention Time"
+ "Precursor m/z"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[146]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[146]]$Value$StringWithMarkup[[1]]
- String"20.3 min"
+ String"181.0495"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[147]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[147]]$Name
- "Precursor m/z"
+ "Precursor Adduct"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[147]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[147]]$Value$StringWithMarkup[[1]]
- String"181.0495"
+ String"[M+H]+"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[148]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[148]]$Name
- "Precursor Adduct"
+ "Top 5 Peaks"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[148]]$Value$StringWithMarkup` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[148]]$Value$StringWithMarkup` is length 5
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[148]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[148]]$Value$StringWithMarkup[[1]]
- String"[M+H]+"
+ String"65.0385 999"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[148]]$Value$StringWithMarkup[[2]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[148]]$Value$StringWithMarkup[[2]]` is a character vector ('92.0255 397')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[148]]$Value$StringWithMarkup[[3]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[148]]$Value$StringWithMarkup[[3]]` is a character vector ('95.049 261')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[148]]$Value$StringWithMarkup[[4]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[148]]$Value$StringWithMarkup[[4]]` is a character vector ('77.0384 210')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[148]]$Value$StringWithMarkup[[5]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[148]]$Value$StringWithMarkup[[5]]` is a character vector ('105.0446 186')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[149]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[149]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[149]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[149]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[149]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[149]]$Name
- "Top 5 Peaks"
+ "SPLASH"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[149]]$Value$StringWithMarkup` is length 5
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[149]]$Value$StringWithMarkup` is length 1
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[149]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[149]]$Value$StringWithMarkup[[1]]
- String"65.0385 999"
+ String"splash10-014i-9100000000-75f611f9e761b63033d9"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[149]]$Value$StringWithMarkup[[2]]` is a character vector ('92.0255 397')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[149]]$Value$StringWithMarkup[[2]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[149]]$Value$StringWithMarkup[[3]]` is a character vector ('95.049 261')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[149]]$Value$StringWithMarkup[[3]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[149]]$Value$StringWithMarkup[[4]]` is a character vector ('77.0384 210')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[149]]$Value$StringWithMarkup[[4]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[149]]$Value$StringWithMarkup[[5]]` is a character vector ('105.0446 186')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[149]]$Value$StringWithMarkup[[5]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[149]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[149]]$URL` is a character vector ('https://massbank.eu/MassBank/search?splash=splash10-014i-9100000000-75f611f9e761b63033d9')
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[150]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[150]]$Name
- "SPLASH"
+ "Thumbnail"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[150]]$URL vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[150]]$URL
- "https://massbank.eu/MassBank/search?splash=splash10-014i-9100000000-75f611f9e761b63033d9"
+ "https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=65.0385:999,92.0255:397,95.049:261,77.0384:210,105.0446:186"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[150]]$Value` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[150]]$Value` is length 2
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[150]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[150]]$Value)
- "StringWithMarkup"
+ "ExternalDataURL"
+ "MimeType"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[150]]$Value$StringWithMarkup` is a list
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[150]]$Value$StringWithMarkup` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[150]]$Value$ExternalDataURL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[150]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=65.0385:999,92.0255:397,95.049:261,77.0384:210,105.0446:186')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[150]]$Value$MimeType` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[150]]$Value$MimeType` is a character vector ('image/svg')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[151]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[151]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[151]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[151]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[151]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[151]]$Name
- "Thumbnail"
+ "License"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[151]]$URL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=65.0385:999,92.0255:397,95.049:261,77.0384:210,105.0446:186')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[151]]$URL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[151]]$Value` is length 2
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[151]]$Value` is length 1
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[151]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[151]]$Value)
- "ExternalDataURL"
- "MimeType"
+ "StringWithMarkup"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[151]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=65.0385:999,92.0255:397,95.049:261,77.0384:210,105.0446:186')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[151]]$Value$ExternalDataURL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[151]]$Value$MimeType` is a character vector ('image/svg')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[151]]$Value$MimeType` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[151]]$Value$StringWithMarkup` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[151]]$Value$StringWithMarkup` is a list
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[152]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[152]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[152]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[152]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[152]]$ReferenceNumber vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[152]]$ReferenceNumber
- 96.0
+ 97.0
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[152]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[152]]$Name
- "License"
+ "Accession ID"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[152]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[152]]$Value$StringWithMarkup[[1]]
- String"CC BY"
+ String"MSBNK-Eawag-EQ357808"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[152]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[152]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Eawag-EQ357808')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[153]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[153]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[153]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[153]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[153]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[153]]$Name
- "Accession ID"
+ "Authors"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[153]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Eawag-EQ357808')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[153]]$URL` is absent
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[153]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[153]]$Value$StringWithMarkup[[1]]
- String"MSBNK-Eawag-EQ357808"
+ String"Stravs M, Schymanski E, Singer H, Department of Environmental Chemistry, Eawag and Thomaidis N, University of Athens"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[154]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[154]]$Name
- "Authors"
+ "Instrument"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[154]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[154]]$Value$StringWithMarkup[[1]]
- String"Stravs M, Schymanski E, Singer H, Department of Environmental Chemistry, Eawag and Thomaidis N, University of Athens"
+ String"Q Exactive Plus Orbitrap Thermo Scientific"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[155]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[155]]$Name
- "Instrument"
+ "Instrument Type"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[155]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[155]]$Value$StringWithMarkup[[1]]
- String"Q Exactive Plus Orbitrap Thermo Scientific"
+ String"LC-ESI-QFT"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[156]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[156]]$Name
- "Instrument Type"
+ "MS Level"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[156]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[156]]$Value$StringWithMarkup[[1]]
- String"LC-ESI-QFT"
+ String"MS2"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[157]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[157]]$Name
- "MS Level"
+ "Ionization Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[157]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[157]]$Value$StringWithMarkup[[1]]
- String"MS2"
+ String"POSITIVE"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[158]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[158]]$Name
- "Ionization Mode"
+ "Ionization"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[158]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[158]]$Value$StringWithMarkup[[1]]
- String"POSITIVE"
+ String"ESI"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[159]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[159]]$Name
- "Ionization"
+ "Collision Energy"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[159]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[159]]$Value$StringWithMarkup[[1]]
- String"ESI"
+ String"150 (nominal)"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[160]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[160]]$Name
- "Collision Energy"
+ "Fragmentation Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[160]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[160]]$Value$StringWithMarkup[[1]]
- String"150 (nominal)"
+ String"HCD"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[161]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[161]]$Name
- "Fragmentation Mode"
+ "Column Name"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[161]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[161]]$Value$StringWithMarkup[[1]]
- String"HCD"
+ String"XBridge C18 3.5um, 2.1x50mm, Waters"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[162]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[162]]$Name
- "Column Name"
+ "Retention Time"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[162]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[162]]$Value$StringWithMarkup[[1]]
- String"XBridge C18 3.5um, 2.1x50mm, Waters"
+ String"20.3 min"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[163]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[163]]$Name
- "Retention Time"
+ "Precursor m/z"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[163]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[163]]$Value$StringWithMarkup[[1]]
- String"20.3 min"
+ String"181.0495"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[164]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[164]]$Name
- "Precursor m/z"
+ "Precursor Adduct"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[164]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[164]]$Value$StringWithMarkup[[1]]
- String"181.0495"
+ String"[M+H]+"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[165]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[165]]$Name
- "Precursor Adduct"
+ "Top 5 Peaks"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[165]]$Value$StringWithMarkup` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[165]]$Value$StringWithMarkup` is length 5
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[165]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[165]]$Value$StringWithMarkup[[1]]
- String"[M+H]+"
+ String"65.0385 999"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[165]]$Value$StringWithMarkup[[2]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[165]]$Value$StringWithMarkup[[2]]` is a character vector ('92.0255 619')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[165]]$Value$StringWithMarkup[[3]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[165]]$Value$StringWithMarkup[[3]]` is a character vector ('63.0228 429')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[165]]$Value$StringWithMarkup[[4]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[165]]$Value$StringWithMarkup[[4]]` is a character vector ('64.0307 290')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[165]]$Value$StringWithMarkup[[5]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[165]]$Value$StringWithMarkup[[5]]` is a character vector ('95.049 262')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[166]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[166]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[166]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[166]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[166]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[166]]$Name
- "Top 5 Peaks"
+ "SPLASH"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[166]]$Value$StringWithMarkup` is length 5
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[166]]$Value$StringWithMarkup` is length 1
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[166]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[166]]$Value$StringWithMarkup[[1]]
- String"65.0385 999"
+ String"splash10-02tc-9000000000-15b9abe0f191aedd9620"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[166]]$Value$StringWithMarkup[[2]]` is a character vector ('92.0255 619')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[166]]$Value$StringWithMarkup[[2]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[166]]$Value$StringWithMarkup[[3]]` is a character vector ('63.0228 429')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[166]]$Value$StringWithMarkup[[3]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[166]]$Value$StringWithMarkup[[4]]` is a character vector ('64.0307 290')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[166]]$Value$StringWithMarkup[[4]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[166]]$Value$StringWithMarkup[[5]]` is a character vector ('95.049 262')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[166]]$Value$StringWithMarkup[[5]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[166]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[166]]$URL` is a character vector ('https://massbank.eu/MassBank/search?splash=splash10-02tc-9000000000-15b9abe0f191aedd9620')
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[167]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[167]]$Name
- "SPLASH"
+ "Thumbnail"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[167]]$URL vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[167]]$URL
- "https://massbank.eu/MassBank/search?splash=splash10-02tc-9000000000-15b9abe0f191aedd9620"
+ "https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=65.0385:999,92.0255:619,63.0228:429,64.0307:290,95.049:262"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[167]]$Value` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[167]]$Value` is length 2
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[167]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[167]]$Value)
- "StringWithMarkup"
+ "ExternalDataURL"
+ "MimeType"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[167]]$Value$StringWithMarkup` is a list
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[167]]$Value$StringWithMarkup` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[167]]$Value$ExternalDataURL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[167]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=65.0385:999,92.0255:619,63.0228:429,64.0307:290,95.049:262')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[167]]$Value$MimeType` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[167]]$Value$MimeType` is a character vector ('image/svg')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[168]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[168]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[168]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[168]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[168]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[168]]$Name
- "Thumbnail"
+ "License"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[168]]$URL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=65.0385:999,92.0255:619,63.0228:429,64.0307:290,95.049:262')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[168]]$URL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[168]]$Value` is length 2
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[168]]$Value` is length 1
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[168]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[168]]$Value)
- "ExternalDataURL"
- "MimeType"
+ "StringWithMarkup"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[168]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=65.0385:999,92.0255:619,63.0228:429,64.0307:290,95.049:262')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[168]]$Value$ExternalDataURL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[168]]$Value$MimeType` is a character vector ('image/svg')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[168]]$Value$MimeType` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[168]]$Value$StringWithMarkup` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[168]]$Value$StringWithMarkup` is a list
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[169]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[169]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[169]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[169]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[169]]$ReferenceNumber vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[169]]$ReferenceNumber
- 97.0
+ 98.0
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[169]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[169]]$Name
- "License"
+ "Accession ID"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[169]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[169]]$Value$StringWithMarkup[[1]]
- String"CC BY"
+ String"MSBNK-Eawag-EQ357809"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[169]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[169]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Eawag-EQ357809')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[170]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[170]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[170]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[170]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[170]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[170]]$Name
- "Accession ID"
+ "Authors"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[170]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Eawag-EQ357809')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[170]]$URL` is absent
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[170]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[170]]$Value$StringWithMarkup[[1]]
- String"MSBNK-Eawag-EQ357809"
+ String"Stravs M, Schymanski E, Singer H, Department of Environmental Chemistry, Eawag and Thomaidis N, University of Athens"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[171]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[171]]$Name
- "Authors"
+ "Instrument"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[171]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[171]]$Value$StringWithMarkup[[1]]
- String"Stravs M, Schymanski E, Singer H, Department of Environmental Chemistry, Eawag and Thomaidis N, University of Athens"
+ String"Q Exactive Plus Orbitrap Thermo Scientific"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[172]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[172]]$Name
- "Instrument"
+ "Instrument Type"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[172]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[172]]$Value$StringWithMarkup[[1]]
- String"Q Exactive Plus Orbitrap Thermo Scientific"
+ String"LC-ESI-QFT"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[173]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[173]]$Name
- "Instrument Type"
+ "MS Level"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[173]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[173]]$Value$StringWithMarkup[[1]]
- String"LC-ESI-QFT"
+ String"MS2"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[174]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[174]]$Name
- "MS Level"
+ "Ionization Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[174]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[174]]$Value$StringWithMarkup[[1]]
- String"MS2"
+ String"POSITIVE"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[175]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[175]]$Name
- "Ionization Mode"
+ "Ionization"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[175]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[175]]$Value$StringWithMarkup[[1]]
- String"POSITIVE"
+ String"ESI"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[176]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[176]]$Name
- "Ionization"
+ "Collision Energy"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[176]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[176]]$Value$StringWithMarkup[[1]]
- String"ESI"
+ String"180 (nominal)"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[177]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[177]]$Name
- "Collision Energy"
+ "Fragmentation Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[177]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[177]]$Value$StringWithMarkup[[1]]
- String"180 (nominal)"
+ String"HCD"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[178]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[178]]$Name
- "Fragmentation Mode"
+ "Column Name"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[178]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[178]]$Value$StringWithMarkup[[1]]
- String"HCD"
+ String"XBridge C18 3.5um, 2.1x50mm, Waters"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[179]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[179]]$Name
- "Column Name"
+ "Retention Time"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[179]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[179]]$Value$StringWithMarkup[[1]]
- String"XBridge C18 3.5um, 2.1x50mm, Waters"
+ String"20.3 min"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[180]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[180]]$Name
- "Retention Time"
+ "Precursor m/z"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[180]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[180]]$Value$StringWithMarkup[[1]]
- String"20.3 min"
+ String"181.0495"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[181]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[181]]$Name
- "Precursor m/z"
+ "Precursor Adduct"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[181]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[181]]$Value$StringWithMarkup[[1]]
- String"181.0495"
+ String"[M+H]+"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[182]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[182]]$Name
- "Precursor Adduct"
+ "Top 5 Peaks"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[182]]$Value$StringWithMarkup` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[182]]$Value$StringWithMarkup` is length 5
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[182]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[182]]$Value$StringWithMarkup[[1]]
- String"[M+H]+"
+ String"63.0228 999"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[182]]$Value$StringWithMarkup[[2]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[182]]$Value$StringWithMarkup[[2]]` is a character vector ('51.0229 453')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[182]]$Value$StringWithMarkup[[3]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[182]]$Value$StringWithMarkup[[3]]` is a character vector ('65.0385 357')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[182]]$Value$StringWithMarkup[[4]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[182]]$Value$StringWithMarkup[[4]]` is a character vector ('64.0306 336')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[182]]$Value$StringWithMarkup[[5]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[182]]$Value$StringWithMarkup[[5]]` is a character vector ('50.0151 273')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[183]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[183]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[183]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[183]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[183]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[183]]$Name
- "Top 5 Peaks"
+ "SPLASH"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[183]]$Value$StringWithMarkup` is length 5
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[183]]$Value$StringWithMarkup` is length 1
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[183]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[183]]$Value$StringWithMarkup[[1]]
- String"63.0228 999"
+ String"splash10-0ik9-9000000000-644d508a79eb48c24ec3"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[183]]$Value$StringWithMarkup[[2]]` is a character vector ('51.0229 453')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[183]]$Value$StringWithMarkup[[2]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[183]]$Value$StringWithMarkup[[3]]` is a character vector ('65.0385 357')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[183]]$Value$StringWithMarkup[[3]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[183]]$Value$StringWithMarkup[[4]]` is a character vector ('64.0306 336')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[183]]$Value$StringWithMarkup[[4]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[183]]$Value$StringWithMarkup[[5]]` is a character vector ('50.0151 273')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[183]]$Value$StringWithMarkup[[5]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[183]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[183]]$URL` is a character vector ('https://massbank.eu/MassBank/search?splash=splash10-0ik9-9000000000-644d508a79eb48c24ec3')
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[184]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[184]]$Name
- "SPLASH"
+ "Thumbnail"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[184]]$URL vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[184]]$URL
- "https://massbank.eu/MassBank/search?splash=splash10-0ik9-9000000000-644d508a79eb48c24ec3"
+ "https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=63.0228:999,51.0229:453,65.0385:357,64.0306:336,50.0151:273"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[184]]$Value` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[184]]$Value` is length 2
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[184]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[184]]$Value)
- "StringWithMarkup"
+ "ExternalDataURL"
+ "MimeType"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[184]]$Value$StringWithMarkup` is a list
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[184]]$Value$StringWithMarkup` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[184]]$Value$ExternalDataURL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[184]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=63.0228:999,51.0229:453,65.0385:357,64.0306:336,50.0151:273')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[184]]$Value$MimeType` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[184]]$Value$MimeType` is a character vector ('image/svg')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[185]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[185]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[185]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[185]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[185]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[185]]$Name
- "Thumbnail"
+ "License"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[185]]$URL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=63.0228:999,51.0229:453,65.0385:357,64.0306:336,50.0151:273')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[185]]$URL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[185]]$Value` is length 2
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[185]]$Value` is length 1
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[185]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[185]]$Value)
- "ExternalDataURL"
- "MimeType"
+ "StringWithMarkup"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[185]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=63.0228:999,51.0229:453,65.0385:357,64.0306:336,50.0151:273')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[185]]$Value$ExternalDataURL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[185]]$Value$MimeType` is a character vector ('image/svg')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[185]]$Value$MimeType` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[185]]$Value$StringWithMarkup` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[185]]$Value$StringWithMarkup` is a list
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[186]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[186]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[186]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[186]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[186]]$ReferenceNumber vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[186]]$ReferenceNumber
- 98.0
+ 99.0
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[186]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[186]]$Name
- "License"
+ "Accession ID"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[186]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[186]]$Value$StringWithMarkup[[1]]
- String"CC BY"
+ String"MSBNK-Eawag-EQ357851"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[186]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[186]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Eawag-EQ357851')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[187]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[187]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[187]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[187]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[187]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[187]]$Name
- "Accession ID"
+ "Authors"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[187]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Eawag-EQ357851')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[187]]$URL` is absent
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[187]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[187]]$Value$StringWithMarkup[[1]]
- String"MSBNK-Eawag-EQ357851"
+ String"Stravs M, Schymanski E, Singer H, Department of Environmental Chemistry, Eawag and Thomaidis N, University of Athens"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[188]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[188]]$Name
- "Authors"
+ "Instrument"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[188]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[188]]$Value$StringWithMarkup[[1]]
- String"Stravs M, Schymanski E, Singer H, Department of Environmental Chemistry, Eawag and Thomaidis N, University of Athens"
+ String"Q Exactive Plus Orbitrap Thermo Scientific"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[189]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[189]]$Name
- "Instrument"
+ "Instrument Type"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[189]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[189]]$Value$StringWithMarkup[[1]]
- String"Q Exactive Plus Orbitrap Thermo Scientific"
+ String"LC-ESI-QFT"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[190]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[190]]$Name
- "Instrument Type"
+ "MS Level"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[190]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[190]]$Value$StringWithMarkup[[1]]
- String"LC-ESI-QFT"
+ String"MS2"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[191]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[191]]$Name
- "MS Level"
+ "Ionization Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[191]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[191]]$Value$StringWithMarkup[[1]]
- String"MS2"
+ String"NEGATIVE"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[192]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[192]]$Name
- "Ionization Mode"
+ "Ionization"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[192]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[192]]$Value$StringWithMarkup[[1]]
- String"NEGATIVE"
+ String"ESI"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[193]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[193]]$Name
- "Ionization"
+ "Collision Energy"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[193]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[193]]$Value$StringWithMarkup[[1]]
- String"ESI"
+ String"15 (nominal)"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[194]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[194]]$Name
- "Collision Energy"
+ "Fragmentation Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[194]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[194]]$Value$StringWithMarkup[[1]]
- String"15 (nominal)"
+ String"HCD"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[195]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[195]]$Name
- "Fragmentation Mode"
+ "Column Name"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[195]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[195]]$Value$StringWithMarkup[[1]]
- String"HCD"
+ String"XBridge C18 3.5um, 2.1x50mm, Waters"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[196]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[196]]$Name
- "Column Name"
+ "Retention Time"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[196]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[196]]$Value$StringWithMarkup[[1]]
- String"XBridge C18 3.5um, 2.1x50mm, Waters"
+ String"5.5 min"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[197]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[197]]$Name
- "Retention Time"
+ "Precursor m/z"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[197]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[197]]$Value$StringWithMarkup[[1]]
- String"5.5 min"
+ String"179.035"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[198]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[198]]$Name
- "Precursor m/z"
+ "Precursor Adduct"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[198]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[198]]$Value$StringWithMarkup[[1]]
- String"179.035"
+ String"[M-H]-"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[199]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[199]]$Name
- "Precursor Adduct"
+ "Top 5 Peaks"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[199]]$Value$StringWithMarkup` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[199]]$Value$StringWithMarkup` is length 5
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[199]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[199]]$Value$StringWithMarkup[[1]]
- String"[M-H]-"
+ String"137.0243 999"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[199]]$Value$StringWithMarkup[[2]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[199]]$Value$StringWithMarkup[[2]]` is a character vector ('93.0345 98')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[199]]$Value$StringWithMarkup[[3]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[199]]$Value$StringWithMarkup[[3]]` is a character vector ('59.0138 91')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[199]]$Value$StringWithMarkup[[4]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[199]]$Value$StringWithMarkup[[4]]` is a character vector ('107.0502 10')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[199]]$Value$StringWithMarkup[[5]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[199]]$Value$StringWithMarkup[[5]]` is a character vector ('179.035 8')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[200]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[200]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[200]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[200]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[200]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[200]]$Name
- "Top 5 Peaks"
+ "SPLASH"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[200]]$Value$StringWithMarkup` is length 5
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[200]]$Value$StringWithMarkup` is length 1
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[200]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[200]]$Value$StringWithMarkup[[1]]
- String"137.0243 999"
+ String"splash10-000i-1900000000-bc50013edb10656e0aa4"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[200]]$Value$StringWithMarkup[[2]]` is a character vector ('93.0345 98')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[200]]$Value$StringWithMarkup[[2]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[200]]$Value$StringWithMarkup[[3]]` is a character vector ('59.0138 91')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[200]]$Value$StringWithMarkup[[3]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[200]]$Value$StringWithMarkup[[4]]` is a character vector ('107.0502 10')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[200]]$Value$StringWithMarkup[[4]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[200]]$Value$StringWithMarkup[[5]]` is a character vector ('179.035 8')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[200]]$Value$StringWithMarkup[[5]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[200]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[200]]$URL` is a character vector ('https://massbank.eu/MassBank/search?splash=splash10-000i-1900000000-bc50013edb10656e0aa4')
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[201]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[201]]$Name
- "SPLASH"
+ "Thumbnail"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[201]]$URL vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[201]]$URL
- "https://massbank.eu/MassBank/search?splash=splash10-000i-1900000000-bc50013edb10656e0aa4"
+ "https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=137.0243:999,93.0345:98,59.0138:91,107.0502:10,179.035:8"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[201]]$Value` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[201]]$Value` is length 2
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[201]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[201]]$Value)
- "StringWithMarkup"
+ "ExternalDataURL"
+ "MimeType"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[201]]$Value$StringWithMarkup` is a list
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[201]]$Value$StringWithMarkup` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[201]]$Value$ExternalDataURL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[201]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=137.0243:999,93.0345:98,59.0138:91,107.0502:10,179.035:8')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[201]]$Value$MimeType` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[201]]$Value$MimeType` is a character vector ('image/svg')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[202]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[202]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[202]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[202]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[202]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[202]]$Name
- "Thumbnail"
+ "License"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[202]]$URL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=137.0243:999,93.0345:98,59.0138:91,107.0502:10,179.035:8')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[202]]$URL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[202]]$Value` is length 2
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[202]]$Value` is length 1
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[202]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[202]]$Value)
- "ExternalDataURL"
- "MimeType"
+ "StringWithMarkup"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[202]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=137.0243:999,93.0345:98,59.0138:91,107.0502:10,179.035:8')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[202]]$Value$ExternalDataURL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[202]]$Value$MimeType` is a character vector ('image/svg')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[202]]$Value$MimeType` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[202]]$Value$StringWithMarkup` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[202]]$Value$StringWithMarkup` is a list
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[203]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[203]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[203]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[203]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[203]]$ReferenceNumber vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[203]]$ReferenceNumber
- 99.0
+ 100.0
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[203]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[203]]$Name
- "License"
+ "Accession ID"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[203]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[203]]$Value$StringWithMarkup[[1]]
- String"CC BY"
+ String"MSBNK-Eawag-EQ357852"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[203]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[203]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Eawag-EQ357852')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[204]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[204]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[204]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[204]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[204]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[204]]$Name
- "Accession ID"
+ "Authors"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[204]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Eawag-EQ357852')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[204]]$URL` is absent
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[204]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[204]]$Value$StringWithMarkup[[1]]
- String"MSBNK-Eawag-EQ357852"
+ String"Stravs M, Schymanski E, Singer H, Department of Environmental Chemistry, Eawag and Thomaidis N, University of Athens"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[205]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[205]]$Name
- "Authors"
+ "Instrument"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[205]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[205]]$Value$StringWithMarkup[[1]]
- String"Stravs M, Schymanski E, Singer H, Department of Environmental Chemistry, Eawag and Thomaidis N, University of Athens"
+ String"Q Exactive Plus Orbitrap Thermo Scientific"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[206]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[206]]$Name
- "Instrument"
+ "Instrument Type"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[206]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[206]]$Value$StringWithMarkup[[1]]
- String"Q Exactive Plus Orbitrap Thermo Scientific"
+ String"LC-ESI-QFT"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[207]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[207]]$Name
- "Instrument Type"
+ "MS Level"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[207]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[207]]$Value$StringWithMarkup[[1]]
- String"LC-ESI-QFT"
+ String"MS2"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[208]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[208]]$Name
- "MS Level"
+ "Ionization Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[208]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[208]]$Value$StringWithMarkup[[1]]
- String"MS2"
+ String"NEGATIVE"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[209]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[209]]$Name
- "Ionization Mode"
+ "Ionization"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[209]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[209]]$Value$StringWithMarkup[[1]]
- String"NEGATIVE"
+ String"ESI"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[210]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[210]]$Name
- "Ionization"
+ "Collision Energy"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[210]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[210]]$Value$StringWithMarkup[[1]]
- String"ESI"
+ String"30 (nominal)"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[211]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[211]]$Name
- "Collision Energy"
+ "Fragmentation Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[211]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[211]]$Value$StringWithMarkup[[1]]
- String"30 (nominal)"
+ String"HCD"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[212]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[212]]$Name
- "Fragmentation Mode"
+ "Column Name"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[212]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[212]]$Value$StringWithMarkup[[1]]
- String"HCD"
+ String"XBridge C18 3.5um, 2.1x50mm, Waters"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[213]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[213]]$Name
- "Column Name"
+ "Retention Time"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[213]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[213]]$Value$StringWithMarkup[[1]]
- String"XBridge C18 3.5um, 2.1x50mm, Waters"
+ String"5.5 min"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[214]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[214]]$Name
- "Retention Time"
+ "Precursor m/z"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[214]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[214]]$Value$StringWithMarkup[[1]]
- String"5.5 min"
+ String"179.035"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[215]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[215]]$Name
- "Precursor m/z"
+ "Precursor Adduct"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[215]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[215]]$Value$StringWithMarkup[[1]]
- String"179.035"
+ String"[M-H]-"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[216]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[216]]$Name
- "Precursor Adduct"
+ "Top 5 Peaks"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[216]]$Value$StringWithMarkup` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[216]]$Value$StringWithMarkup` is length 5
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[216]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[216]]$Value$StringWithMarkup[[1]]
- String"[M-H]-"
+ String"137.0243 999"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[216]]$Value$StringWithMarkup[[2]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[216]]$Value$StringWithMarkup[[2]]` is a character vector ('93.0345 141')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[216]]$Value$StringWithMarkup[[3]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[216]]$Value$StringWithMarkup[[3]]` is a character vector ('59.0138 108')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[216]]$Value$StringWithMarkup[[4]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[216]]$Value$StringWithMarkup[[4]]` is a character vector ('107.0502 9')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[216]]$Value$StringWithMarkup[[5]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[216]]$Value$StringWithMarkup[[5]]` is a character vector ('179.035 7')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[217]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[217]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[217]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[217]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[217]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[217]]$Name
- "Top 5 Peaks"
+ "SPLASH"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[217]]$Value$StringWithMarkup` is length 5
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[217]]$Value$StringWithMarkup` is length 1
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[217]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[217]]$Value$StringWithMarkup[[1]]
- String"137.0243 999"
+ String"splash10-000i-2900000000-8c55c1f8d7cb7f247a5d"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[217]]$Value$StringWithMarkup[[2]]` is a character vector ('93.0345 141')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[217]]$Value$StringWithMarkup[[2]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[217]]$Value$StringWithMarkup[[3]]` is a character vector ('59.0138 108')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[217]]$Value$StringWithMarkup[[3]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[217]]$Value$StringWithMarkup[[4]]` is a character vector ('107.0502 9')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[217]]$Value$StringWithMarkup[[4]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[217]]$Value$StringWithMarkup[[5]]` is a character vector ('179.035 7')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[217]]$Value$StringWithMarkup[[5]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[217]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[217]]$URL` is a character vector ('https://massbank.eu/MassBank/search?splash=splash10-000i-2900000000-8c55c1f8d7cb7f247a5d')
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[218]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[218]]$Name
- "SPLASH"
+ "Thumbnail"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[218]]$URL vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[218]]$URL
- "https://massbank.eu/MassBank/search?splash=splash10-000i-2900000000-8c55c1f8d7cb7f247a5d"
+ "https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=137.0243:999,93.0345:141,59.0138:108,107.0502:9,179.035:7"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[218]]$Value` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[218]]$Value` is length 2
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[218]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[218]]$Value)
- "StringWithMarkup"
+ "ExternalDataURL"
+ "MimeType"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[218]]$Value$StringWithMarkup` is a list
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[218]]$Value$StringWithMarkup` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[218]]$Value$ExternalDataURL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[218]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=137.0243:999,93.0345:141,59.0138:108,107.0502:9,179.035:7')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[218]]$Value$MimeType` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[218]]$Value$MimeType` is a character vector ('image/svg')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[219]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[219]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[219]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[219]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[219]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[219]]$Name
- "Thumbnail"
+ "License"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[219]]$URL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=137.0243:999,93.0345:141,59.0138:108,107.0502:9,179.035:7')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[219]]$URL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[219]]$Value` is length 2
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[219]]$Value` is length 1
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[219]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[219]]$Value)
- "ExternalDataURL"
- "MimeType"
+ "StringWithMarkup"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[219]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=137.0243:999,93.0345:141,59.0138:108,107.0502:9,179.035:7')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[219]]$Value$ExternalDataURL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[219]]$Value$MimeType` is a character vector ('image/svg')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[219]]$Value$MimeType` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[219]]$Value$StringWithMarkup` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[219]]$Value$StringWithMarkup` is a list
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[220]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[220]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[220]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[220]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[220]]$ReferenceNumber vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[220]]$ReferenceNumber
- 100.0
+ 101.0
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[220]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[220]]$Name
- "License"
+ "Accession ID"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[220]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[220]]$Value$StringWithMarkup[[1]]
- String"CC BY"
+ String"MSBNK-Eawag-EQ357853"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[220]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[220]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Eawag-EQ357853')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[221]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[221]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[221]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[221]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[221]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[221]]$Name
- "Accession ID"
+ "Authors"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[221]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Eawag-EQ357853')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[221]]$URL` is absent
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[221]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[221]]$Value$StringWithMarkup[[1]]
- String"MSBNK-Eawag-EQ357853"
+ String"Stravs M, Schymanski E, Singer H, Department of Environmental Chemistry, Eawag and Thomaidis N, University of Athens"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[222]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[222]]$Name
- "Authors"
+ "Instrument"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[222]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[222]]$Value$StringWithMarkup[[1]]
- String"Stravs M, Schymanski E, Singer H, Department of Environmental Chemistry, Eawag and Thomaidis N, University of Athens"
+ String"Q Exactive Plus Orbitrap Thermo Scientific"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[223]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[223]]$Name
- "Instrument"
+ "Instrument Type"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[223]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[223]]$Value$StringWithMarkup[[1]]
- String"Q Exactive Plus Orbitrap Thermo Scientific"
+ String"LC-ESI-QFT"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[224]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[224]]$Name
- "Instrument Type"
+ "MS Level"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[224]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[224]]$Value$StringWithMarkup[[1]]
- String"LC-ESI-QFT"
+ String"MS2"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[225]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[225]]$Name
- "MS Level"
+ "Ionization Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[225]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[225]]$Value$StringWithMarkup[[1]]
- String"MS2"
+ String"NEGATIVE"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[226]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[226]]$Name
- "Ionization Mode"
+ "Ionization"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[226]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[226]]$Value$StringWithMarkup[[1]]
- String"NEGATIVE"
+ String"ESI"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[227]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[227]]$Name
- "Ionization"
+ "Collision Energy"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[227]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[227]]$Value$StringWithMarkup[[1]]
- String"ESI"
+ String"45 (nominal)"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[228]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[228]]$Name
- "Collision Energy"
+ "Fragmentation Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[228]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[228]]$Value$StringWithMarkup[[1]]
- String"45 (nominal)"
+ String"HCD"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[229]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[229]]$Name
- "Fragmentation Mode"
+ "Column Name"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[229]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[229]]$Value$StringWithMarkup[[1]]
- String"HCD"
+ String"XBridge C18 3.5um, 2.1x50mm, Waters"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[230]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[230]]$Name
- "Column Name"
+ "Retention Time"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[230]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[230]]$Value$StringWithMarkup[[1]]
- String"XBridge C18 3.5um, 2.1x50mm, Waters"
+ String"5.5 min"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[231]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[231]]$Name
- "Retention Time"
+ "Precursor m/z"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[231]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[231]]$Value$StringWithMarkup[[1]]
- String"5.5 min"
+ String"179.035"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[232]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[232]]$Name
- "Precursor m/z"
+ "Precursor Adduct"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[232]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[232]]$Value$StringWithMarkup[[1]]
- String"179.035"
+ String"[M-H]-"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[233]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[233]]$Name
- "Precursor Adduct"
+ "Top 5 Peaks"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[233]]$Value$StringWithMarkup` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[233]]$Value$StringWithMarkup` is length 5
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[233]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[233]]$Value$StringWithMarkup[[1]]
- String"[M-H]-"
+ String"137.0244 999"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[233]]$Value$StringWithMarkup[[2]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[233]]$Value$StringWithMarkup[[2]]` is a character vector ('93.0345 961')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[233]]$Value$StringWithMarkup[[3]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[233]]$Value$StringWithMarkup[[3]]` is a character vector ('59.0138 333')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[233]]$Value$StringWithMarkup[[4]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[233]]$Value$StringWithMarkup[[4]]` is a character vector ('138.0278 8')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[233]]$Value$StringWithMarkup[[5]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[233]]$Value$StringWithMarkup[[5]]` is a character vector ('121.0296 7')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[234]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[234]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[234]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[234]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[234]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[234]]$Name
- "Top 5 Peaks"
+ "SPLASH"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[234]]$Value$StringWithMarkup` is length 5
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[234]]$Value$StringWithMarkup` is length 1
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[234]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[234]]$Value$StringWithMarkup[[1]]
- String"137.0244 999"
+ String"splash10-000l-9700000000-d475fd0478daf18a419a"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[234]]$Value$StringWithMarkup[[2]]` is a character vector ('93.0345 961')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[234]]$Value$StringWithMarkup[[2]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[234]]$Value$StringWithMarkup[[3]]` is a character vector ('59.0138 333')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[234]]$Value$StringWithMarkup[[3]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[234]]$Value$StringWithMarkup[[4]]` is a character vector ('138.0278 8')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[234]]$Value$StringWithMarkup[[4]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[234]]$Value$StringWithMarkup[[5]]` is a character vector ('121.0296 7')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[234]]$Value$StringWithMarkup[[5]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[234]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[234]]$URL` is a character vector ('https://massbank.eu/MassBank/search?splash=splash10-000l-9700000000-d475fd0478daf18a419a')
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[235]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[235]]$Name
- "SPLASH"
+ "Thumbnail"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[235]]$URL vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[235]]$URL
- "https://massbank.eu/MassBank/search?splash=splash10-000l-9700000000-d475fd0478daf18a419a"
+ "https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=137.0244:999,93.0345:961,59.0138:333,138.0278:8,121.0296:7"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[235]]$Value` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[235]]$Value` is length 2
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[235]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[235]]$Value)
- "StringWithMarkup"
+ "ExternalDataURL"
+ "MimeType"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[235]]$Value$StringWithMarkup` is a list
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[235]]$Value$StringWithMarkup` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[235]]$Value$ExternalDataURL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[235]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=137.0244:999,93.0345:961,59.0138:333,138.0278:8,121.0296:7')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[235]]$Value$MimeType` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[235]]$Value$MimeType` is a character vector ('image/svg')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[236]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[236]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[236]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[236]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[236]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[236]]$Name
- "Thumbnail"
+ "License"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[236]]$URL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=137.0244:999,93.0345:961,59.0138:333,138.0278:8,121.0296:7')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[236]]$URL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[236]]$Value` is length 2
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[236]]$Value` is length 1
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[236]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[236]]$Value)
- "ExternalDataURL"
- "MimeType"
+ "StringWithMarkup"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[236]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=137.0244:999,93.0345:961,59.0138:333,138.0278:8,121.0296:7')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[236]]$Value$ExternalDataURL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[236]]$Value$MimeType` is a character vector ('image/svg')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[236]]$Value$MimeType` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[236]]$Value$StringWithMarkup` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[236]]$Value$StringWithMarkup` is a list
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[237]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[237]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[237]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[237]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[237]]$ReferenceNumber vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[237]]$ReferenceNumber
- 101.0
+ 102.0
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[237]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[237]]$Name
- "License"
+ "Accession ID"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[237]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[237]]$Value$StringWithMarkup[[1]]
- String"CC BY"
+ String"MSBNK-Eawag-EQ357854"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[237]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[237]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Eawag-EQ357854')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[238]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[238]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[238]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[238]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[238]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[238]]$Name
- "Accession ID"
+ "Authors"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[238]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Eawag-EQ357854')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[238]]$URL` is absent
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[238]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[238]]$Value$StringWithMarkup[[1]]
- String"MSBNK-Eawag-EQ357854"
+ String"Stravs M, Schymanski E, Singer H, Department of Environmental Chemistry, Eawag and Thomaidis N, University of Athens"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[239]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[239]]$Name
- "Authors"
+ "Instrument"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[239]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[239]]$Value$StringWithMarkup[[1]]
- String"Stravs M, Schymanski E, Singer H, Department of Environmental Chemistry, Eawag and Thomaidis N, University of Athens"
+ String"Q Exactive Plus Orbitrap Thermo Scientific"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[240]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[240]]$Name
- "Instrument"
+ "Instrument Type"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[240]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[240]]$Value$StringWithMarkup[[1]]
- String"Q Exactive Plus Orbitrap Thermo Scientific"
+ String"LC-ESI-QFT"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[241]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[241]]$Name
- "Instrument Type"
+ "MS Level"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[241]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[241]]$Value$StringWithMarkup[[1]]
- String"LC-ESI-QFT"
+ String"MS2"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[242]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[242]]$Name
- "MS Level"
+ "Ionization Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[242]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[242]]$Value$StringWithMarkup[[1]]
- String"MS2"
+ String"NEGATIVE"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[243]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[243]]$Name
- "Ionization Mode"
+ "Ionization"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[243]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[243]]$Value$StringWithMarkup[[1]]
- String"NEGATIVE"
+ String"ESI"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[244]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[244]]$Name
- "Ionization"
+ "Collision Energy"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[244]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[244]]$Value$StringWithMarkup[[1]]
- String"ESI"
+ String"60 (nominal)"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[245]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[245]]$Name
- "Collision Energy"
+ "Fragmentation Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[245]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[245]]$Value$StringWithMarkup[[1]]
- String"60 (nominal)"
+ String"HCD"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[246]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[246]]$Name
- "Fragmentation Mode"
+ "Column Name"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[246]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[246]]$Value$StringWithMarkup[[1]]
- String"HCD"
+ String"XBridge C18 3.5um, 2.1x50mm, Waters"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[247]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[247]]$Name
- "Column Name"
+ "Retention Time"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[247]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[247]]$Value$StringWithMarkup[[1]]
- String"XBridge C18 3.5um, 2.1x50mm, Waters"
+ String"5.5 min"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[248]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[248]]$Name
- "Retention Time"
+ "Precursor m/z"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[248]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[248]]$Value$StringWithMarkup[[1]]
- String"5.5 min"
+ String"179.035"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[249]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[249]]$Name
- "Precursor m/z"
+ "Precursor Adduct"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[249]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[249]]$Value$StringWithMarkup[[1]]
- String"179.035"
+ String"[M-H]-"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[250]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[250]]$Name
- "Precursor Adduct"
+ "Top 5 Peaks"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[250]]$Value$StringWithMarkup` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[250]]$Value$StringWithMarkup` is length 5
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[250]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[250]]$Value$StringWithMarkup[[1]]
- String"[M-H]-"
+ String"93.0345 999"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[250]]$Value$StringWithMarkup[[2]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[250]]$Value$StringWithMarkup[[2]]` is a character vector ('59.0138 286')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[250]]$Value$StringWithMarkup[[3]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[250]]$Value$StringWithMarkup[[3]]` is a character vector ('137.0244 221')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[250]]$Value$StringWithMarkup[[4]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[250]]$Value$StringWithMarkup[[4]]` is a character vector ('135.0452 4')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[250]]$Value$StringWithMarkup[[5]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[250]]$Value$StringWithMarkup[[5]]` is a character vector ('65.0397 4')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[251]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[251]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[251]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[251]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[251]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[251]]$Name
- "Top 5 Peaks"
+ "SPLASH"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[251]]$Value$StringWithMarkup` is length 5
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[251]]$Value$StringWithMarkup` is length 1
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[251]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[251]]$Value$StringWithMarkup[[1]]
- String"93.0345 999"
+ String"splash10-0006-9100000000-3daaf3c8697e17e67869"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[251]]$Value$StringWithMarkup[[2]]` is a character vector ('59.0138 286')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[251]]$Value$StringWithMarkup[[2]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[251]]$Value$StringWithMarkup[[3]]` is a character vector ('137.0244 221')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[251]]$Value$StringWithMarkup[[3]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[251]]$Value$StringWithMarkup[[4]]` is a character vector ('135.0452 4')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[251]]$Value$StringWithMarkup[[4]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[251]]$Value$StringWithMarkup[[5]]` is a character vector ('65.0397 4')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[251]]$Value$StringWithMarkup[[5]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[251]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[251]]$URL` is a character vector ('https://massbank.eu/MassBank/search?splash=splash10-0006-9100000000-3daaf3c8697e17e67869')
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[252]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[252]]$Name
- "SPLASH"
+ "Thumbnail"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[252]]$URL vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[252]]$URL
- "https://massbank.eu/MassBank/search?splash=splash10-0006-9100000000-3daaf3c8697e17e67869"
+ "https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=93.0345:999,59.0138:286,137.0244:221,135.0452:4,65.0397:4"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[252]]$Value` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[252]]$Value` is length 2
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[252]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[252]]$Value)
- "StringWithMarkup"
+ "ExternalDataURL"
+ "MimeType"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[252]]$Value$StringWithMarkup` is a list
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[252]]$Value$StringWithMarkup` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[252]]$Value$ExternalDataURL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[252]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=93.0345:999,59.0138:286,137.0244:221,135.0452:4,65.0397:4')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[252]]$Value$MimeType` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[252]]$Value$MimeType` is a character vector ('image/svg')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[253]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[253]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[253]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[253]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[253]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[253]]$Name
- "Thumbnail"
+ "License"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[253]]$URL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=93.0345:999,59.0138:286,137.0244:221,135.0452:4,65.0397:4')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[253]]$URL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[253]]$Value` is length 2
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[253]]$Value` is length 1
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[253]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[253]]$Value)
- "ExternalDataURL"
- "MimeType"
+ "StringWithMarkup"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[253]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=93.0345:999,59.0138:286,137.0244:221,135.0452:4,65.0397:4')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[253]]$Value$ExternalDataURL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[253]]$Value$MimeType` is a character vector ('image/svg')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[253]]$Value$MimeType` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[253]]$Value$StringWithMarkup` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[253]]$Value$StringWithMarkup` is a list
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[254]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[254]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[254]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[254]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[254]]$ReferenceNumber vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[254]]$ReferenceNumber
- 102.0
+ 103.0
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[254]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[254]]$Name
- "License"
+ "Accession ID"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[254]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[254]]$Value$StringWithMarkup[[1]]
- String"CC BY"
+ String"MSBNK-Eawag-EQ357855"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[254]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[254]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Eawag-EQ357855')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[255]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[255]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[255]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[255]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[255]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[255]]$Name
- "Accession ID"
+ "Authors"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[255]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Eawag-EQ357855')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[255]]$URL` is absent
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[255]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[255]]$Value$StringWithMarkup[[1]]
- String"MSBNK-Eawag-EQ357855"
+ String"Stravs M, Schymanski E, Singer H, Department of Environmental Chemistry, Eawag and Thomaidis N, University of Athens"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[256]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[256]]$Name
- "Authors"
+ "Instrument"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[256]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[256]]$Value$StringWithMarkup[[1]]
- String"Stravs M, Schymanski E, Singer H, Department of Environmental Chemistry, Eawag and Thomaidis N, University of Athens"
+ String"Q Exactive Plus Orbitrap Thermo Scientific"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[257]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[257]]$Name
- "Instrument"
+ "Instrument Type"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[257]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[257]]$Value$StringWithMarkup[[1]]
- String"Q Exactive Plus Orbitrap Thermo Scientific"
+ String"LC-ESI-QFT"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[258]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[258]]$Name
- "Instrument Type"
+ "MS Level"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[258]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[258]]$Value$StringWithMarkup[[1]]
- String"LC-ESI-QFT"
+ String"MS2"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[259]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[259]]$Name
- "MS Level"
+ "Ionization Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[259]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[259]]$Value$StringWithMarkup[[1]]
- String"MS2"
+ String"NEGATIVE"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[260]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[260]]$Name
- "Ionization Mode"
+ "Ionization"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[260]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[260]]$Value$StringWithMarkup[[1]]
- String"NEGATIVE"
+ String"ESI"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[261]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[261]]$Name
- "Ionization"
+ "Collision Energy"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[261]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[261]]$Value$StringWithMarkup[[1]]
- String"ESI"
+ String"75 (nominal)"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[262]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[262]]$Name
- "Collision Energy"
+ "Fragmentation Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[262]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[262]]$Value$StringWithMarkup[[1]]
- String"75 (nominal)"
+ String"HCD"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[263]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[263]]$Name
- "Fragmentation Mode"
+ "Column Name"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[263]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[263]]$Value$StringWithMarkup[[1]]
- String"HCD"
+ String"XBridge C18 3.5um, 2.1x50mm, Waters"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[264]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[264]]$Name
- "Column Name"
+ "Retention Time"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[264]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[264]]$Value$StringWithMarkup[[1]]
- String"XBridge C18 3.5um, 2.1x50mm, Waters"
+ String"5.5 min"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[265]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[265]]$Name
- "Retention Time"
+ "Precursor m/z"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[265]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[265]]$Value$StringWithMarkup[[1]]
- String"5.5 min"
+ String"179.035"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[266]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[266]]$Name
- "Precursor m/z"
+ "Precursor Adduct"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[266]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[266]]$Value$StringWithMarkup[[1]]
- String"179.035"
+ String"[M-H]-"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[267]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[267]]$Name
- "Precursor Adduct"
+ "Top 5 Peaks"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[267]]$Value$StringWithMarkup` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[267]]$Value$StringWithMarkup` is length 4
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[267]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[267]]$Value$StringWithMarkup[[1]]
- String"[M-H]-"
+ String"93.0345 999"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[267]]$Value$StringWithMarkup[[2]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[267]]$Value$StringWithMarkup[[2]]` is a character vector ('59.0138 261')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[267]]$Value$StringWithMarkup[[3]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[267]]$Value$StringWithMarkup[[3]]` is a character vector ('137.0243 45')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[267]]$Value$StringWithMarkup[[4]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[267]]$Value$StringWithMarkup[[4]]` is a character vector ('65.0397 20')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[268]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[268]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[268]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[268]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[268]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[268]]$Name
- "Top 5 Peaks"
+ "SPLASH"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[268]]$Value$StringWithMarkup` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[268]]$Value$StringWithMarkup` is length 1
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[268]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[268]]$Value$StringWithMarkup[[1]]
- String"93.0345 999"
+ String"splash10-0006-9000000000-ee876bcdd1a5c7c229a0"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[268]]$Value$StringWithMarkup[[2]]` is a character vector ('59.0138 261')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[268]]$Value$StringWithMarkup[[2]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[268]]$Value$StringWithMarkup[[3]]` is a character vector ('137.0243 45')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[268]]$Value$StringWithMarkup[[3]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[268]]$Value$StringWithMarkup[[4]]` is a character vector ('65.0397 20')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[268]]$Value$StringWithMarkup[[4]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[268]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[268]]$URL` is a character vector ('https://massbank.eu/MassBank/search?splash=splash10-0006-9000000000-ee876bcdd1a5c7c229a0')
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[269]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[269]]$Name
- "SPLASH"
+ "Thumbnail"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[269]]$URL vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[269]]$URL
- "https://massbank.eu/MassBank/search?splash=splash10-0006-9000000000-ee876bcdd1a5c7c229a0"
+ "https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=93.0345:999,59.0138:261,137.0243:45,65.0397:20,"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[269]]$Value` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[269]]$Value` is length 2
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[269]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[269]]$Value)
- "StringWithMarkup"
+ "ExternalDataURL"
+ "MimeType"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[269]]$Value$StringWithMarkup` is a list
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[269]]$Value$StringWithMarkup` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[269]]$Value$ExternalDataURL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[269]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=93.0345:999,59.0138:261,137.0243:45,65.0397:20,')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[269]]$Value$MimeType` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[269]]$Value$MimeType` is a character vector ('image/svg')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[270]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[270]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[270]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[270]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[270]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[270]]$Name
- "Thumbnail"
+ "License"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[270]]$URL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=93.0345:999,59.0138:261,137.0243:45,65.0397:20,')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[270]]$URL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[270]]$Value` is length 2
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[270]]$Value` is length 1
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[270]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[270]]$Value)
- "ExternalDataURL"
- "MimeType"
+ "StringWithMarkup"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[270]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=93.0345:999,59.0138:261,137.0243:45,65.0397:20,')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[270]]$Value$ExternalDataURL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[270]]$Value$MimeType` is a character vector ('image/svg')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[270]]$Value$MimeType` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[270]]$Value$StringWithMarkup` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[270]]$Value$StringWithMarkup` is a list
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[271]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[271]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[271]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[271]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[271]]$ReferenceNumber vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[271]]$ReferenceNumber
- 103.0
+ 104.0
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[271]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[271]]$Name
- "License"
+ "Accession ID"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[271]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[271]]$Value$StringWithMarkup[[1]]
- String"CC BY"
+ String"MSBNK-Eawag-EQ357856"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[271]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[271]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Eawag-EQ357856')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[272]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[272]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[272]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[272]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[272]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[272]]$Name
- "Accession ID"
+ "Authors"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[272]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Eawag-EQ357856')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[272]]$URL` is absent
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[272]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[272]]$Value$StringWithMarkup[[1]]
- String"MSBNK-Eawag-EQ357856"
+ String"Stravs M, Schymanski E, Singer H, Department of Environmental Chemistry, Eawag and Thomaidis N, University of Athens"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[273]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[273]]$Name
- "Authors"
+ "Instrument"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[273]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[273]]$Value$StringWithMarkup[[1]]
- String"Stravs M, Schymanski E, Singer H, Department of Environmental Chemistry, Eawag and Thomaidis N, University of Athens"
+ String"Q Exactive Plus Orbitrap Thermo Scientific"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[274]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[274]]$Name
- "Instrument"
+ "Instrument Type"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[274]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[274]]$Value$StringWithMarkup[[1]]
- String"Q Exactive Plus Orbitrap Thermo Scientific"
+ String"LC-ESI-QFT"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[275]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[275]]$Name
- "Instrument Type"
+ "MS Level"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[275]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[275]]$Value$StringWithMarkup[[1]]
- String"LC-ESI-QFT"
+ String"MS2"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[276]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[276]]$Name
- "MS Level"
+ "Ionization Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[276]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[276]]$Value$StringWithMarkup[[1]]
- String"MS2"
+ String"NEGATIVE"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[277]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[277]]$Name
- "Ionization Mode"
+ "Ionization"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[277]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[277]]$Value$StringWithMarkup[[1]]
- String"NEGATIVE"
+ String"ESI"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[278]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[278]]$Name
- "Ionization"
+ "Collision Energy"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[278]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[278]]$Value$StringWithMarkup[[1]]
- String"ESI"
+ String"90 (nominal)"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[279]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[279]]$Name
- "Collision Energy"
+ "Fragmentation Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[279]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[279]]$Value$StringWithMarkup[[1]]
- String"90 (nominal)"
+ String"HCD"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[280]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[280]]$Name
- "Fragmentation Mode"
+ "Column Name"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[280]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[280]]$Value$StringWithMarkup[[1]]
- String"HCD"
+ String"XBridge C18 3.5um, 2.1x50mm, Waters"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[281]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[281]]$Name
- "Column Name"
+ "Retention Time"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[281]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[281]]$Value$StringWithMarkup[[1]]
- String"XBridge C18 3.5um, 2.1x50mm, Waters"
+ String"5.5 min"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[282]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[282]]$Name
- "Retention Time"
+ "Precursor m/z"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[282]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[282]]$Value$StringWithMarkup[[1]]
- String"5.5 min"
+ String"179.035"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[283]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[283]]$Name
- "Precursor m/z"
+ "Precursor Adduct"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[283]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[283]]$Value$StringWithMarkup[[1]]
- String"179.035"
+ String"[M-H]-"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[284]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[284]]$Name
- "Precursor Adduct"
+ "Top 5 Peaks"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[284]]$Value$StringWithMarkup` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[284]]$Value$StringWithMarkup` is length 5
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[284]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[284]]$Value$StringWithMarkup[[1]]
- String"[M-H]-"
+ String"93.0345 999"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[284]]$Value$StringWithMarkup[[2]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[284]]$Value$StringWithMarkup[[2]]` is a character vector ('59.0138 249')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[284]]$Value$StringWithMarkup[[3]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[284]]$Value$StringWithMarkup[[3]]` is a character vector ('65.0397 54')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[284]]$Value$StringWithMarkup[[4]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[284]]$Value$StringWithMarkup[[4]]` is a character vector ('137.0243 8')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[284]]$Value$StringWithMarkup[[5]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[284]]$Value$StringWithMarkup[[5]]` is a character vector ('94.0379 8')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[285]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[285]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[285]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[285]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[285]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[285]]$Name
- "Top 5 Peaks"
+ "SPLASH"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[285]]$Value$StringWithMarkup` is length 5
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[285]]$Value$StringWithMarkup` is length 1
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[285]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[285]]$Value$StringWithMarkup[[1]]
- String"93.0345 999"
+ String"splash10-0006-9000000000-cd4e1f8fe0a2bbc869f9"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[285]]$Value$StringWithMarkup[[2]]` is a character vector ('59.0138 249')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[285]]$Value$StringWithMarkup[[2]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[285]]$Value$StringWithMarkup[[3]]` is a character vector ('65.0397 54')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[285]]$Value$StringWithMarkup[[3]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[285]]$Value$StringWithMarkup[[4]]` is a character vector ('137.0243 8')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[285]]$Value$StringWithMarkup[[4]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[285]]$Value$StringWithMarkup[[5]]` is a character vector ('94.0379 8')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[285]]$Value$StringWithMarkup[[5]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[285]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[285]]$URL` is a character vector ('https://massbank.eu/MassBank/search?splash=splash10-0006-9000000000-cd4e1f8fe0a2bbc869f9')
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[286]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[286]]$Name
- "SPLASH"
+ "Thumbnail"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[286]]$URL vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[286]]$URL
- "https://massbank.eu/MassBank/search?splash=splash10-0006-9000000000-cd4e1f8fe0a2bbc869f9"
+ "https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=93.0345:999,59.0138:249,65.0397:54,137.0243:8,94.0379:8"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[286]]$Value` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[286]]$Value` is length 2
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[286]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[286]]$Value)
- "StringWithMarkup"
+ "ExternalDataURL"
+ "MimeType"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[286]]$Value$StringWithMarkup` is a list
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[286]]$Value$StringWithMarkup` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[286]]$Value$ExternalDataURL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[286]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=93.0345:999,59.0138:249,65.0397:54,137.0243:8,94.0379:8')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[286]]$Value$MimeType` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[286]]$Value$MimeType` is a character vector ('image/svg')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[287]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[287]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[287]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[287]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[287]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[287]]$Name
- "Thumbnail"
+ "License"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[287]]$URL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=93.0345:999,59.0138:249,65.0397:54,137.0243:8,94.0379:8')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[287]]$URL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[287]]$Value` is length 2
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[287]]$Value` is length 1
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[287]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[287]]$Value)
- "ExternalDataURL"
- "MimeType"
+ "StringWithMarkup"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[287]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=93.0345:999,59.0138:249,65.0397:54,137.0243:8,94.0379:8')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[287]]$Value$ExternalDataURL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[287]]$Value$MimeType` is a character vector ('image/svg')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[287]]$Value$MimeType` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[287]]$Value$StringWithMarkup` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[287]]$Value$StringWithMarkup` is a list
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[288]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[288]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[288]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[288]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[288]]$ReferenceNumber vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[288]]$ReferenceNumber
- 104.0
+ 105.0
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[288]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[288]]$Name
- "License"
+ "Accession ID"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[288]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[288]]$Value$StringWithMarkup[[1]]
- String"CC BY"
+ String"MSBNK-Eawag-EQ357857"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[288]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[288]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Eawag-EQ357857')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[289]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[289]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[289]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[289]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[289]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[289]]$Name
- "Accession ID"
+ "Authors"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[289]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Eawag-EQ357857')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[289]]$URL` is absent
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[289]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[289]]$Value$StringWithMarkup[[1]]
- String"MSBNK-Eawag-EQ357857"
+ String"Stravs M, Schymanski E, Singer H, Department of Environmental Chemistry, Eawag and Thomaidis N, University of Athens"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[290]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[290]]$Name
- "Authors"
+ "Instrument"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[290]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[290]]$Value$StringWithMarkup[[1]]
- String"Stravs M, Schymanski E, Singer H, Department of Environmental Chemistry, Eawag and Thomaidis N, University of Athens"
+ String"Q Exactive Plus Orbitrap Thermo Scientific"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[291]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[291]]$Name
- "Instrument"
+ "Instrument Type"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[291]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[291]]$Value$StringWithMarkup[[1]]
- String"Q Exactive Plus Orbitrap Thermo Scientific"
+ String"LC-ESI-QFT"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[292]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[292]]$Name
- "Instrument Type"
+ "MS Level"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[292]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[292]]$Value$StringWithMarkup[[1]]
- String"LC-ESI-QFT"
+ String"MS2"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[293]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[293]]$Name
- "MS Level"
+ "Ionization Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[293]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[293]]$Value$StringWithMarkup[[1]]
- String"MS2"
+ String"NEGATIVE"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[294]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[294]]$Name
- "Ionization Mode"
+ "Ionization"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[294]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[294]]$Value$StringWithMarkup[[1]]
- String"NEGATIVE"
+ String"ESI"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[295]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[295]]$Name
- "Ionization"
+ "Collision Energy"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[295]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[295]]$Value$StringWithMarkup[[1]]
- String"ESI"
+ String"120 (nominal)"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[296]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[296]]$Name
- "Collision Energy"
+ "Fragmentation Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[296]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[296]]$Value$StringWithMarkup[[1]]
- String"120 (nominal)"
+ String"HCD"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[297]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[297]]$Name
- "Fragmentation Mode"
+ "Column Name"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[297]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[297]]$Value$StringWithMarkup[[1]]
- String"HCD"
+ String"XBridge C18 3.5um, 2.1x50mm, Waters"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[298]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[298]]$Name
- "Column Name"
+ "Retention Time"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[298]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[298]]$Value$StringWithMarkup[[1]]
- String"XBridge C18 3.5um, 2.1x50mm, Waters"
+ String"5.5 min"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[299]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[299]]$Name
- "Retention Time"
+ "Precursor m/z"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[299]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[299]]$Value$StringWithMarkup[[1]]
- String"5.5 min"
+ String"179.035"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[300]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[300]]$Name
- "Precursor m/z"
+ "Precursor Adduct"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[300]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[300]]$Value$StringWithMarkup[[1]]
- String"179.035"
+ String"[M-H]-"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[301]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[301]]$Name
- "Precursor Adduct"
+ "Top 5 Peaks"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[301]]$Value$StringWithMarkup` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[301]]$Value$StringWithMarkup` is length 5
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[301]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[301]]$Value$StringWithMarkup[[1]]
- String"[M-H]-"
+ String"93.0346 999"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[301]]$Value$StringWithMarkup[[2]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[301]]$Value$StringWithMarkup[[2]]` is a character vector ('59.0138 252')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[301]]$Value$StringWithMarkup[[3]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[301]]$Value$StringWithMarkup[[3]]` is a character vector ('65.0397 229')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[301]]$Value$StringWithMarkup[[4]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[301]]$Value$StringWithMarkup[[4]]` is a character vector ('75.0241 20')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[301]]$Value$StringWithMarkup[[5]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[301]]$Value$StringWithMarkup[[5]]` is a character vector ('67.019 4')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[302]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[302]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[302]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[302]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[302]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[302]]$Name
- "Top 5 Peaks"
+ "SPLASH"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[302]]$Value$StringWithMarkup` is length 5
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[302]]$Value$StringWithMarkup` is length 1
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[302]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[302]]$Value$StringWithMarkup[[1]]
- String"93.0346 999"
+ String"splash10-0006-9000000000-4dca49851b5b9fd03d1a"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[302]]$Value$StringWithMarkup[[2]]` is a character vector ('59.0138 252')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[302]]$Value$StringWithMarkup[[2]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[302]]$Value$StringWithMarkup[[3]]` is a character vector ('65.0397 229')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[302]]$Value$StringWithMarkup[[3]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[302]]$Value$StringWithMarkup[[4]]` is a character vector ('75.0241 20')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[302]]$Value$StringWithMarkup[[4]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[302]]$Value$StringWithMarkup[[5]]` is a character vector ('67.019 4')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[302]]$Value$StringWithMarkup[[5]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[302]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[302]]$URL` is a character vector ('https://massbank.eu/MassBank/search?splash=splash10-0006-9000000000-4dca49851b5b9fd03d1a')
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[303]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[303]]$Name
- "SPLASH"
+ "Thumbnail"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[303]]$URL vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[303]]$URL
- "https://massbank.eu/MassBank/search?splash=splash10-0006-9000000000-4dca49851b5b9fd03d1a"
+ "https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=93.0346:999,59.0138:252,65.0397:229,75.0241:20,67.019:4"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[303]]$Value` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[303]]$Value` is length 2
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[303]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[303]]$Value)
- "StringWithMarkup"
+ "ExternalDataURL"
+ "MimeType"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[303]]$Value$StringWithMarkup` is a list
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[303]]$Value$StringWithMarkup` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[303]]$Value$ExternalDataURL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[303]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=93.0346:999,59.0138:252,65.0397:229,75.0241:20,67.019:4')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[303]]$Value$MimeType` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[303]]$Value$MimeType` is a character vector ('image/svg')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[304]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[304]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[304]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[304]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[304]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[304]]$Name
- "Thumbnail"
+ "License"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[304]]$URL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=93.0346:999,59.0138:252,65.0397:229,75.0241:20,67.019:4')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[304]]$URL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[304]]$Value` is length 2
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[304]]$Value` is length 1
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[304]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[304]]$Value)
- "ExternalDataURL"
- "MimeType"
+ "StringWithMarkup"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[304]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=93.0346:999,59.0138:252,65.0397:229,75.0241:20,67.019:4')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[304]]$Value$ExternalDataURL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[304]]$Value$MimeType` is a character vector ('image/svg')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[304]]$Value$MimeType` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[304]]$Value$StringWithMarkup` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[304]]$Value$StringWithMarkup` is a list
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[305]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[305]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[305]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[305]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[305]]$ReferenceNumber vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[305]]$ReferenceNumber
- 105.0
+ 106.0
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[305]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[305]]$Name
- "License"
+ "Accession ID"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[305]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[305]]$Value$StringWithMarkup[[1]]
- String"CC BY"
+ String"MSBNK-Eawag-EQ357858"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[305]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[305]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Eawag-EQ357858')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[306]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[306]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[306]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[306]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[306]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[306]]$Name
- "Accession ID"
+ "Authors"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[306]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Eawag-EQ357858')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[306]]$URL` is absent
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[306]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[306]]$Value$StringWithMarkup[[1]]
- String"MSBNK-Eawag-EQ357858"
+ String"Stravs M, Schymanski E, Singer H, Department of Environmental Chemistry, Eawag and Thomaidis N, University of Athens"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[307]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[307]]$Name
- "Authors"
+ "Instrument"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[307]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[307]]$Value$StringWithMarkup[[1]]
- String"Stravs M, Schymanski E, Singer H, Department of Environmental Chemistry, Eawag and Thomaidis N, University of Athens"
+ String"Q Exactive Plus Orbitrap Thermo Scientific"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[308]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[308]]$Name
- "Instrument"
+ "Instrument Type"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[308]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[308]]$Value$StringWithMarkup[[1]]
- String"Q Exactive Plus Orbitrap Thermo Scientific"
+ String"LC-ESI-QFT"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[309]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[309]]$Name
- "Instrument Type"
+ "MS Level"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[309]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[309]]$Value$StringWithMarkup[[1]]
- String"LC-ESI-QFT"
+ String"MS2"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[310]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[310]]$Name
- "MS Level"
+ "Ionization Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[310]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[310]]$Value$StringWithMarkup[[1]]
- String"MS2"
+ String"NEGATIVE"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[311]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[311]]$Name
- "Ionization Mode"
+ "Ionization"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[311]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[311]]$Value$StringWithMarkup[[1]]
- String"NEGATIVE"
+ String"ESI"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[312]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[312]]$Name
- "Ionization"
+ "Collision Energy"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[312]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[312]]$Value$StringWithMarkup[[1]]
- String"ESI"
+ String"150 (nominal)"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[313]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[313]]$Name
- "Collision Energy"
+ "Fragmentation Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[313]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[313]]$Value$StringWithMarkup[[1]]
- String"150 (nominal)"
+ String"HCD"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[314]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[314]]$Name
- "Fragmentation Mode"
+ "Column Name"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[314]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[314]]$Value$StringWithMarkup[[1]]
- String"HCD"
+ String"XBridge C18 3.5um, 2.1x50mm, Waters"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[315]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[315]]$Name
- "Column Name"
+ "Retention Time"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[315]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[315]]$Value$StringWithMarkup[[1]]
- String"XBridge C18 3.5um, 2.1x50mm, Waters"
+ String"5.5 min"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[316]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[316]]$Name
- "Retention Time"
+ "Precursor m/z"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[316]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[316]]$Value$StringWithMarkup[[1]]
- String"5.5 min"
+ String"179.035"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[317]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[317]]$Name
- "Precursor m/z"
+ "Precursor Adduct"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[317]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[317]]$Value$StringWithMarkup[[1]]
- String"179.035"
+ String"[M-H]-"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[318]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[318]]$Name
- "Precursor Adduct"
+ "Top 5 Peaks"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[318]]$Value$StringWithMarkup` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[318]]$Value$StringWithMarkup` is length 5
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[318]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[318]]$Value$StringWithMarkup[[1]]
- String"[M-H]-"
+ String"93.0346 999"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[318]]$Value$StringWithMarkup[[2]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[318]]$Value$StringWithMarkup[[2]]` is a character vector ('65.0397 651')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[318]]$Value$StringWithMarkup[[3]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[318]]$Value$StringWithMarkup[[3]]` is a character vector ('59.0138 318')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[318]]$Value$StringWithMarkup[[4]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[318]]$Value$StringWithMarkup[[4]]` is a character vector ('75.024 79')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[318]]$Value$StringWithMarkup[[5]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[318]]$Value$StringWithMarkup[[5]]` is a character vector ('67.0189 18')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[319]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[319]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[319]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[319]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[319]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[319]]$Name
- "Top 5 Peaks"
+ "SPLASH"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[319]]$Value$StringWithMarkup` is length 5
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[319]]$Value$StringWithMarkup` is length 1
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[319]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[319]]$Value$StringWithMarkup[[1]]
- String"93.0346 999"
+ String"splash10-00kf-9000000000-4611655c6aff89d706eb"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[319]]$Value$StringWithMarkup[[2]]` is a character vector ('65.0397 651')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[319]]$Value$StringWithMarkup[[2]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[319]]$Value$StringWithMarkup[[3]]` is a character vector ('59.0138 318')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[319]]$Value$StringWithMarkup[[3]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[319]]$Value$StringWithMarkup[[4]]` is a character vector ('75.024 79')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[319]]$Value$StringWithMarkup[[4]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[319]]$Value$StringWithMarkup[[5]]` is a character vector ('67.0189 18')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[319]]$Value$StringWithMarkup[[5]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[319]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[319]]$URL` is a character vector ('https://massbank.eu/MassBank/search?splash=splash10-00kf-9000000000-4611655c6aff89d706eb')
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[320]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[320]]$Name
- "SPLASH"
+ "Thumbnail"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[320]]$URL vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[320]]$URL
- "https://massbank.eu/MassBank/search?splash=splash10-00kf-9000000000-4611655c6aff89d706eb"
+ "https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=93.0346:999,65.0397:651,59.0138:318,75.024:79,67.0189:18"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[320]]$Value` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[320]]$Value` is length 2
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[320]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[320]]$Value)
- "StringWithMarkup"
+ "ExternalDataURL"
+ "MimeType"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[320]]$Value$StringWithMarkup` is a list
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[320]]$Value$StringWithMarkup` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[320]]$Value$ExternalDataURL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[320]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=93.0346:999,65.0397:651,59.0138:318,75.024:79,67.0189:18')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[320]]$Value$MimeType` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[320]]$Value$MimeType` is a character vector ('image/svg')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[321]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[321]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[321]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[321]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[321]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[321]]$Name
- "Thumbnail"
+ "License"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[321]]$URL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=93.0346:999,65.0397:651,59.0138:318,75.024:79,67.0189:18')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[321]]$URL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[321]]$Value` is length 2
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[321]]$Value` is length 1
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[321]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[321]]$Value)
- "ExternalDataURL"
- "MimeType"
+ "StringWithMarkup"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[321]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=93.0346:999,65.0397:651,59.0138:318,75.024:79,67.0189:18')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[321]]$Value$ExternalDataURL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[321]]$Value$MimeType` is a character vector ('image/svg')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[321]]$Value$MimeType` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[321]]$Value$StringWithMarkup` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[321]]$Value$StringWithMarkup` is a list
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[322]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[322]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[322]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[322]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[322]]$ReferenceNumber vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[322]]$ReferenceNumber
- 106.0
+ 107.0
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[322]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[322]]$Name
- "License"
+ "Accession ID"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[322]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[322]]$Value$StringWithMarkup[[1]]
- String"CC BY"
+ String"MSBNK-Eawag-EQ357859"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[322]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[322]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Eawag-EQ357859')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[323]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[323]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[323]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[323]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[323]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[323]]$Name
- "Accession ID"
+ "Authors"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[323]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Eawag-EQ357859')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[323]]$URL` is absent
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[323]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[323]]$Value$StringWithMarkup[[1]]
- String"MSBNK-Eawag-EQ357859"
+ String"Stravs M, Schymanski E, Singer H, Department of Environmental Chemistry, Eawag and Thomaidis N, University of Athens"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[324]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[324]]$Name
- "Authors"
+ "Instrument"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[324]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[324]]$Value$StringWithMarkup[[1]]
- String"Stravs M, Schymanski E, Singer H, Department of Environmental Chemistry, Eawag and Thomaidis N, University of Athens"
+ String"Q Exactive Plus Orbitrap Thermo Scientific"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[325]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[325]]$Name
- "Instrument"
+ "Instrument Type"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[325]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[325]]$Value$StringWithMarkup[[1]]
- String"Q Exactive Plus Orbitrap Thermo Scientific"
+ String"LC-ESI-QFT"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[326]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[326]]$Name
- "Instrument Type"
+ "MS Level"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[326]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[326]]$Value$StringWithMarkup[[1]]
- String"LC-ESI-QFT"
+ String"MS2"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[327]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[327]]$Name
- "MS Level"
+ "Ionization Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[327]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[327]]$Value$StringWithMarkup[[1]]
- String"MS2"
+ String"NEGATIVE"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[328]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[328]]$Name
- "Ionization Mode"
+ "Ionization"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[328]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[328]]$Value$StringWithMarkup[[1]]
- String"NEGATIVE"
+ String"ESI"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[329]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[329]]$Name
- "Ionization"
+ "Collision Energy"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[329]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[329]]$Value$StringWithMarkup[[1]]
- String"ESI"
+ String"180 (nominal)"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[330]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[330]]$Name
- "Collision Energy"
+ "Fragmentation Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[330]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[330]]$Value$StringWithMarkup[[1]]
- String"180 (nominal)"
+ String"HCD"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[331]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[331]]$Name
- "Fragmentation Mode"
+ "Column Name"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[331]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[331]]$Value$StringWithMarkup[[1]]
- String"HCD"
+ String"XBridge C18 3.5um, 2.1x50mm, Waters"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[332]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[332]]$Name
- "Column Name"
+ "Retention Time"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[332]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[332]]$Value$StringWithMarkup[[1]]
- String"XBridge C18 3.5um, 2.1x50mm, Waters"
+ String"5.5 min"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[333]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[333]]$Name
- "Retention Time"
+ "Precursor m/z"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[333]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[333]]$Value$StringWithMarkup[[1]]
- String"5.5 min"
+ String"179.035"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[334]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[334]]$Name
- "Precursor m/z"
+ "Precursor Adduct"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[334]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[334]]$Value$StringWithMarkup[[1]]
- String"179.035"
+ String"[M-H]-"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[335]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[335]]$Name
- "Precursor Adduct"
+ "Top 5 Peaks"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[335]]$Value$StringWithMarkup` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[335]]$Value$StringWithMarkup` is length 5
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[335]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[335]]$Value$StringWithMarkup[[1]]
- String"[M-H]-"
+ String"65.0397 999"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[335]]$Value$StringWithMarkup[[2]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[335]]$Value$StringWithMarkup[[2]]` is a character vector ('93.0345 746')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[335]]$Value$StringWithMarkup[[3]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[335]]$Value$StringWithMarkup[[3]]` is a character vector ('59.0138 348')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[335]]$Value$StringWithMarkup[[4]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[335]]$Value$StringWithMarkup[[4]]` is a character vector ('75.0241 98')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[335]]$Value$StringWithMarkup[[5]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[335]]$Value$StringWithMarkup[[5]]` is a character vector ('67.0189 47')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[336]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[336]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[336]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[336]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[336]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[336]]$Name
- "Top 5 Peaks"
+ "SPLASH"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[336]]$Value$StringWithMarkup` is length 5
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[336]]$Value$StringWithMarkup` is length 1
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[336]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[336]]$Value$StringWithMarkup[[1]]
- String"65.0397 999"
+ String"splash10-014l-9000000000-4d636e2d7318b857528d"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[336]]$Value$StringWithMarkup[[2]]` is a character vector ('93.0345 746')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[336]]$Value$StringWithMarkup[[2]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[336]]$Value$StringWithMarkup[[3]]` is a character vector ('59.0138 348')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[336]]$Value$StringWithMarkup[[3]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[336]]$Value$StringWithMarkup[[4]]` is a character vector ('75.0241 98')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[336]]$Value$StringWithMarkup[[4]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[336]]$Value$StringWithMarkup[[5]]` is a character vector ('67.0189 47')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[336]]$Value$StringWithMarkup[[5]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[336]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[336]]$URL` is a character vector ('https://massbank.eu/MassBank/search?splash=splash10-014l-9000000000-4d636e2d7318b857528d')
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[337]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[337]]$Name
- "SPLASH"
+ "Thumbnail"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[337]]$URL vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[337]]$URL
- "https://massbank.eu/MassBank/search?splash=splash10-014l-9000000000-4d636e2d7318b857528d"
+ "https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=65.0397:999,93.0345:746,59.0138:348,75.0241:98,67.0189:47"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[337]]$Value` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[337]]$Value` is length 2
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[337]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[337]]$Value)
- "StringWithMarkup"
+ "ExternalDataURL"
+ "MimeType"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[337]]$Value$StringWithMarkup` is a list
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[337]]$Value$StringWithMarkup` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[337]]$Value$ExternalDataURL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[337]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=65.0397:999,93.0345:746,59.0138:348,75.0241:98,67.0189:47')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[337]]$Value$MimeType` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[337]]$Value$MimeType` is a character vector ('image/svg')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[338]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[338]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[338]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[338]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[338]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[338]]$Name
- "Thumbnail"
+ "License"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[338]]$URL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=65.0397:999,93.0345:746,59.0138:348,75.0241:98,67.0189:47')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[338]]$URL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[338]]$Value` is length 2
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[338]]$Value` is length 1
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[338]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[338]]$Value)
- "ExternalDataURL"
- "MimeType"
+ "StringWithMarkup"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[338]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=65.0397:999,93.0345:746,59.0138:348,75.0241:98,67.0189:47')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[338]]$Value$ExternalDataURL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[338]]$Value$MimeType` is a character vector ('image/svg')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[338]]$Value$MimeType` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[338]]$Value$StringWithMarkup` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[338]]$Value$StringWithMarkup` is a list
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[339]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[339]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[339]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[339]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[339]]$ReferenceNumber vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[339]]$ReferenceNumber
- 107.0
+ 112.0
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[339]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[339]]$Name
- "License"
+ "Accession ID"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[339]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[339]]$Value$StringWithMarkup[[1]]
- String"CC BY"
+ String"MSBNK-RIKEN_ReSpect-PS101902"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[339]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[339]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-RIKEN_ReSpect-PS101902')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[340]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[340]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[340]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[340]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[340]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[340]]$Name
- "Accession ID"
+ "Authors"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[340]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-RIKEN_ReSpect-PS101902')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[340]]$URL` is absent
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[340]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[340]]$Value$StringWithMarkup[[1]]
- String"MSBNK-RIKEN_ReSpect-PS101902"
+ String"Sawada Y, Matsuda F, and Hirai MY. Plant Science Center, RIKEN"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[341]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[341]]$Name
- "Authors"
+ "Instrument"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[341]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[341]]$Value$StringWithMarkup[[1]]
- String"Sawada Y, Matsuda F, and Hirai MY. Plant Science Center, RIKEN"
+ String"TQD, Waters"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[342]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[342]]$Name
- "Instrument"
+ "Instrument Type"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[342]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[342]]$Value$StringWithMarkup[[1]]
- String"TQD, Waters"
+ String"LC-ESI-QQ"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[343]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[343]]$Name
- "Instrument Type"
+ "MS Level"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[343]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[343]]$Value$StringWithMarkup[[1]]
- String"LC-ESI-QQ"
+ String"MS2"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[344]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[344]]$Name
- "MS Level"
+ "Ionization Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[344]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[344]]$Value$StringWithMarkup[[1]]
- String"MS2"
+ String"POSITIVE"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[345]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[345]]$Name
- "Ionization Mode"
+ "Ionization"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[345]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[345]]$Value$StringWithMarkup[[1]]
- String"POSITIVE"
+ String"ESI"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[346]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[346]]$Name
- "Ionization"
+ "Collision Energy"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[346]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[346]]$Value$StringWithMarkup[[1]]
- String"ESI"
+ String"20"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[347]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[347]]$Name
- "Collision Energy"
+ "Precursor m/z"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[347]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[347]]$Value$StringWithMarkup[[1]]
- String"20"
+ String"181.12"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[348]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[348]]$Name
- "Precursor m/z"
+ "Top 5 Peaks"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[348]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[348]]$Value$StringWithMarkup[[1]]
- String"181.12"
+ String"99 999"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[349]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[349]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[349]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[349]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[349]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[349]]$Name
- "Top 5 Peaks"
+ "SPLASH"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[349]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[349]]$Value$StringWithMarkup[[1]]
- String"99 999"
+ String"splash10-0002-9000000000-e5837555ecff4ecf9652"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[349]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[349]]$URL` is a character vector ('https://massbank.eu/MassBank/search?splash=splash10-0002-9000000000-e5837555ecff4ecf9652')
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[350]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[350]]$Name
- "SPLASH"
+ "Thumbnail"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[350]]$URL vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[350]]$URL
- "https://massbank.eu/MassBank/search?splash=splash10-0002-9000000000-e5837555ecff4ecf9652"
+ "https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=99:999,"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[350]]$Value` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[350]]$Value` is length 2
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[350]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[350]]$Value)
- "StringWithMarkup"
+ "ExternalDataURL"
+ "MimeType"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[350]]$Value$StringWithMarkup` is a list
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[350]]$Value$StringWithMarkup` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[350]]$Value$ExternalDataURL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[350]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=99:999,')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[350]]$Value$MimeType` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[350]]$Value$MimeType` is a character vector ('image/svg')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[351]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[351]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[351]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[351]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[351]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[351]]$Name
- "Thumbnail"
+ "License"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[351]]$URL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=99:999,')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[351]]$URL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[351]]$Value` is length 2
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[351]]$Value` is length 1
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[351]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[351]]$Value)
- "ExternalDataURL"
- "MimeType"
+ "StringWithMarkup"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[351]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=99:999,')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[351]]$Value$ExternalDataURL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[351]]$Value$MimeType` is a character vector ('image/svg')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[351]]$Value$MimeType` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[351]]$Value$StringWithMarkup` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[351]]$Value$StringWithMarkup` is a list
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[352]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[352]]$Name
- "License"
+ "Reference"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[352]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[352]]$Value$StringWithMarkup[[1]]
- String"CC BY-NC"
+ String"Sawada, Y.; Akiyama, K.; Sakata, A.; Kuwahara, A.; Otsuki, H.; Sakurai, T.; Saito, K.; Hirai, M. Y. Widely Targeted Metabolomics Based on Large-Scale MS/MS Data for Elucidating Metabolite Accumulation Patterns in Plants. Plant and Cell Physiology 2008, 50 (1), 37-47. DOI:10.1093/pcp/pcn183"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[353]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[353]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[353]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[353]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[353]]$ReferenceNumber vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[353]]$ReferenceNumber
- 112.0
+ 113.0
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[353]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[353]]$Name
- "Reference"
+ "Accession ID"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[353]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[353]]$Value$StringWithMarkup[[1]]
- String"Sawada, Y.; Akiyama, K.; Sakata, A.; Kuwahara, A.; Otsuki, H.; Sakurai, T.; Saito, K.; Hirai, M. Y. Widely Targeted Metabolomics Based on Large-Scale MS/MS Data for Elucidating Metabolite Accumulation Patterns in Plants. Plant and Cell Physiology 2008, 50 (1), 37-47. DOI:10.1093/pcp/pcn183"
+ String"MSBNK-Waters-WA000527"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[353]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[353]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Waters-WA000527')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[354]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[354]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[354]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[354]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[354]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[354]]$Name
- "Accession ID"
+ "Authors"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[354]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Waters-WA000527')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[354]]$URL` is absent
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[354]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[354]]$Value$StringWithMarkup[[1]]
- String"MSBNK-Waters-WA000527"
+ String"Nihon Waters K.K."
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[355]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[355]]$Name
- "Authors"
+ "Instrument"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[355]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[355]]$Value$StringWithMarkup[[1]]
- String"Nihon Waters K.K."
+ String"ZQ, Waters"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[356]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[356]]$Name
- "Instrument"
+ "Instrument Type"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[356]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[356]]$Value$StringWithMarkup[[1]]
- String"ZQ, Waters"
+ String"LC-ESI-Q"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[357]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[357]]$Name
- "Instrument Type"
+ "MS Level"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[357]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[357]]$Value$StringWithMarkup[[1]]
- String"LC-ESI-Q"
+ String"MS"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[358]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[358]]$Name
- "MS Level"
+ "Ionization Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[358]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[358]]$Value$StringWithMarkup[[1]]
- String"MS"
+ String"NEGATIVE"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[359]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[359]]$Name
- "Ionization Mode"
+ "Ionization"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[359]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[359]]$Value$StringWithMarkup[[1]]
- String"NEGATIVE"
+ String"ESI"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[360]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[360]]$Name
- "Ionization"
+ "Column Name"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[360]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[360]]$Value$StringWithMarkup[[1]]
- String"ESI"
+ String"2.1 mm id - 3. 5{mu}m XTerra C18MS"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[361]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[361]]$Name
- "Column Name"
+ "Retention Time"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[361]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[361]]$Value$StringWithMarkup[[1]]
- String"2.1 mm id - 3. 5{mu}m XTerra C18MS"
+ String"12.900 min"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[362]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[362]]$Name
- "Retention Time"
+ "Top 5 Peaks"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[362]]$Value$StringWithMarkup` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[362]]$Value$StringWithMarkup` is length 5
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[362]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[362]]$Value$StringWithMarkup[[1]]
- String"12.900 min"
+ String"93 999"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[362]]$Value$StringWithMarkup[[2]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[362]]$Value$StringWithMarkup[[2]]` is a character vector ('91 106')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[362]]$Value$StringWithMarkup[[3]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[362]]$Value$StringWithMarkup[[3]]` is a character vector ('92 67')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[362]]$Value$StringWithMarkup[[4]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[362]]$Value$StringWithMarkup[[4]]` is a character vector ('94 67')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[362]]$Value$StringWithMarkup[[5]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[362]]$Value$StringWithMarkup[[5]]` is a character vector ('137 24')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[363]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[363]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[363]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[363]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[363]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[363]]$Name
- "Top 5 Peaks"
+ "SPLASH"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[363]]$Value$StringWithMarkup` is length 5
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[363]]$Value$StringWithMarkup` is length 1
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[363]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[363]]$Value$StringWithMarkup[[1]]
- String"93 999"
+ String"splash10-0006-9000000000-afe34149c86ef00cd97d"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[363]]$Value$StringWithMarkup[[2]]` is a character vector ('91 106')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[363]]$Value$StringWithMarkup[[2]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[363]]$Value$StringWithMarkup[[3]]` is a character vector ('92 67')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[363]]$Value$StringWithMarkup[[3]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[363]]$Value$StringWithMarkup[[4]]` is a character vector ('94 67')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[363]]$Value$StringWithMarkup[[4]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[363]]$Value$StringWithMarkup[[5]]` is a character vector ('137 24')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[363]]$Value$StringWithMarkup[[5]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[363]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[363]]$URL` is a character vector ('https://massbank.eu/MassBank/search?splash=splash10-0006-9000000000-afe34149c86ef00cd97d')
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[364]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[364]]$Name
- "SPLASH"
+ "Thumbnail"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[364]]$URL vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[364]]$URL
- "https://massbank.eu/MassBank/search?splash=splash10-0006-9000000000-afe34149c86ef00cd97d"
+ "https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=93:999,91:106,92:67,94:67,137:24"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[364]]$Value` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[364]]$Value` is length 2
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[364]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[364]]$Value)
- "StringWithMarkup"
+ "ExternalDataURL"
+ "MimeType"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[364]]$Value$StringWithMarkup` is a list
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[364]]$Value$StringWithMarkup` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[364]]$Value$ExternalDataURL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[364]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=93:999,91:106,92:67,94:67,137:24')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[364]]$Value$MimeType` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[364]]$Value$MimeType` is a character vector ('image/svg')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[365]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[365]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[365]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[365]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[365]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[365]]$Name
- "Thumbnail"
+ "License"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[365]]$URL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=93:999,91:106,92:67,94:67,137:24')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[365]]$URL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[365]]$Value` is length 2
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[365]]$Value` is length 1
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[365]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[365]]$Value)
- "ExternalDataURL"
- "MimeType"
+ "StringWithMarkup"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[365]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=93:999,91:106,92:67,94:67,137:24')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[365]]$Value$ExternalDataURL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[365]]$Value$MimeType` is a character vector ('image/svg')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[365]]$Value$MimeType` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[365]]$Value$StringWithMarkup` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[365]]$Value$StringWithMarkup` is a list
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[366]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[366]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[366]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[366]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[366]]$ReferenceNumber vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[366]]$ReferenceNumber
- 113.0
+ 114.0
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[366]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[366]]$Name
- "License"
+ "Accession ID"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[366]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[366]]$Value$StringWithMarkup[[1]]
- String"CC BY-NC"
+ String"MSBNK-Waters-WA000528"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[366]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[366]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Waters-WA000528')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[367]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[367]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[367]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[367]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[367]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[367]]$Name
- "Accession ID"
+ "Authors"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[367]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Waters-WA000528')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[367]]$URL` is absent
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[367]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[367]]$Value$StringWithMarkup[[1]]
- String"MSBNK-Waters-WA000528"
+ String"Nihon Waters K.K."
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[368]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[368]]$Name
- "Authors"
+ "Instrument"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[368]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[368]]$Value$StringWithMarkup[[1]]
- String"Nihon Waters K.K."
+ String"ZQ, Waters"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[369]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[369]]$Name
- "Instrument"
+ "Instrument Type"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[369]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[369]]$Value$StringWithMarkup[[1]]
- String"ZQ, Waters"
+ String"LC-ESI-Q"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[370]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[370]]$Name
- "Instrument Type"
+ "MS Level"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[370]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[370]]$Value$StringWithMarkup[[1]]
- String"LC-ESI-Q"
+ String"MS"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[371]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[371]]$Name
- "MS Level"
+ "Ionization Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[371]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[371]]$Value$StringWithMarkup[[1]]
- String"MS"
+ String"NEGATIVE"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[372]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[372]]$Name
- "Ionization Mode"
+ "Ionization"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[372]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[372]]$Value$StringWithMarkup[[1]]
- String"NEGATIVE"
+ String"ESI"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[373]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[373]]$Name
- "Ionization"
+ "Column Name"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[373]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[373]]$Value$StringWithMarkup[[1]]
- String"ESI"
+ String"2.1 mm id - 3. 5{mu}m XTerra C18MS"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[374]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[374]]$Name
- "Column Name"
+ "Retention Time"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[374]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[374]]$Value$StringWithMarkup[[1]]
- String"2.1 mm id - 3. 5{mu}m XTerra C18MS"
+ String"12.900 min"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[375]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[375]]$Name
- "Retention Time"
+ "Top 5 Peaks"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[375]]$Value$StringWithMarkup` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[375]]$Value$StringWithMarkup` is length 5
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[375]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[375]]$Value$StringWithMarkup[[1]]
- String"12.900 min"
+ String"93 999"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[375]]$Value$StringWithMarkup[[2]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[375]]$Value$StringWithMarkup[[2]]` is a character vector ('137 302')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[375]]$Value$StringWithMarkup[[3]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[375]]$Value$StringWithMarkup[[3]]` is a character vector ('135 63')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[375]]$Value$StringWithMarkup[[4]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[375]]$Value$StringWithMarkup[[4]]` is a character vector ('94 59')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[375]]$Value$StringWithMarkup[[5]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[375]]$Value$StringWithMarkup[[5]]` is a character vector ('138 20')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[376]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[376]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[376]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[376]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[376]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[376]]$Name
- "Top 5 Peaks"
+ "SPLASH"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[376]]$Value$StringWithMarkup` is length 5
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[376]]$Value$StringWithMarkup` is length 1
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[376]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[376]]$Value$StringWithMarkup[[1]]
- String"93 999"
+ String"splash10-0006-9300000000-0a6b0df68710626b84f9"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[376]]$Value$StringWithMarkup[[2]]` is a character vector ('137 302')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[376]]$Value$StringWithMarkup[[2]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[376]]$Value$StringWithMarkup[[3]]` is a character vector ('135 63')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[376]]$Value$StringWithMarkup[[3]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[376]]$Value$StringWithMarkup[[4]]` is a character vector ('94 59')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[376]]$Value$StringWithMarkup[[4]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[376]]$Value$StringWithMarkup[[5]]` is a character vector ('138 20')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[376]]$Value$StringWithMarkup[[5]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[376]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[376]]$URL` is a character vector ('https://massbank.eu/MassBank/search?splash=splash10-0006-9300000000-0a6b0df68710626b84f9')
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[377]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[377]]$Name
- "SPLASH"
+ "Thumbnail"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[377]]$URL vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[377]]$URL
- "https://massbank.eu/MassBank/search?splash=splash10-0006-9300000000-0a6b0df68710626b84f9"
+ "https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=93:999,137:302,135:63,94:59,138:20"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[377]]$Value` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[377]]$Value` is length 2
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[377]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[377]]$Value)
- "StringWithMarkup"
+ "ExternalDataURL"
+ "MimeType"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[377]]$Value$StringWithMarkup` is a list
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[377]]$Value$StringWithMarkup` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[377]]$Value$ExternalDataURL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[377]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=93:999,137:302,135:63,94:59,138:20')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[377]]$Value$MimeType` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[377]]$Value$MimeType` is a character vector ('image/svg')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[378]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[378]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[378]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[378]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[378]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[378]]$Name
- "Thumbnail"
+ "License"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[378]]$URL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=93:999,137:302,135:63,94:59,138:20')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[378]]$URL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[378]]$Value` is length 2
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[378]]$Value` is length 1
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[378]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[378]]$Value)
- "ExternalDataURL"
- "MimeType"
+ "StringWithMarkup"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[378]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=93:999,137:302,135:63,94:59,138:20')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[378]]$Value$ExternalDataURL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[378]]$Value$MimeType` is a character vector ('image/svg')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[378]]$Value$MimeType` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[378]]$Value$StringWithMarkup` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[378]]$Value$StringWithMarkup` is a list
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[379]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[379]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[379]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[379]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[379]]$ReferenceNumber vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[379]]$ReferenceNumber
- 114.0
+ 115.0
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[379]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[379]]$Name
- "License"
+ "Accession ID"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[379]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[379]]$Value$StringWithMarkup[[1]]
- String"CC BY-NC"
+ String"MSBNK-Waters-WA000529"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[379]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[379]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Waters-WA000529')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[380]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[380]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[380]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[380]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[380]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[380]]$Name
- "Accession ID"
+ "Authors"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[380]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Waters-WA000529')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[380]]$URL` is absent
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[380]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[380]]$Value$StringWithMarkup[[1]]
- String"MSBNK-Waters-WA000529"
+ String"Nihon Waters K.K."
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[381]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[381]]$Name
- "Authors"
+ "Instrument"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[381]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[381]]$Value$StringWithMarkup[[1]]
- String"Nihon Waters K.K."
+ String"ZQ, Waters"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[382]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[382]]$Name
- "Instrument"
+ "Instrument Type"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[382]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[382]]$Value$StringWithMarkup[[1]]
- String"ZQ, Waters"
+ String"LC-ESI-Q"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[383]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[383]]$Name
- "Instrument Type"
+ "MS Level"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[383]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[383]]$Value$StringWithMarkup[[1]]
- String"LC-ESI-Q"
+ String"MS"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[384]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[384]]$Name
- "MS Level"
+ "Ionization Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[384]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[384]]$Value$StringWithMarkup[[1]]
- String"MS"
+ String"NEGATIVE"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[385]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[385]]$Name
- "Ionization Mode"
+ "Ionization"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[385]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[385]]$Value$StringWithMarkup[[1]]
- String"NEGATIVE"
+ String"ESI"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[386]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[386]]$Name
- "Ionization"
+ "Column Name"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[386]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[386]]$Value$StringWithMarkup[[1]]
- String"ESI"
+ String"2.1 mm id - 3. 5{mu}m XTerra C18MS"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[387]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[387]]$Name
- "Column Name"
+ "Retention Time"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[387]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[387]]$Value$StringWithMarkup[[1]]
- String"2.1 mm id - 3. 5{mu}m XTerra C18MS"
+ String"12.900 min"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[388]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[388]]$Name
- "Retention Time"
+ "Top 5 Peaks"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[388]]$Value$StringWithMarkup` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[388]]$Value$StringWithMarkup` is length 5
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[388]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[388]]$Value$StringWithMarkup[[1]]
- String"12.900 min"
+ String"137 999"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[388]]$Value$StringWithMarkup[[2]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[388]]$Value$StringWithMarkup[[2]]` is a character vector ('93 86')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[388]]$Value$StringWithMarkup[[3]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[388]]$Value$StringWithMarkup[[3]]` is a character vector ('179 86')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[388]]$Value$StringWithMarkup[[4]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[388]]$Value$StringWithMarkup[[4]]` is a character vector ('138 78')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[388]]$Value$StringWithMarkup[[5]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[388]]$Value$StringWithMarkup[[5]]` is a character vector ('135 20')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[389]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[389]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[389]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[389]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[389]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[389]]$Name
- "Top 5 Peaks"
+ "SPLASH"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[389]]$Value$StringWithMarkup` is length 5
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[389]]$Value$StringWithMarkup` is length 1
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[389]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[389]]$Value$StringWithMarkup[[1]]
- String"137 999"
+ String"splash10-000i-0900000000-2714fe91b8ca12090cc7"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[389]]$Value$StringWithMarkup[[2]]` is a character vector ('93 86')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[389]]$Value$StringWithMarkup[[2]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[389]]$Value$StringWithMarkup[[3]]` is a character vector ('179 86')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[389]]$Value$StringWithMarkup[[3]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[389]]$Value$StringWithMarkup[[4]]` is a character vector ('138 78')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[389]]$Value$StringWithMarkup[[4]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[389]]$Value$StringWithMarkup[[5]]` is a character vector ('135 20')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[389]]$Value$StringWithMarkup[[5]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[389]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[389]]$URL` is a character vector ('https://massbank.eu/MassBank/search?splash=splash10-000i-0900000000-2714fe91b8ca12090cc7')
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[390]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[390]]$Name
- "SPLASH"
+ "Thumbnail"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[390]]$URL vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[390]]$URL
- "https://massbank.eu/MassBank/search?splash=splash10-000i-0900000000-2714fe91b8ca12090cc7"
+ "https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=137:999,93:86,179:86,138:78,135:20"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[390]]$Value` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[390]]$Value` is length 2
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[390]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[390]]$Value)
- "StringWithMarkup"
+ "ExternalDataURL"
+ "MimeType"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[390]]$Value$StringWithMarkup` is a list
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[390]]$Value$StringWithMarkup` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[390]]$Value$ExternalDataURL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[390]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=137:999,93:86,179:86,138:78,135:20')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[390]]$Value$MimeType` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[390]]$Value$MimeType` is a character vector ('image/svg')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[391]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[391]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[391]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[391]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[391]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[391]]$Name
- "Thumbnail"
+ "License"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[391]]$URL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=137:999,93:86,179:86,138:78,135:20')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[391]]$URL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[391]]$Value` is length 2
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[391]]$Value` is length 1
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[391]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[391]]$Value)
- "ExternalDataURL"
- "MimeType"
+ "StringWithMarkup"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[391]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=137:999,93:86,179:86,138:78,135:20')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[391]]$Value$ExternalDataURL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[391]]$Value$MimeType` is a character vector ('image/svg')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[391]]$Value$MimeType` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[391]]$Value$StringWithMarkup` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[391]]$Value$StringWithMarkup` is a list
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[392]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[392]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[392]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[392]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[392]]$ReferenceNumber vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[392]]$ReferenceNumber
- 115.0
+ 116.0
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[392]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[392]]$Name
- "License"
+ "Accession ID"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[392]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[392]]$Value$StringWithMarkup[[1]]
- String"CC BY-NC"
+ String"MSBNK-Waters-WA000530"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[392]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[392]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Waters-WA000530')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[393]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[393]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[393]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[393]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[393]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[393]]$Name
- "Accession ID"
+ "Authors"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[393]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Waters-WA000530')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[393]]$URL` is absent
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[393]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[393]]$Value$StringWithMarkup[[1]]
- String"MSBNK-Waters-WA000530"
+ String"Nihon Waters K.K."
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[394]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[394]]$Name
- "Authors"
+ "Instrument"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[394]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[394]]$Value$StringWithMarkup[[1]]
- String"Nihon Waters K.K."
+ String"ZQ, Waters"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[395]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[395]]$Name
- "Instrument"
+ "Instrument Type"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[395]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[395]]$Value$StringWithMarkup[[1]]
- String"ZQ, Waters"
+ String"LC-ESI-Q"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[396]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[396]]$Name
- "Instrument Type"
+ "MS Level"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[396]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[396]]$Value$StringWithMarkup[[1]]
- String"LC-ESI-Q"
+ String"MS"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[397]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[397]]$Name
- "MS Level"
+ "Ionization Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[397]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[397]]$Value$StringWithMarkup[[1]]
- String"MS"
+ String"NEGATIVE"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[398]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[398]]$Name
- "Ionization Mode"
+ "Ionization"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[398]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[398]]$Value$StringWithMarkup[[1]]
- String"NEGATIVE"
+ String"ESI"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[399]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[399]]$Name
- "Ionization"
+ "Column Name"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[399]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[399]]$Value$StringWithMarkup[[1]]
- String"ESI"
+ String"2.1 mm id - 3. 5{mu}m XTerra C18MS"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[400]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[400]]$Name
- "Column Name"
+ "Retention Time"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[400]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[400]]$Value$StringWithMarkup[[1]]
- String"2.1 mm id - 3. 5{mu}m XTerra C18MS"
+ String"12.900 min"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[401]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[401]]$Name
- "Retention Time"
+ "Top 5 Peaks"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[401]]$Value$StringWithMarkup` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[401]]$Value$StringWithMarkup` is length 5
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[401]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[401]]$Value$StringWithMarkup[[1]]
- String"12.900 min"
+ String"137 999"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[401]]$Value$StringWithMarkup[[2]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[401]]$Value$StringWithMarkup[[2]]` is a character vector ('179 619')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[401]]$Value$StringWithMarkup[[3]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[401]]$Value$StringWithMarkup[[3]]` is a character vector ('138 59')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[401]]$Value$StringWithMarkup[[4]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[401]]$Value$StringWithMarkup[[4]]` is a character vector ('180 59')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[401]]$Value$StringWithMarkup[[5]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[401]]$Value$StringWithMarkup[[5]]` is a character vector ('92 47')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[402]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[402]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[402]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[402]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[402]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[402]]$Name
- "Top 5 Peaks"
+ "SPLASH"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[402]]$Value$StringWithMarkup` is length 5
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[402]]$Value$StringWithMarkup` is length 1
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[402]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[402]]$Value$StringWithMarkup[[1]]
- String"137 999"
+ String"splash10-002r-0900000000-9f77fb7a74c16d228a78"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[402]]$Value$StringWithMarkup[[2]]` is a character vector ('179 619')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[402]]$Value$StringWithMarkup[[2]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[402]]$Value$StringWithMarkup[[3]]` is a character vector ('138 59')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[402]]$Value$StringWithMarkup[[3]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[402]]$Value$StringWithMarkup[[4]]` is a character vector ('180 59')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[402]]$Value$StringWithMarkup[[4]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[402]]$Value$StringWithMarkup[[5]]` is a character vector ('92 47')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[402]]$Value$StringWithMarkup[[5]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[402]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[402]]$URL` is a character vector ('https://massbank.eu/MassBank/search?splash=splash10-002r-0900000000-9f77fb7a74c16d228a78')
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[403]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[403]]$Name
- "SPLASH"
+ "Thumbnail"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[403]]$URL vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[403]]$URL
- "https://massbank.eu/MassBank/search?splash=splash10-002r-0900000000-9f77fb7a74c16d228a78"
+ "https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=137:999,179:619,138:59,180:59,92:47"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[403]]$Value` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[403]]$Value` is length 2
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[403]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[403]]$Value)
- "StringWithMarkup"
+ "ExternalDataURL"
+ "MimeType"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[403]]$Value$StringWithMarkup` is a list
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[403]]$Value$StringWithMarkup` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[403]]$Value$ExternalDataURL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[403]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=137:999,179:619,138:59,180:59,92:47')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[403]]$Value$MimeType` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[403]]$Value$MimeType` is a character vector ('image/svg')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[404]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[404]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[404]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[404]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[404]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[404]]$Name
- "Thumbnail"
+ "License"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[404]]$URL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=137:999,179:619,138:59,180:59,92:47')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[404]]$URL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[404]]$Value` is length 2
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[404]]$Value` is length 1
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[404]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[404]]$Value)
- "ExternalDataURL"
- "MimeType"
+ "StringWithMarkup"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[404]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=137:999,179:619,138:59,180:59,92:47')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[404]]$Value$ExternalDataURL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[404]]$Value$MimeType` is a character vector ('image/svg')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[404]]$Value$MimeType` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[404]]$Value$StringWithMarkup` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[404]]$Value$StringWithMarkup` is a list
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[405]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[405]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[405]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[405]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[405]]$ReferenceNumber vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[405]]$ReferenceNumber
- 116.0
+ 121.0
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[405]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[405]]$Name
- "License"
+ "MoNA ID"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[405]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[405]]$Value$StringWithMarkup[[1]]
- String"CC BY-NC"
+ String"WA000530"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[405]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[405]]$URL` is a character vector ('https://mona.fiehnlab.ucdavis.edu/spectra/display/WA000530')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[406]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[406]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[406]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[406]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[406]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[406]]$Name
- "MoNA ID"
+ "MS Category"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[406]]$URL` is a character vector ('https://mona.fiehnlab.ucdavis.edu/spectra/display/WA000530')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[406]]$URL` is absent
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[406]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[406]]$Value$StringWithMarkup[[1]]
- String"WA000530"
+ String"Experimental"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[407]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[407]]$Name
- "MS Category"
+ "MS Type"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[407]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[407]]$Value$StringWithMarkup[[1]]
- String"Experimental"
+ String"LC-MS"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[408]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[408]]$Name
- "MS Type"
+ "MS Level"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[408]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[408]]$Value$StringWithMarkup[[1]]
- String"LC-MS"
+ String"MS1"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[409]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[409]]$Name
- "MS Level"
+ "Instrument"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[409]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[409]]$Value$StringWithMarkup[[1]]
- String"MS1"
+ String"ZQ, Waters"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[410]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[410]]$Name
- "Instrument"
+ "Instrument Type"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[410]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[410]]$Value$StringWithMarkup[[1]]
- String"ZQ, Waters"
+ String"LC-ESI-Q"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[411]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[411]]$Name
- "Instrument Type"
+ "Ionization"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[411]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[411]]$Value$StringWithMarkup[[1]]
- String"LC-ESI-Q"
+ String"ESI"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[412]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[412]]$Name
- "Ionization"
+ "Ionization Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[412]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[412]]$Value$StringWithMarkup[[1]]
- String"ESI"
+ String"negative"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[413]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[413]]$Name
- "Ionization Mode"
+ "Retention Time"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[413]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[413]]$Value$StringWithMarkup[[1]]
- String"negative"
+ String"12.900 min"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[414]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[414]]$Name
- "Retention Time"
+ "Top 5 Peaks"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[414]]$Value$StringWithMarkup` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[414]]$Value$StringWithMarkup` is length 5
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[414]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[414]]$Value$StringWithMarkup[[1]]
- String"12.900 min"
+ String"137 100"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[414]]$Value$StringWithMarkup[[2]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[414]]$Value$StringWithMarkup[[2]]` is a character vector ('179 61.96')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[414]]$Value$StringWithMarkup[[3]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[414]]$Value$StringWithMarkup[[3]]` is a character vector ('180 5.91')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[414]]$Value$StringWithMarkup[[4]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[414]]$Value$StringWithMarkup[[4]]` is a character vector ('138 5.91')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[414]]$Value$StringWithMarkup[[5]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[414]]$Value$StringWithMarkup[[5]]` is a character vector ('92 4.70')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[415]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[415]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[415]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[415]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[415]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[415]]$Name
- "Top 5 Peaks"
+ "SPLASH"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[415]]$Value$StringWithMarkup` is length 5
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[415]]$Value$StringWithMarkup` is length 1
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[415]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[415]]$Value$StringWithMarkup[[1]]
- String"137 100"
+ String"splash10-002r-0900000000-9f77fb7a74c16d228a78"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[415]]$Value$StringWithMarkup[[2]]` is a character vector ('179 61.96')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[415]]$Value$StringWithMarkup[[2]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[415]]$Value$StringWithMarkup[[3]]` is a character vector ('180 5.91')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[415]]$Value$StringWithMarkup[[3]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[415]]$Value$StringWithMarkup[[4]]` is a character vector ('138 5.91')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[415]]$Value$StringWithMarkup[[4]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[415]]$Value$StringWithMarkup[[5]]` is a character vector ('92 4.70')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[415]]$Value$StringWithMarkup[[5]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[415]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[415]]$URL` is a character vector ('https://mona.fiehnlab.ucdavis.edu/spectra/browse?query=exists(splash.splash:%27splash10-002r-0900000000-9f77fb7a74c16d228a78%27)')
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[416]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[416]]$Name
- "SPLASH"
+ "Thumbnail"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[416]]$URL vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[416]]$URL
- "https://mona.fiehnlab.ucdavis.edu/spectra/browse?query=exists(splash.splash:%27splash10-002r-0900000000-9f77fb7a74c16d228a78%27)"
+ "https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=137:100,179:61.96,180:5.91,138:5.91,92:4.70"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[416]]$Value` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[416]]$Value` is length 2
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[416]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[416]]$Value)
- "StringWithMarkup"
+ "ExternalDataURL"
+ "MimeType"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[416]]$Value$StringWithMarkup` is a list
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[416]]$Value$StringWithMarkup` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[416]]$Value$ExternalDataURL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[416]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=137:100,179:61.96,180:5.91,138:5.91,92:4.70')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[416]]$Value$MimeType` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[416]]$Value$MimeType` is a character vector ('image/svg')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[417]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[417]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[417]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[417]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[417]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[417]]$Name
- "Thumbnail"
+ "License"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[417]]$URL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=137:100,179:61.96,180:5.91,138:5.91,92:4.70')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[417]]$URL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[417]]$Value` is length 2
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[417]]$Value` is length 1
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[417]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[417]]$Value)
- "ExternalDataURL"
- "MimeType"
+ "StringWithMarkup"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[417]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=137:100,179:61.96,180:5.91,138:5.91,92:4.70')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[417]]$Value$ExternalDataURL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[417]]$Value$MimeType` is a character vector ('image/svg')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[417]]$Value$MimeType` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[417]]$Value$StringWithMarkup` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[417]]$Value$StringWithMarkup` is a list
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[418]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[418]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[418]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[418]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[418]]$ReferenceNumber vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[418]]$ReferenceNumber
- 121.0
+ 122.0
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[418]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[418]]$Name
- "License"
+ "MoNA ID"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[418]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[418]]$Value$StringWithMarkup[[1]]
- String"CC BY-NC"
+ String"WA000529"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[418]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[418]]$URL` is a character vector ('https://mona.fiehnlab.ucdavis.edu/spectra/display/WA000529')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[419]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[419]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[419]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[419]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[419]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[419]]$Name
- "MoNA ID"
+ "MS Category"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[419]]$URL` is a character vector ('https://mona.fiehnlab.ucdavis.edu/spectra/display/WA000529')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[419]]$URL` is absent
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[419]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[419]]$Value$StringWithMarkup[[1]]
- String"WA000529"
+ String"Experimental"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[420]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[420]]$Name
- "MS Category"
+ "MS Type"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[420]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[420]]$Value$StringWithMarkup[[1]]
- String"Experimental"
+ String"LC-MS"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[421]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[421]]$Name
- "MS Type"
+ "MS Level"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[421]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[421]]$Value$StringWithMarkup[[1]]
- String"LC-MS"
+ String"MS1"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[422]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[422]]$Name
- "MS Level"
+ "Instrument"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[422]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[422]]$Value$StringWithMarkup[[1]]
- String"MS1"
+ String"ZQ, Waters"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[423]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[423]]$Name
- "Instrument"
+ "Instrument Type"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[423]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[423]]$Value$StringWithMarkup[[1]]
- String"ZQ, Waters"
+ String"LC-ESI-Q"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[424]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[424]]$Name
- "Instrument Type"
+ "Ionization"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[424]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[424]]$Value$StringWithMarkup[[1]]
- String"LC-ESI-Q"
+ String"ESI"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[425]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[425]]$Name
- "Ionization"
+ "Ionization Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[425]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[425]]$Value$StringWithMarkup[[1]]
- String"ESI"
+ String"negative"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[426]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[426]]$Name
- "Ionization Mode"
+ "Retention Time"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[426]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[426]]$Value$StringWithMarkup[[1]]
- String"negative"
+ String"12.900 min"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[427]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[427]]$Name
- "Retention Time"
+ "Top 5 Peaks"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[427]]$Value$StringWithMarkup` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[427]]$Value$StringWithMarkup` is length 5
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[427]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[427]]$Value$StringWithMarkup[[1]]
- String"12.900 min"
+ String"137 100"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[427]]$Value$StringWithMarkup[[2]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[427]]$Value$StringWithMarkup[[2]]` is a character vector ('179 8.61')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[427]]$Value$StringWithMarkup[[3]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[427]]$Value$StringWithMarkup[[3]]` is a character vector ('93 8.61')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[427]]$Value$StringWithMarkup[[4]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[427]]$Value$StringWithMarkup[[4]]` is a character vector ('138 7.81')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[427]]$Value$StringWithMarkup[[5]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[427]]$Value$StringWithMarkup[[5]]` is a character vector ('135 2')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[428]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[428]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[428]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[428]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[428]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[428]]$Name
- "Top 5 Peaks"
+ "SPLASH"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[428]]$Value$StringWithMarkup` is length 5
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[428]]$Value$StringWithMarkup` is length 1
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[428]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[428]]$Value$StringWithMarkup[[1]]
- String"137 100"
+ String"splash10-000i-0900000000-2714fe91b8ca12090cc7"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[428]]$Value$StringWithMarkup[[2]]` is a character vector ('179 8.61')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[428]]$Value$StringWithMarkup[[2]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[428]]$Value$StringWithMarkup[[3]]` is a character vector ('93 8.61')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[428]]$Value$StringWithMarkup[[3]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[428]]$Value$StringWithMarkup[[4]]` is a character vector ('138 7.81')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[428]]$Value$StringWithMarkup[[4]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[428]]$Value$StringWithMarkup[[5]]` is a character vector ('135 2')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[428]]$Value$StringWithMarkup[[5]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[428]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[428]]$URL` is a character vector ('https://mona.fiehnlab.ucdavis.edu/spectra/browse?query=exists(splash.splash:%27splash10-000i-0900000000-2714fe91b8ca12090cc7%27)')
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[429]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[429]]$Name
- "SPLASH"
+ "Thumbnail"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[429]]$URL vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[429]]$URL
- "https://mona.fiehnlab.ucdavis.edu/spectra/browse?query=exists(splash.splash:%27splash10-000i-0900000000-2714fe91b8ca12090cc7%27)"
+ "https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=137:100,93:8.61,179:8.61,138:7.81,135:2"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[429]]$Value` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[429]]$Value` is length 2
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[429]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[429]]$Value)
- "StringWithMarkup"
+ "ExternalDataURL"
+ "MimeType"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[429]]$Value$StringWithMarkup` is a list
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[429]]$Value$StringWithMarkup` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[429]]$Value$ExternalDataURL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[429]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=137:100,93:8.61,179:8.61,138:7.81,135:2')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[429]]$Value$MimeType` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[429]]$Value$MimeType` is a character vector ('image/svg')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[430]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[430]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[430]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[430]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[430]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[430]]$Name
- "Thumbnail"
+ "License"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[430]]$URL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=137:100,93:8.61,179:8.61,138:7.81,135:2')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[430]]$URL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[430]]$Value` is length 2
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[430]]$Value` is length 1
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[430]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[430]]$Value)
- "ExternalDataURL"
- "MimeType"
+ "StringWithMarkup"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[430]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=137:100,93:8.61,179:8.61,138:7.81,135:2')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[430]]$Value$ExternalDataURL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[430]]$Value$MimeType` is a character vector ('image/svg')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[430]]$Value$MimeType` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[430]]$Value$StringWithMarkup` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[430]]$Value$StringWithMarkup` is a list
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[431]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[431]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[431]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[431]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[431]]$ReferenceNumber vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[431]]$ReferenceNumber
- 122.0
+ 123.0
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[431]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[431]]$Name
- "License"
+ "MoNA ID"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[431]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[431]]$Value$StringWithMarkup[[1]]
- String"CC BY-NC"
+ String"WA000528"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[431]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[431]]$URL` is a character vector ('https://mona.fiehnlab.ucdavis.edu/spectra/display/WA000528')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[432]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[432]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[432]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[432]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[432]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[432]]$Name
- "MoNA ID"
+ "MS Category"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[432]]$URL` is a character vector ('https://mona.fiehnlab.ucdavis.edu/spectra/display/WA000528')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[432]]$URL` is absent
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[432]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[432]]$Value$StringWithMarkup[[1]]
- String"WA000528"
+ String"Experimental"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[433]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[433]]$Name
- "MS Category"
+ "MS Type"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[433]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[433]]$Value$StringWithMarkup[[1]]
- String"Experimental"
+ String"LC-MS"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[434]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[434]]$Name
- "MS Type"
+ "MS Level"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[434]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[434]]$Value$StringWithMarkup[[1]]
- String"LC-MS"
+ String"MS1"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[435]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[435]]$Name
- "MS Level"
+ "Instrument"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[435]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[435]]$Value$StringWithMarkup[[1]]
- String"MS1"
+ String"ZQ, Waters"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[436]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[436]]$Name
- "Instrument"
+ "Instrument Type"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[436]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[436]]$Value$StringWithMarkup[[1]]
- String"ZQ, Waters"
+ String"LC-ESI-Q"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[437]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[437]]$Name
- "Instrument Type"
+ "Ionization"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[437]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[437]]$Value$StringWithMarkup[[1]]
- String"LC-ESI-Q"
+ String"ESI"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[438]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[438]]$Name
- "Ionization"
+ "Ionization Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[438]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[438]]$Value$StringWithMarkup[[1]]
- String"ESI"
+ String"negative"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[439]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[439]]$Name
- "Ionization Mode"
+ "Retention Time"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[439]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[439]]$Value$StringWithMarkup[[1]]
- String"negative"
+ String"12.900 min"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[440]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[440]]$Name
- "Retention Time"
+ "Top 5 Peaks"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[440]]$Value$StringWithMarkup` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[440]]$Value$StringWithMarkup` is length 5
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[440]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[440]]$Value$StringWithMarkup[[1]]
- String"12.900 min"
+ String"93 100"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[440]]$Value$StringWithMarkup[[2]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[440]]$Value$StringWithMarkup[[2]]` is a character vector ('137 30.23')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[440]]$Value$StringWithMarkup[[3]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[440]]$Value$StringWithMarkup[[3]]` is a character vector ('135 6.31')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[440]]$Value$StringWithMarkup[[4]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[440]]$Value$StringWithMarkup[[4]]` is a character vector ('94 5.91')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[440]]$Value$StringWithMarkup[[5]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[440]]$Value$StringWithMarkup[[5]]` is a character vector ('179 2')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[441]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[441]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[441]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[441]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[441]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[441]]$Name
- "Top 5 Peaks"
+ "SPLASH"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[441]]$Value$StringWithMarkup` is length 5
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[441]]$Value$StringWithMarkup` is length 1
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[441]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[441]]$Value$StringWithMarkup[[1]]
- String"93 100"
+ String"splash10-0006-9300000000-0a6b0df68710626b84f9"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[441]]$Value$StringWithMarkup[[2]]` is a character vector ('137 30.23')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[441]]$Value$StringWithMarkup[[2]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[441]]$Value$StringWithMarkup[[3]]` is a character vector ('135 6.31')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[441]]$Value$StringWithMarkup[[3]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[441]]$Value$StringWithMarkup[[4]]` is a character vector ('94 5.91')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[441]]$Value$StringWithMarkup[[4]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[441]]$Value$StringWithMarkup[[5]]` is a character vector ('179 2')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[441]]$Value$StringWithMarkup[[5]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[441]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[441]]$URL` is a character vector ('https://mona.fiehnlab.ucdavis.edu/spectra/browse?query=exists(splash.splash:%27splash10-0006-9300000000-0a6b0df68710626b84f9%27)')
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[442]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[442]]$Name
- "SPLASH"
+ "Thumbnail"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[442]]$URL vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[442]]$URL
- "https://mona.fiehnlab.ucdavis.edu/spectra/browse?query=exists(splash.splash:%27splash10-0006-9300000000-0a6b0df68710626b84f9%27)"
+ "https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=93:100,137:30.23,135:6.31,94:5.91,138:2"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[442]]$Value` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[442]]$Value` is length 2
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[442]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[442]]$Value)
- "StringWithMarkup"
+ "ExternalDataURL"
+ "MimeType"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[442]]$Value$StringWithMarkup` is a list
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[442]]$Value$StringWithMarkup` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[442]]$Value$ExternalDataURL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[442]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=93:100,137:30.23,135:6.31,94:5.91,138:2')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[442]]$Value$MimeType` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[442]]$Value$MimeType` is a character vector ('image/svg')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[443]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[443]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[443]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[443]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[443]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[443]]$Name
- "Thumbnail"
+ "License"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[443]]$URL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=93:100,137:30.23,135:6.31,94:5.91,138:2')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[443]]$URL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[443]]$Value` is length 2
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[443]]$Value` is length 1
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[443]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[443]]$Value)
- "ExternalDataURL"
- "MimeType"
+ "StringWithMarkup"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[443]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=93:100,137:30.23,135:6.31,94:5.91,138:2')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[443]]$Value$ExternalDataURL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[443]]$Value$MimeType` is a character vector ('image/svg')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[443]]$Value$MimeType` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[443]]$Value$StringWithMarkup` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[443]]$Value$StringWithMarkup` is a list
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[444]]$ReferenceNumber vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[444]]$ReferenceNumber
- 123.0
+ 178.0
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[444]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[444]]$Name
- "License"
+ "Instrument Name"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[444]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[444]]$Value$StringWithMarkup[[1]]
- String"CC BY-NC"
+ String"QStar XL, AB Sciex"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[445]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[445]]$Name
- "Instrument Name"
+ "Technique"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[445]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[445]]$Value$StringWithMarkup[[1]]
- String"QStar XL, AB Sciex"
+ String"Q-TOF"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[446]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[446]]$Name
- "Technique"
+ "Source of Spectrum"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[446]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[446]]$Value$StringWithMarkup[[1]]
- String"Q-TOF"
+ String"Herbert Oberacher, Institute of Legal Medicine, Innsbruck/Austria"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[447]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[447]]$Name
- "Source of Spectrum"
+ "Copyright"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[447]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[447]]$Value$StringWithMarkup[[1]]
- String"Herbert Oberacher, Institute of Legal Medicine, Innsbruck/Austria"
+ String"Copyright © 2012-2025 Herbert Oberacher. All Rights Reserved."
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[448]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[448]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[448]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[448]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[448]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[448]]$Name
- "Copyright"
+ "Thumbnail"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[448]]$Value` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[448]]$Value` is length 2
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[448]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[448]]$Value)
- "StringWithMarkup"
+ "ExternalDataURL"
+ "MimeType"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[448]]$Value$StringWithMarkup` is a list
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[448]]$Value$StringWithMarkup` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[448]]$Value$ExternalDataURL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[448]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/rest/pug_view/data/key/46361679_1')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[448]]$Value$MimeType` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[448]]$Value$MimeType` is a character vector ('image/png')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[448]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[448]]$URL` is a character vector ('https://spectrabase.com/spectrum/qMHxN2looQ')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[449]]` is a list
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[3]]$Information[[449]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information` is length 64
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information` is length 63
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[12]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[12]]$Value$StringWithMarkup[[1]]
- String"11.163700"
+ String"11.1637"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[14]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[14]]$Name
- "Precursor Adduct"
+ "Top 5 Peaks"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[14]]$Value$StringWithMarkup` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[14]]$Value$StringWithMarkup` is length 5
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[14]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[14]]$Value$StringWithMarkup[[1]]
- String"[M+H]+"
+ String"149.02261 999"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[14]]$Value$StringWithMarkup[[2]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[14]]$Value$StringWithMarkup[[2]]` is a character vector ('149.02432 962')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[14]]$Value$StringWithMarkup[[3]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[14]]$Value$StringWithMarkup[[3]]` is a character vector ('163.03806 621')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[14]]$Value$StringWithMarkup[[4]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[14]]$Value$StringWithMarkup[[4]]` is a character vector ('163.04001 601')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[14]]$Value$StringWithMarkup[[5]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[14]]$Value$StringWithMarkup[[5]]` is a character vector ('121.02809 176')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[15]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[15]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[15]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[15]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[15]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[15]]$Name
- "Top 5 Peaks"
+ "SPLASH"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[15]]$Value$StringWithMarkup` is length 5
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[15]]$Value$StringWithMarkup` is length 1
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[15]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[15]]$Value$StringWithMarkup[[1]]
- String"149.02261 999"
+ String"splash10-01ot-0900000000-99289ae972d2e0d3a907"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[15]]$Value$StringWithMarkup[[2]]` is a character vector ('149.02432 962')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[15]]$Value$StringWithMarkup[[2]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[15]]$Value$StringWithMarkup[[3]]` is a character vector ('163.03806 621')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[15]]$Value$StringWithMarkup[[3]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[15]]$Value$StringWithMarkup[[4]]` is a character vector ('163.04001 601')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[15]]$Value$StringWithMarkup[[4]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[15]]$Value$StringWithMarkup[[5]]` is a character vector ('121.02809 176')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[15]]$Value$StringWithMarkup[[5]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[15]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[15]]$URL` is a character vector ('https://massbank.eu/MassBank/search?splash=splash10-01ot-0900000000-99289ae972d2e0d3a907')
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[16]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[16]]$Name
- "SPLASH"
+ "Thumbnail"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[16]]$URL vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[16]]$URL
- "https://massbank.eu/MassBank/search?splash=splash10-01ot-0900000000-99289ae972d2e0d3a907"
+ "https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=149.02261:999,149.02432:962,163.03806:621,163.04001:601,121.02809:176"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[16]]$Value` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[16]]$Value` is length 2
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[16]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[16]]$Value)
- "StringWithMarkup"
+ "ExternalDataURL"
+ "MimeType"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[16]]$Value$StringWithMarkup` is a list
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[16]]$Value$StringWithMarkup` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[16]]$Value$ExternalDataURL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[16]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=149.02261:999,149.02432:962,163.03806:621,163.04001:601,121.02809:176')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[16]]$Value$MimeType` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[16]]$Value$MimeType` is a character vector ('image/svg')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[17]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[17]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[17]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[17]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[17]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[17]]$Name
- "Thumbnail"
+ "License"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[17]]$URL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=149.02261:999,149.02432:962,163.03806:621,163.04001:601,121.02809:176')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[17]]$URL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[17]]$Value` is length 2
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[17]]$Value` is length 1
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[17]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[17]]$Value)
- "ExternalDataURL"
- "MimeType"
+ "StringWithMarkup"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[17]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=149.02261:999,149.02432:962,163.03806:621,163.04001:601,121.02809:176')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[17]]$Value$ExternalDataURL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[17]]$Value$MimeType` is a character vector ('image/svg')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[17]]$Value$MimeType` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[17]]$Value$StringWithMarkup` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[17]]$Value$StringWithMarkup` is a list
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[18]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[18]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[18]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[18]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[18]]$ReferenceNumber vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[18]]$ReferenceNumber
- 87.0
+ 108.0
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[18]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[18]]$Name
- "License"
+ "Accession ID"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[18]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[18]]$Value$StringWithMarkup[[1]]
- String"CC BY"
+ String"MSBNK-Fac_Eng_Univ_Tokyo-JP003093"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[18]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[18]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Fac_Eng_Univ_Tokyo-JP003093')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[19]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[19]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[19]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[19]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[19]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[19]]$Name
- "Accession ID"
+ "Authors"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[19]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Fac_Eng_Univ_Tokyo-JP003093')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[19]]$URL` is absent
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[19]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[19]]$Value$StringWithMarkup[[1]]
- String"MSBNK-Fac_Eng_Univ_Tokyo-JP003093"
+ String"SASAKI S, TOYOHASHI UNIV. OF TECH."
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[20]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[20]]$Name
- "Authors"
+ "Instrument"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[20]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[20]]$Value$StringWithMarkup[[1]]
- String"SASAKI S, TOYOHASHI UNIV. OF TECH."
+ String"Unknown"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[21]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[21]]$Name
- "Instrument"
+ "Instrument Type"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[21]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[21]]$Value$StringWithMarkup[[1]]
- String"Unknown"
+ String"EI-B"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[22]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[22]]$Name
- "Instrument Type"
+ "MS Level"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[22]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[22]]$Value$StringWithMarkup[[1]]
- String"EI-B"
+ String"MS"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[23]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[23]]$Name
- "MS Level"
+ "Ionization Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[23]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[23]]$Value$StringWithMarkup[[1]]
- String"MS"
+ String"POSITIVE"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[24]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[24]]$Name
- "Ionization Mode"
+ "Top 5 Peaks"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[24]]$Value$StringWithMarkup` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[24]]$Value$StringWithMarkup` is length 5
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[24]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[24]]$Value$StringWithMarkup[[1]]
- String"POSITIVE"
+ String"120 999"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[24]]$Value$StringWithMarkup[[2]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[24]]$Value$StringWithMarkup[[2]]` is a character vector ('92 552')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[24]]$Value$StringWithMarkup[[3]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[24]]$Value$StringWithMarkup[[3]]` is a character vector ('28 419')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[24]]$Value$StringWithMarkup[[4]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[24]]$Value$StringWithMarkup[[4]]` is a character vector ('42 310')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[24]]$Value$StringWithMarkup[[5]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[24]]$Value$StringWithMarkup[[5]]` is a character vector ('121 204')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[25]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[25]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[25]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[25]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[25]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[25]]$Name
- "Top 5 Peaks"
+ "SPLASH"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[25]]$Value$StringWithMarkup` is length 5
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[25]]$Value$StringWithMarkup` is length 1
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[25]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[25]]$Value$StringWithMarkup[[1]]
- String"120 999"
+ String"splash10-00dl-9400000000-64327d3bef0063cf4fe1"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[25]]$Value$StringWithMarkup[[2]]` is a character vector ('92 552')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[25]]$Value$StringWithMarkup[[2]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[25]]$Value$StringWithMarkup[[3]]` is a character vector ('28 419')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[25]]$Value$StringWithMarkup[[3]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[25]]$Value$StringWithMarkup[[4]]` is a character vector ('42 310')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[25]]$Value$StringWithMarkup[[4]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[25]]$Value$StringWithMarkup[[5]]` is a character vector ('121 204')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[25]]$Value$StringWithMarkup[[5]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[25]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[25]]$URL` is a character vector ('https://massbank.eu/MassBank/search?splash=splash10-00dl-9400000000-64327d3bef0063cf4fe1')
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[26]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[26]]$Name
- "SPLASH"
+ "Thumbnail"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[26]]$URL vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[26]]$URL
- "https://massbank.eu/MassBank/search?splash=splash10-00dl-9400000000-64327d3bef0063cf4fe1"
+ "https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=120:999,92:552,28:419,42:310,121:204"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[26]]$Value` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[26]]$Value` is length 2
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[26]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[26]]$Value)
- "StringWithMarkup"
+ "ExternalDataURL"
+ "MimeType"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[26]]$Value$StringWithMarkup` is a list
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[26]]$Value$StringWithMarkup` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[26]]$Value$ExternalDataURL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[26]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=120:999,92:552,28:419,42:310,121:204')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[26]]$Value$MimeType` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[26]]$Value$MimeType` is a character vector ('image/svg')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[27]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[27]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[27]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[27]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[27]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[27]]$Name
- "Thumbnail"
+ "License"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[27]]$URL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=120:999,92:552,28:419,42:310,121:204')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[27]]$URL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[27]]$Value` is length 2
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[27]]$Value` is length 1
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[27]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[27]]$Value)
- "ExternalDataURL"
- "MimeType"
+ "StringWithMarkup"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[27]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=120:999,92:552,28:419,42:310,121:204')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[27]]$Value$ExternalDataURL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[27]]$Value$MimeType` is a character vector ('image/svg')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[27]]$Value$MimeType` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[27]]$Value$StringWithMarkup` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[27]]$Value$StringWithMarkup` is a list
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[28]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[28]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[28]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[28]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[28]]$ReferenceNumber vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[28]]$ReferenceNumber
- 108.0
+ 109.0
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[28]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[28]]$Name
- "License"
+ "Accession ID"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[28]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[28]]$Value$StringWithMarkup[[1]]
- String"CC BY-NC-SA"
+ String"MSBNK-Fac_Eng_Univ_Tokyo-JP003149"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[28]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[28]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Fac_Eng_Univ_Tokyo-JP003149')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[29]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[29]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[29]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[29]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[29]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[29]]$Name
- "Accession ID"
+ "Authors"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[29]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-Fac_Eng_Univ_Tokyo-JP003149')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[29]]$URL` is absent
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[29]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[29]]$Value$StringWithMarkup[[1]]
- String"MSBNK-Fac_Eng_Univ_Tokyo-JP003149"
+ String"YOSHIZUMI H, FAC. OF PHARMACY, MEIJO UNIV."
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[30]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[30]]$Name
- "Authors"
+ "Instrument"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[30]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[30]]$Value$StringWithMarkup[[1]]
- String"YOSHIZUMI H, FAC. OF PHARMACY, MEIJO UNIV."
+ String"Unknown"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[31]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[31]]$Name
- "Instrument"
+ "Instrument Type"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[31]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[31]]$Value$StringWithMarkup[[1]]
- String"Unknown"
+ String"CI-B"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[32]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[32]]$Name
- "Instrument Type"
+ "MS Level"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[32]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[32]]$Value$StringWithMarkup[[1]]
- String"CI-B"
+ String"MS"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[33]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[33]]$Name
- "MS Level"
+ "Ionization Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[33]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[33]]$Value$StringWithMarkup[[1]]
- String"MS"
+ String"POSITIVE"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[34]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[34]]$Name
- "Ionization Mode"
+ "Top 5 Peaks"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[34]]$Value$StringWithMarkup` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[34]]$Value$StringWithMarkup` is length 5
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[34]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[34]]$Value$StringWithMarkup[[1]]
- String"POSITIVE"
+ String"121 999"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[34]]$Value$StringWithMarkup[[2]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[34]]$Value$StringWithMarkup[[2]]` is a character vector ('163 340')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[34]]$Value$StringWithMarkup[[3]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[34]]$Value$StringWithMarkup[[3]]` is a character vector ('181 170')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[34]]$Value$StringWithMarkup[[4]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[34]]$Value$StringWithMarkup[[4]]` is a character vector ('122 80')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[34]]$Value$StringWithMarkup[[5]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[34]]$Value$StringWithMarkup[[5]]` is a character vector ('139 80')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[35]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[35]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[35]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[35]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[35]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[35]]$Name
- "Top 5 Peaks"
+ "SPLASH"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[35]]$Value$StringWithMarkup` is length 5
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[35]]$Value$StringWithMarkup` is length 1
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[35]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[35]]$Value$StringWithMarkup[[1]]
- String"121 999"
+ String"splash10-00di-0900000000-113943b65024522c1712"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[35]]$Value$StringWithMarkup[[2]]` is a character vector ('163 340')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[35]]$Value$StringWithMarkup[[2]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[35]]$Value$StringWithMarkup[[3]]` is a character vector ('181 170')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[35]]$Value$StringWithMarkup[[3]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[35]]$Value$StringWithMarkup[[4]]` is a character vector ('122 80')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[35]]$Value$StringWithMarkup[[4]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[35]]$Value$StringWithMarkup[[5]]` is a character vector ('139 80')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[35]]$Value$StringWithMarkup[[5]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[35]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[35]]$URL` is a character vector ('https://massbank.eu/MassBank/search?splash=splash10-00di-0900000000-113943b65024522c1712')
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[36]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[36]]$Name
- "SPLASH"
+ "Thumbnail"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[36]]$URL vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[36]]$URL
- "https://massbank.eu/MassBank/search?splash=splash10-00di-0900000000-113943b65024522c1712"
+ "https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=121:999,163:340,181:170,122:80,139:80"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[36]]$Value` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[36]]$Value` is length 2
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[36]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[36]]$Value)
- "StringWithMarkup"
+ "ExternalDataURL"
+ "MimeType"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[36]]$Value$StringWithMarkup` is a list
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[36]]$Value$StringWithMarkup` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[36]]$Value$ExternalDataURL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[36]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=121:999,163:340,181:170,122:80,139:80')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[36]]$Value$MimeType` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[36]]$Value$MimeType` is a character vector ('image/svg')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[37]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[37]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[37]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[37]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[37]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[37]]$Name
- "Thumbnail"
+ "License"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[37]]$URL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=121:999,163:340,181:170,122:80,139:80')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[37]]$URL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[37]]$Value` is length 2
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[37]]$Value` is length 1
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[37]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[37]]$Value)
- "ExternalDataURL"
- "MimeType"
+ "StringWithMarkup"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[37]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=121:999,163:340,181:170,122:80,139:80')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[37]]$Value$ExternalDataURL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[37]]$Value$MimeType` is a character vector ('image/svg')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[37]]$Value$MimeType` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[37]]$Value$StringWithMarkup` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[37]]$Value$StringWithMarkup` is a list
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[38]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[38]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[38]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[38]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[38]]$ReferenceNumber vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[38]]$ReferenceNumber
- 109.0
+ 110.0
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[38]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[38]]$Name
- "License"
+ "Accession ID"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[38]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[38]]$Value$StringWithMarkup[[1]]
- String"CC BY-NC-SA"
+ String"MSBNK-GL_Sciences_Inc-GLS00125"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[38]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[38]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-GL_Sciences_Inc-GLS00125')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[39]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[39]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[39]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[39]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[39]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[39]]$Name
- "Accession ID"
+ "Authors"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[39]]$URL` is a character vector ('https://massbank.eu/MassBank/RecordDisplay?id=MSBNK-GL_Sciences_Inc-GLS00125')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[39]]$URL` is absent
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[39]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[39]]$Value$StringWithMarkup[[1]]
- String"MSBNK-GL_Sciences_Inc-GLS00125"
+ String"Miyagawa H, Akimoto S, Yamasaki K, GL Sciences Inc."
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[40]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[40]]$Name
- "Authors"
+ "Instrument"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[40]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[40]]$Value$StringWithMarkup[[1]]
- String"Miyagawa H, Akimoto S, Yamasaki K, GL Sciences Inc."
+ String"GCMS-2010 Plus, Shimadzu"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[41]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[41]]$Name
- "Instrument"
+ "Instrument Type"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[41]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[41]]$Value$StringWithMarkup[[1]]
- String"GCMS-2010 Plus, Shimadzu"
+ String"EI-B"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[42]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[42]]$Name
- "Instrument Type"
+ "MS Level"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[42]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[42]]$Value$StringWithMarkup[[1]]
- String"EI-B"
+ String"MS"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[43]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[43]]$Name
- "MS Level"
+ "Ionization Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[43]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[43]]$Value$StringWithMarkup[[1]]
- String"MS"
+ String"POSITIVE"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[44]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[44]]$Name
- "Ionization Mode"
+ "Column Name"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[44]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[44]]$Value$StringWithMarkup[[1]]
- String"POSITIVE"
+ String"InertCap 5MS/NP 0.25 mmI.D. x 30 m, df=0.25 um"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[45]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[45]]$Name
- "Column Name"
+ "Retention Time"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[45]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[45]]$Value$StringWithMarkup[[1]]
- String"InertCap 5MS/NP 0.25 mmI.D. x 30 m, df=0.25 um"
+ String"592.29"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[46]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[46]]$Name
- "Retention Time"
+ "Top 5 Peaks"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[46]]$Value$StringWithMarkup` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[46]]$Value$StringWithMarkup` is length 5
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[46]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[46]]$Value$StringWithMarkup[[1]]
- String"592.29"
+ String"267 999"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[46]]$Value$StringWithMarkup[[2]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[46]]$Value$StringWithMarkup[[2]]` is a character vector ('268.05 228')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[46]]$Value$StringWithMarkup[[3]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[46]]$Value$StringWithMarkup[[3]]` is a character vector ('209 210')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[46]]$Value$StringWithMarkup[[4]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[46]]$Value$StringWithMarkup[[4]]` is a character vector ('149.05 182')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[46]]$Value$StringWithMarkup[[5]]` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[46]]$Value$StringWithMarkup[[5]]` is a character vector ('91.05 163')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[47]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[47]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[47]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[47]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[47]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[47]]$Name
- "Top 5 Peaks"
+ "SPLASH"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[47]]$Value$StringWithMarkup` is length 5
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[47]]$Value$StringWithMarkup` is length 1
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[47]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[47]]$Value$StringWithMarkup[[1]]
- String"267 999"
+ String"splash10-014i-1590000000-7890c99ca2b0e2c4ff19"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[47]]$Value$StringWithMarkup[[2]]` is a character vector ('268.05 228')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[47]]$Value$StringWithMarkup[[2]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[47]]$Value$StringWithMarkup[[3]]` is a character vector ('209 210')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[47]]$Value$StringWithMarkup[[3]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[47]]$Value$StringWithMarkup[[4]]` is a character vector ('149.05 182')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[47]]$Value$StringWithMarkup[[4]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[47]]$Value$StringWithMarkup[[5]]` is a character vector ('91.05 163')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[47]]$Value$StringWithMarkup[[5]]` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[47]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[47]]$URL` is a character vector ('https://massbank.eu/MassBank/search?splash=splash10-014i-1590000000-7890c99ca2b0e2c4ff19')
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[48]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[48]]$Name
- "SPLASH"
+ "Thumbnail"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[48]]$URL vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[48]]$URL
- "https://massbank.eu/MassBank/search?splash=splash10-014i-1590000000-7890c99ca2b0e2c4ff19"
+ "https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=267:999,268.05:228,209:210,149.05:182,91.05:163"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[48]]$Value` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[48]]$Value` is length 2
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[48]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[48]]$Value)
- "StringWithMarkup"
+ "ExternalDataURL"
+ "MimeType"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[48]]$Value$StringWithMarkup` is a list
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[48]]$Value$StringWithMarkup` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[48]]$Value$ExternalDataURL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[48]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=267:999,268.05:228,209:210,149.05:182,91.05:163')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[48]]$Value$MimeType` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[48]]$Value$MimeType` is a character vector ('image/svg')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[49]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[49]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[49]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[49]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[49]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[49]]$Name
- "Thumbnail"
+ "License"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[49]]$URL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=267:999,268.05:228,209:210,149.05:182,91.05:163')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[49]]$URL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[49]]$Value` is length 2
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[49]]$Value` is length 1
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[49]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[49]]$Value)
- "ExternalDataURL"
- "MimeType"
+ "StringWithMarkup"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[49]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=267:999,268.05:228,209:210,149.05:182,91.05:163')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[49]]$Value$ExternalDataURL` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[49]]$Value$MimeType` is a character vector ('image/svg')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[49]]$Value$MimeType` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[49]]$Value$StringWithMarkup` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[49]]$Value$StringWithMarkup` is a list
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[50]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[50]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[50]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[50]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[50]]$ReferenceNumber vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[50]]$ReferenceNumber
- 110.0
+ 120.0
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[50]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[50]]$Name
- "License"
+ "MoNA ID"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[50]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[50]]$Value$StringWithMarkup[[1]]
- String"CC BY-SA"
+ String"PS101902"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[50]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[50]]$URL` is a character vector ('https://mona.fiehnlab.ucdavis.edu/spectra/display/PS101902')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[51]]` is length 4
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[51]]` is length 3
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[51]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[51]])
"ReferenceNumber"
"Name"
- "URL"
"Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[51]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[51]]$Name
- "MoNA ID"
+ "MS Category"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[51]]$URL` is a character vector ('https://mona.fiehnlab.ucdavis.edu/spectra/display/PS101902')
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[51]]$URL` is absent
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[51]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[51]]$Value$StringWithMarkup[[1]]
- String"PS101902"
+ String"Experimental"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[52]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[52]]$Name
- "MS Category"
+ "MS Type"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[52]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[52]]$Value$StringWithMarkup[[1]]
- String"Experimental"
+ String"Other"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[53]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[53]]$Name
- "MS Type"
+ "MS Level"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[53]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[53]]$Value$StringWithMarkup[[1]]
- String"Other"
+ String"MS2"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[54]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[54]]$Name
- "MS Level"
+ "Precursor Type"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[54]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[54]]$Value$StringWithMarkup[[1]]
- String"MS2"
+ String"[M+H]+"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[55]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[55]]$Name
- "Precursor Type"
+ "Precursor m/z"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[55]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[55]]$Value$StringWithMarkup[[1]]
- String"[M+H]+"
+ String"181.12"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[56]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[56]]$Name
- "Precursor m/z"
+ "Instrument"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[56]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[56]]$Value$StringWithMarkup[[1]]
- String"181.12"
+ String"TQD, Waters"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[57]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[57]]$Name
- "Instrument"
+ "Instrument Type"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[57]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[57]]$Value$StringWithMarkup[[1]]
- String"TQD, Waters"
+ String"Flow-injection QqQ/MS"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[58]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[58]]$Name
- "Instrument Type"
+ "Ionization"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[58]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[58]]$Value$StringWithMarkup[[1]]
- String"Flow-injection QqQ/MS"
+ String"ESI"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[59]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[59]]$Name
- "Ionization"
+ "Ionization Mode"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[59]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[59]]$Value$StringWithMarkup[[1]]
- String"ESI"
+ String"positive"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[60]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[60]]$Name
- "Ionization Mode"
+ "Collision Energy"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[60]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[60]]$Value$StringWithMarkup[[1]]
- String"positive"
+ String"20"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[61]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[61]]$Name
- "Collision Energy"
+ "Top 5 Peaks"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[61]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[61]]$Value$StringWithMarkup[[1]]
- String"20"
+ String"99 100"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[62]]` is length 3
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[62]]` is length 4
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[62]]) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[62]])
"ReferenceNumber"
"Name"
- "Value"
+ "URL"
+ "Value"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[62]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[62]]$Name
- "Top 5 Peaks"
+ "SPLASH"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[62]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[62]]$Value$StringWithMarkup[[1]]
- String"99 100"
+ String"splash10-0002-9000000000-e5837555ecff4ecf9652"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[62]]$URL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[62]]$URL` is a character vector ('https://mona.fiehnlab.ucdavis.edu/spectra/browse?query=exists(splash.splash:%27splash10-0002-9000000000-e5837555ecff4ecf9652%27)')
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[63]]$Name vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[63]]$Name
- "SPLASH"
+ "Thumbnail"
actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[63]]$URL vs expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[63]]$URL
- "https://mona.fiehnlab.ucdavis.edu/spectra/browse?query=exists(splash.splash:%27splash10-0002-9000000000-e5837555ecff4ecf9652%27)"
+ "https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=99:100"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[63]]$Value` is length 1
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[63]]$Value` is length 2
names(actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[63]]$Value) vs names(expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[63]]$Value)
- "StringWithMarkup"
+ "ExternalDataURL"
+ "MimeType"
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[63]]$Value$StringWithMarkup` is a list
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[63]]$Value$StringWithMarkup` is absent
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[63]]$Value$ExternalDataURL` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[63]]$Value$ExternalDataURL` is a character vector ('https://pubchem.ncbi.nlm.nih.gov/image/ms.cgi?peaks=99:100')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[63]]$Value$MimeType` is absent
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[63]]$Value$MimeType` is a character vector ('image/svg')
`actual$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[64]]` is a list
`expected$result$Record$Section[[5]]$Section[[3]]$Section[[4]]$Information[[64]]` is absent
actual$result$Record$Section[[6]]$Section[[6]]$Information[[1]]$ReferenceNumber vs expected$result$Record$Section[[6]]$Section[[6]]$Information[[1]]$ReferenceNumber
- 262.0
+ 263.0
actual$result$Record$Section[[9]]$Section[[2]]$Information[[1]]$ReferenceNumber vs expected$result$Record$Section[[9]]$Section[[2]]$Information[[1]]$ReferenceNumber
- 256.0
+ 257.0
actual$result$Record$Section[[9]]$Section[[2]]$Information[[2]]$ReferenceNumber vs expected$result$Record$Section[[9]]$Section[[2]]$Information[[2]]$ReferenceNumber
- 257.0
+ 258.0
actual$result$Record$Section[[9]]$Section[[2]]$Information[[3]]$ReferenceNumber vs expected$result$Record$Section[[9]]$Section[[2]]$Information[[3]]$ReferenceNumber
- 258.0
+ 259.0
actual$result$Record$Section[[9]]$Section[[2]]$Information[[4]]$ReferenceNumber vs expected$result$Record$Section[[9]]$Section[[2]]$Information[[4]]$ReferenceNumber
- 259.0
+ 260.0
actual$result$Record$Section[[9]]$Section[[2]]$Information[[5]]$ReferenceNumber vs expected$result$Record$Section[[9]]$Section[[2]]$Information[[5]]$ReferenceNumber
- 260.0
+ 261.0
actual$result$Record$Section[[9]]$Section[[3]]$Information[[11]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[9]]$Section[[3]]$Information[[11]]$Value$StringWithMarkup[[1]]
- String"Decreased Platelet Aggregation [PE]; Anti-Inflammatory Agents, Non-Steroidal [CS]; Cyclooxygenase Inhibitors [MoA]; Platelet Aggregation Inhibitor [EPC]; Nonsteroidal Anti-inflammatory Drug [EPC]; Decreased Prostaglandin Production [PE]"
+ String"Platelet Aggregation Inhibitor [EPC]; Decreased Platelet Aggregation [PE]; Decreased Prostaglandin Production [PE]; Nonsteroidal Anti-inflammatory Drug [EPC]; Anti-Inflammatory Agents, Non-Steroidal [CS]; Cyclooxygenase Inhibitors [MoA]"
actual$result$Record$Section[[9]]$Section[[3]]$Information[[13]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[9]]$Section[[3]]$Information[[13]]$Value$StringWithMarkup[[1]]
- String"Decreased Prostaglandin Production [PE]; Nonsteroidal Anti-inflammatory Drug [EPC]; Platelet Aggregation Inhibitor [EPC]; Cyclooxygenase Inhibitors [MoA]; Anti-Inflammatory Agents, Non-Steroidal [CS]; Decreased Platelet Aggregation [PE]"
+ String"Platelet Aggregation Inhibitor [EPC]; Anti-Inflammatory Agents, Non-Steroidal [CS]; Cyclooxygenase Inhibitors [MoA]; Decreased Prostaglandin Production [PE]; Nonsteroidal Anti-inflammatory Drug [EPC]; Decreased Platelet Aggregation [PE]"
actual$result$Record$Section[[9]]$Section[[3]]$Information[[15]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[9]]$Section[[3]]$Information[[15]]$Value$StringWithMarkup[[1]]
- String"Anti-Inflammatory Agents, Non-Steroidal [CS]; Decreased Platelet Aggregation [PE]; Cyclooxygenase Inhibitors [MoA]; Platelet Aggregation Inhibitor [EPC]; Nonsteroidal Anti-inflammatory Drug [EPC]; Decreased Prostaglandin Production [PE]"
+ String"Platelet Aggregation Inhibitor [EPC]; Cyclooxygenase Inhibitors [MoA]; Anti-Inflammatory Agents, Non-Steroidal [CS]; Nonsteroidal Anti-inflammatory Drug [EPC]; Decreased Prostaglandin Production [PE]; Decreased Platelet Aggregation [PE]"
actual$result$Record$Section[[9]]$Section[[3]]$Information[[17]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[9]]$Section[[3]]$Information[[17]]$Value$StringWithMarkup[[1]]
- String"Decreased Platelet Aggregation [PE]; Anti-Inflammatory Agents, Non-Steroidal [CS]; Platelet Aggregation Inhibitor [EPC]; Cyclooxygenase Inhibitors [MoA]; Decreased Prostaglandin Production [PE]; Nonsteroidal Anti-inflammatory Drug [EPC]"
+ String"Decreased Platelet Aggregation [PE]; Anti-Inflammatory Agents, Non-Steroidal [CS]; Cyclooxygenase Inhibitors [MoA]; Decreased Prostaglandin Production [PE]; Nonsteroidal Anti-inflammatory Drug [EPC]; Platelet Aggregation Inhibitor [EPC]"
actual$result$Record$Section[[9]]$Section[[3]]$Information[[19]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[9]]$Section[[3]]$Information[[19]]$Value$StringWithMarkup[[1]]
- String"Anti-Inflammatory Agents, Non-Steroidal [CS]; Decreased Platelet Aggregation [PE]; Cyclooxygenase Inhibitors [MoA]; Platelet Aggregation Inhibitor [EPC]; Nonsteroidal Anti-inflammatory Drug [EPC]; Decreased Prostaglandin Production [PE]"
+ String"Platelet Aggregation Inhibitor [EPC]; Anti-Inflammatory Agents, Non-Steroidal [CS]; Cyclooxygenase Inhibitors [MoA]; Decreased Prostaglandin Production [PE]; Nonsteroidal Anti-inflammatory Drug [EPC]; Decreased Platelet Aggregation [PE]"
actual$result$Record$Section[[9]]$Section[[3]]$Information[[21]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[9]]$Section[[3]]$Information[[21]]$Value$StringWithMarkup[[1]]
- String"Platelet Aggregation Inhibitor [EPC]; Cyclooxygenase Inhibitors [MoA]; Decreased Prostaglandin Production [PE]; Nonsteroidal Anti-inflammatory Drug [EPC]; Anti-Inflammatory Agents, Non-Steroidal [CS]; Decreased Platelet Aggregation [PE]"
+ String"Platelet Aggregation Inhibitor [EPC]; Decreased Prostaglandin Production [PE]; Nonsteroidal Anti-inflammatory Drug [EPC]; Anti-Inflammatory Agents, Non-Steroidal [CS]; Cyclooxygenase Inhibitors [MoA]; Decreased Platelet Aggregation [PE]"
actual$result$Record$Section[[9]]$Section[[3]]$Information[[23]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[9]]$Section[[3]]$Information[[23]]$Value$StringWithMarkup[[1]]
- String"Anti-Inflammatory Agents, Non-Steroidal [CS]; Decreased Platelet Aggregation [PE]; Nonsteroidal Anti-inflammatory Drug [EPC]; Decreased Prostaglandin Production [PE]; Cyclooxygenase Inhibitors [MoA]; Platelet Aggregation Inhibitor [EPC]"
+ String"Decreased Platelet Aggregation [PE]; Nonsteroidal Anti-inflammatory Drug [EPC]; Decreased Prostaglandin Production [PE]; Cyclooxygenase Inhibitors [MoA]; Anti-Inflammatory Agents, Non-Steroidal [CS]; Platelet Aggregation Inhibitor [EPC]"
actual$result$Record$Section[[9]]$Section[[3]]$Information[[25]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[9]]$Section[[3]]$Information[[25]]$Value$StringWithMarkup[[1]]
- String"Decreased Platelet Aggregation [PE]; Anti-Inflammatory Agents, Non-Steroidal [CS]; Decreased Prostaglandin Production [PE]; Nonsteroidal Anti-inflammatory Drug [EPC]; Platelet Aggregation Inhibitor [EPC]; Cyclooxygenase Inhibitors [MoA]"
+ String"Nonsteroidal Anti-inflammatory Drug [EPC]; Decreased Prostaglandin Production [PE]; Cyclooxygenase Inhibitors [MoA]; Anti-Inflammatory Agents, Non-Steroidal [CS]; Decreased Platelet Aggregation [PE]; Platelet Aggregation Inhibitor [EPC]"
actual$result$Record$Section[[9]]$Section[[3]]$Information[[27]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[9]]$Section[[3]]$Information[[27]]$Value$StringWithMarkup[[1]]
- String"Cyclooxygenase Inhibitors [MoA]; Platelet Aggregation Inhibitor [EPC]; Nonsteroidal Anti-inflammatory Drug [EPC]; Decreased Prostaglandin Production [PE]; Decreased Platelet Aggregation [PE]; Anti-Inflammatory Agents, Non-Steroidal [CS]"
+ String"Platelet Aggregation Inhibitor [EPC]; Decreased Prostaglandin Production [PE]; Nonsteroidal Anti-inflammatory Drug [EPC]; Anti-Inflammatory Agents, Non-Steroidal [CS]; Cyclooxygenase Inhibitors [MoA]; Decreased Platelet Aggregation [PE]"
actual$result$Record$Section[[9]]$Section[[3]]$Information[[29]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[9]]$Section[[3]]$Information[[29]]$Value$StringWithMarkup[[1]]
- String"Decreased Prostaglandin Production [PE]; Nonsteroidal Anti-inflammatory Drug [EPC]; Platelet Aggregation Inhibitor [EPC]; Cyclooxygenase Inhibitors [MoA]; Anti-Inflammatory Agents, Non-Steroidal [CS]; Decreased Platelet Aggregation [PE]"
+ String"Platelet Aggregation Inhibitor [EPC]; Decreased Platelet Aggregation [PE]; Decreased Prostaglandin Production [PE]; Nonsteroidal Anti-inflammatory Drug [EPC]; Anti-Inflammatory Agents, Non-Steroidal [CS]; Cyclooxygenase Inhibitors [MoA]"
actual$result$Record$Section[[9]]$Section[[3]]$Information[[31]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[9]]$Section[[3]]$Information[[31]]$Value$StringWithMarkup[[1]]
- String"Cyclooxygenase Inhibitors [MoA]; Platelet Aggregation Inhibitor [EPC]; Nonsteroidal Anti-inflammatory Drug [EPC]; Decreased Prostaglandin Production [PE]; Anti-Inflammatory Agents, Non-Steroidal [CS]; Decreased Platelet Aggregation [PE]"
+ String"Decreased Platelet Aggregation [PE]; Nonsteroidal Anti-inflammatory Drug [EPC]; Decreased Prostaglandin Production [PE]; Cyclooxygenase Inhibitors [MoA]; Anti-Inflammatory Agents, Non-Steroidal [CS]; Platelet Aggregation Inhibitor [EPC]"
actual$result$Record$Section[[9]]$Section[[3]]$Information[[33]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[9]]$Section[[3]]$Information[[33]]$Value$StringWithMarkup[[1]]
- String"Platelet Aggregation Inhibitor [EPC]; Cyclooxygenase Inhibitors [MoA]; Decreased Prostaglandin Production [PE]; Nonsteroidal Anti-inflammatory Drug [EPC]; Anti-Inflammatory Agents, Non-Steroidal [CS]; Decreased Platelet Aggregation [PE]"
+ String"Platelet Aggregation Inhibitor [EPC]; Decreased Platelet Aggregation [PE]; Decreased Prostaglandin Production [PE]; Nonsteroidal Anti-inflammatory Drug [EPC]; Anti-Inflammatory Agents, Non-Steroidal [CS]; Cyclooxygenase Inhibitors [MoA]"
actual$result$Record$Section[[9]]$Section[[3]]$Information[[35]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[9]]$Section[[3]]$Information[[35]]$Value$StringWithMarkup[[1]]
- String"Cyclooxygenase Inhibitors [MoA]; Platelet Aggregation Inhibitor [EPC]; Nonsteroidal Anti-inflammatory Drug [EPC]; Decreased Prostaglandin Production [PE]; Decreased Platelet Aggregation [PE]; Anti-Inflammatory Agents, Non-Steroidal [CS]"
+ String"Cyclooxygenase Inhibitors [MoA]; Anti-Inflammatory Agents, Non-Steroidal [CS]; Nonsteroidal Anti-inflammatory Drug [EPC]; Decreased Prostaglandin Production [PE]; Decreased Platelet Aggregation [PE]; Platelet Aggregation Inhibitor [EPC]"
actual$result$Record$Section[[9]]$Section[[3]]$Information[[37]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[9]]$Section[[3]]$Information[[37]]$Value$StringWithMarkup[[1]]
- String"Decreased Prostaglandin Production [PE]; Nonsteroidal Anti-inflammatory Drug [EPC]; Platelet Aggregation Inhibitor [EPC]; Cyclooxygenase Inhibitors [MoA]; Decreased Platelet Aggregation [PE]; Anti-Inflammatory Agents, Non-Steroidal [CS]"
+ String"Platelet Aggregation Inhibitor [EPC]; Decreased Platelet Aggregation [PE]; Decreased Prostaglandin Production [PE]; Nonsteroidal Anti-inflammatory Drug [EPC]; Anti-Inflammatory Agents, Non-Steroidal [CS]; Cyclooxygenase Inhibitors [MoA]"
actual$result$Record$Section[[9]]$Section[[3]]$Information[[39]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[9]]$Section[[3]]$Information[[39]]$Value$StringWithMarkup[[1]]
- String"Cyclooxygenase Inhibitors [MoA]; Platelet Aggregation Inhibitor [EPC]; Nonsteroidal Anti-inflammatory Drug [EPC]; Decreased Prostaglandin Production [PE]; Decreased Platelet Aggregation [PE]; Anti-Inflammatory Agents, Non-Steroidal [CS]"
+ String"Decreased Platelet Aggregation [PE]; Nonsteroidal Anti-inflammatory Drug [EPC]; Decreased Prostaglandin Production [PE]; Cyclooxygenase Inhibitors [MoA]; Anti-Inflammatory Agents, Non-Steroidal [CS]; Platelet Aggregation Inhibitor [EPC]"
actual$result$Record$Section[[9]]$Section[[3]]$Information[[41]]$Value$StringWithMarkup[[1]] vs expected$result$Record$Section[[9]]$Section[[3]]$Information[[41]]$Value$StringWithMarkup[[1]]
- String"Decreased Platelet Aggregation [PE]; Anti-Inflammatory Agents, Non-Steroidal [CS]; Nonsteroidal Anti-inflammatory Drug [EPC]; Decreased Prostaglandin Production [PE]; Cyclooxygenase Inhibitors [MoA]; Platelet Aggregation Inhibitor [EPC]"
+ String"Platelet Aggregation Inhibitor [EPC]; Anti-Inflammatory Agents, Non-Steroidal [CS]; Cyclooxygenase Inhibitors [MoA]; Decreased Prostaglandin Production [PE]; Nonsteroidal Anti-inflammatory Drug [EPC]; Decreased Platelet Aggregation [PE]"
actual$result$Record$Section[[15]]$Section[[2]]$Information[[1]]$ReferenceNumber vs expected$result$Record$Section[[15]]$Section[[2]]$Information[[1]]$ReferenceNumber
- 255.0
+ 256.0
actual$result$Record$Section[[16]]$Section[[2]]$Information[[1]]$ReferenceNumber vs expected$result$Record$Section[[16]]$Section[[2]]$Information[[1]]$ReferenceNumber
- 261.0
+ 262.0
`actual$result$Record$Section[[20]]$Section` is length 28
`expected$result$Record$Section[[20]]$Section` is length 29
actual$result$Record$Section[[20]]$Section[[2]]$Information[[1]]$ReferenceNumber vs expected$result$Record$Section[[20]]$Section[[2]]$Information[[1]]$ReferenceNumber
- 245.0
+ 246.0
`actual$result$Record$Section[[20]]$Section[[3]]$TOCHeading`: "KEGG: Drug"
`expected$result$Record$Section[[20]]$Section[[3]]$TOCHeading`: "ChEBI Ontology"
actual$result$Record$Section[[20]]$Section[[3]]$Description vs expected$result$Record$Section[[20]]$Section[[3]]$Description
- "Classification/ontology tree for therapeutic categories of drugs in Japan, from the Kyoto Encyclopedia of Genes and Genomes (KEGG)."
+ "ChEBI Ontology tree. ChEBI is an acronym for Chemical Entities of Biological Interest, which is a freely available dictionary of molecular entities focused on 'small' chemical compounds. ChEBI incorporates an ontological classification, whereby the relationships between molecular entities or classes of entities and their parents and/or children are specified."
actual$result$Record$Section[[20]]$Section[[3]]$URL vs expected$result$Record$Section[[20]]$Section[[3]]$URL
- "https://www.genome.jp/kegg-bin/get_htext?htext=br08301"
+ "https://www.ebi.ac.uk/chebi/"
actual$result$Record$Section[[20]]$Section[[3]]$Information[[1]]$URL vs expected$result$Record$Section[[20]]$Section[[3]]$Information[[1]]$URL
- "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=14"
+ "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=2"
actual$result$Record$Section[[20]]$Section[[3]]$Information[[1]]$Value$Number vs expected$result$Record$Section[[20]]$Section[[3]]$Information[[1]]$Value$Number
- 14.0
+ 2.0
`actual$result$Record$Section[[20]]$Section[[4]]$TOCHeading`: "KEGG: ATC"
`expected$result$Record$Section[[20]]$Section[[4]]$TOCHeading`: "KEGG: Drug"
actual$result$Record$Section[[20]]$Section[[4]]$Description vs expected$result$Record$Section[[20]]$Section[[4]]$Description
- "Anatomical Therapeutic Chemical (ATC) classification tree from the Kyoto Encyclopedia of Genes and Genomes (KEGG)."
+ "Classification/ontology tree for therapeutic categories of drugs in Japan, from the Kyoto Encyclopedia of Genes and Genomes (KEGG)."
actual$result$Record$Section[[20]]$Section[[4]]$URL vs expected$result$Record$Section[[20]]$Section[[4]]$URL
- "https://www.genome.jp/kegg-bin/get_htext?htext=br08303"
+ "https://www.genome.jp/kegg-bin/get_htext?htext=br08301"
actual$result$Record$Section[[20]]$Section[[4]]$Information[[1]]$URL vs expected$result$Record$Section[[20]]$Section[[4]]$Information[[1]]$URL
- "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=16"
+ "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=14"
actual$result$Record$Section[[20]]$Section[[4]]$Information[[1]]$Value$Number vs expected$result$Record$Section[[20]]$Section[[4]]$Information[[1]]$Value$Number
- 16.0
+ 14.0
actual$result$Record$Section[[20]]$Section[[5]]$TOCHeading vs expected$result$Record$Section[[20]]$Section[[5]]$TOCHeading
- "KEGG: Target-based Classification of Drugs"
+ "KEGG: ATC"
actual$result$Record$Section[[20]]$Section[[5]]$Description vs expected$result$Record$Section[[20]]$Section[[5]]$Description
- "Target-based classification tree of drugs, from the Kyoto Encyclopedia of Genes and Genomes (KEGG)."
+ "Anatomical Therapeutic Chemical (ATC) classification tree from the Kyoto Encyclopedia of Genes and Genomes (KEGG)."
actual$result$Record$Section[[20]]$Section[[5]]$URL vs expected$result$Record$Section[[20]]$Section[[5]]$URL
- "https://www.genome.jp/kegg-bin/get_htext?htext=br08310"
+ "https://www.genome.jp/kegg-bin/get_htext?htext=br08303"
actual$result$Record$Section[[20]]$Section[[5]]$Information[[1]]$URL vs expected$result$Record$Section[[20]]$Section[[5]]$Information[[1]]$URL
- "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=22"
+ "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=16"
actual$result$Record$Section[[20]]$Section[[5]]$Information[[1]]$Value$Number vs expected$result$Record$Section[[20]]$Section[[5]]$Information[[1]]$Value$Number
- 22.0
+ 16.0
actual$result$Record$Section[[20]]$Section[[6]]$TOCHeading vs expected$result$Record$Section[[20]]$Section[[6]]$TOCHeading
- "KEGG: JP15"
+ "KEGG: Target-based Classification of Drugs"
actual$result$Record$Section[[20]]$Section[[6]]$Description vs expected$result$Record$Section[[20]]$Section[[6]]$Description
- "Classification/ontology tree for drugs listed in the Japanese Pharmacopoeia, from the Kyoto Encyclopedia of Genes and Genomes (KEGG)."
+ "Target-based classification tree of drugs, from the Kyoto Encyclopedia of Genes and Genomes (KEGG)."
actual$result$Record$Section[[20]]$Section[[6]]$URL vs expected$result$Record$Section[[20]]$Section[[6]]$URL
- "https://www.genome.jp/kegg-bin/get_htext?htext=br08311"
+ "https://www.genome.jp/kegg-bin/get_htext?htext=br08310"
actual$result$Record$Section[[20]]$Section[[6]]$Information[[1]]$URL vs expected$result$Record$Section[[20]]$Section[[6]]$Information[[1]]$URL
- "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=23"
+ "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=22"
actual$result$Record$Section[[20]]$Section[[6]]$Information[[1]]$Value$Number vs expected$result$Record$Section[[20]]$Section[[6]]$Information[[1]]$Value$Number
- 23.0
+ 22.0
actual$result$Record$Section[[20]]$Section[[7]]$TOCHeading vs expected$result$Record$Section[[20]]$Section[[7]]$TOCHeading
- "KEGG: Risk Category of Japanese OTC Drugs"
+ "KEGG: JP15"
actual$result$Record$Section[[20]]$Section[[7]]$Description vs expected$result$Record$Section[[20]]$Section[[7]]$Description
- "Classification/ontology tree for the risk category of Japanese over-the-counter (OTC) drugs, from the Kyoto Encyclopedia of Genes and Genomes (KEGG)."
+ "Classification/ontology tree for drugs listed in the Japanese Pharmacopoeia, from the Kyoto Encyclopedia of Genes and Genomes (KEGG)."
actual$result$Record$Section[[20]]$Section[[7]]$URL vs expected$result$Record$Section[[20]]$Section[[7]]$URL
- "https://www.genome.jp/kegg-bin/get_htext?htext=br08312"
+ "https://www.genome.jp/kegg-bin/get_htext?htext=br08311"
actual$result$Record$Section[[20]]$Section[[7]]$Information[[1]]$URL vs expected$result$Record$Section[[20]]$Section[[7]]$Information[[1]]$URL
- "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=24"
+ "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=23"
actual$result$Record$Section[[20]]$Section[[7]]$Information[[1]]$Value$Number vs expected$result$Record$Section[[20]]$Section[[7]]$Information[[1]]$Value$Number
- 24.0
+ 23.0
actual$result$Record$Section[[20]]$Section[[8]]$TOCHeading vs expected$result$Record$Section[[20]]$Section[[8]]$TOCHeading
- "KEGG: OTC drugs"
+ "KEGG: Risk Category of Japanese OTC Drugs"
actual$result$Record$Section[[20]]$Section[[8]]$Description vs expected$result$Record$Section[[20]]$Section[[8]]$Description
- "Japanese over-the-counter (OTC) drugs classification tree from the Kyoto Encyclopedia of Genes and Genomes (KEGG)."
+ "Classification/ontology tree for the risk category of Japanese over-the-counter (OTC) drugs, from the Kyoto Encyclopedia of Genes and Genomes (KEGG)."
actual$result$Record$Section[[20]]$Section[[8]]$URL vs expected$result$Record$Section[[20]]$Section[[8]]$URL
- "https://www.genome.jp/kegg-bin/get_htext?htext=br08313"
+ "https://www.genome.jp/kegg-bin/get_htext?htext=br08312"
actual$result$Record$Section[[20]]$Section[[8]]$Information[[1]]$URL vs expected$result$Record$Section[[20]]$Section[[8]]$Information[[1]]$URL
- "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=25"
+ "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=24"
actual$result$Record$Section[[20]]$Section[[8]]$Information[[1]]$Value$Number vs expected$result$Record$Section[[20]]$Section[[8]]$Information[[1]]$Value$Number
- 25.0
+ 24.0
`actual$result$Record$Section[[20]]$Section[[9]]` is length 3
`expected$result$Record$Section[[20]]$Section[[9]]` is length 4
names(actual$result$Record$Section[[20]]$Section[[9]]) vs names(expected$result$Record$Section[[20]]$Section[[9]])
"TOCHeading"
"Description"
- "Information"
+ "URL"
+ "Information"
actual$result$Record$Section[[20]]$Section[[9]]$TOCHeading vs expected$result$Record$Section[[20]]$Section[[9]]$TOCHeading
- "KEGG: Drug Groups"
+ "KEGG: OTC drugs"
actual$result$Record$Section[[20]]$Section[[9]]$Description vs expected$result$Record$Section[[20]]$Section[[9]]$Description
- "KEGG : Drug Groups tree"
+ "Japanese over-the-counter (OTC) drugs classification tree from the Kyoto Encyclopedia of Genes and Genomes (KEGG)."
actual$result$Record$Section[[20]]$Section[[9]]$Information[[1]]$ReferenceNumber vs expected$result$Record$Section[[20]]$Section[[9]]$Information[[1]]$ReferenceNumber
- 238.0
+ 230.0
actual$result$Record$Section[[20]]$Section[[9]]$Information[[1]]$URL vs expected$result$Record$Section[[20]]$Section[[9]]$Information[[1]]$URL
- "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=96"
+ "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=25"
actual$result$Record$Section[[20]]$Section[[9]]$Information[[1]]$Value$Number vs expected$result$Record$Section[[20]]$Section[[9]]$Information[[1]]$Value$Number
- 96.0
+ 25.0
`actual$result$Record$Section[[20]]$Section[[9]]$URL` is absent
`expected$result$Record$Section[[20]]$Section[[9]]$URL` is a character vector ('https://www.genome.jp/kegg-bin/get_htext?htext=br08313')
`actual$result$Record$Section[[20]]$Section[[10]]` is length 4
`expected$result$Record$Section[[20]]$Section[[10]]` is length 3
names(actual$result$Record$Section[[20]]$Section[[10]]) vs names(expected$result$Record$Section[[20]]$Section[[10]])
"TOCHeading"
"Description"
- "URL"
"Information"
actual$result$Record$Section[[20]]$Section[[10]]$TOCHeading vs expected$result$Record$Section[[20]]$Section[[10]]$TOCHeading
- "KEGG: Drug Classes"
+ "KEGG: Drug Groups"
actual$result$Record$Section[[20]]$Section[[10]]$Description vs expected$result$Record$Section[[20]]$Section[[10]]$Description
- "Drug classes tree from the Kyoto Encyclopedia of Genes and Genomes (KEGG)."
+ "KEGG : Drug Groups tree"
`actual$result$Record$Section[[20]]$Section[[10]]$URL` is a character vector ('https://www.genome.jp/kegg-bin/get_htext?htext=br08332')
`expected$result$Record$Section[[20]]$Section[[10]]$URL` is absent
actual$result$Record$Section[[20]]$Section[[10]]$Information[[1]]$ReferenceNumber vs expected$result$Record$Section[[20]]$Section[[10]]$Information[[1]]$ReferenceNumber
- 248.0
+ 239.0
actual$result$Record$Section[[20]]$Section[[10]]$Information[[1]]$URL vs expected$result$Record$Section[[20]]$Section[[10]]$Information[[1]]$URL
- "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=118"
+ "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=96"
actual$result$Record$Section[[20]]$Section[[10]]$Information[[1]]$Value$Number vs expected$result$Record$Section[[20]]$Section[[10]]$Information[[1]]$Value$Number
- 118.0
+ 96.0
actual$result$Record$Section[[20]]$Section[[11]]$TOCHeading vs expected$result$Record$Section[[20]]$Section[[11]]$TOCHeading
- "WHO ATC Classification System"
+ "KEGG: Drug Classes"
actual$result$Record$Section[[20]]$Section[[11]]$Description vs expected$result$Record$Section[[20]]$Section[[11]]$Description
- "The Anatomical Therapeutic Chemical (ATC) Classification System is used for the classification of drugs. This pharmaceutical coding system divides drugs into different groups according to the organ or system on which they act and/or their therapeutic and chemical characteristics. Each bottom-level ATC code stands for a pharmaceutically used substance, or a combination of substances, in a single indication (or use). This means that one drug can have more than one code: acetylsalicylic acid (aspirin), for example, has A01AD05 as a drug for local oral treatment, B01AC06 as a platelet inhibitor, and N02BA01 as an analgesic and antipyretic. On the other hand, several different brands share the same code if they have the same active substance and indications."
+ "Drug classes tree from the Kyoto Encyclopedia of Genes and Genomes (KEGG)."
actual$result$Record$Section[[20]]$Section[[11]]$URL vs expected$result$Record$Section[[20]]$Section[[11]]$URL
- "https://www.who.int/tools/atc-ddd-toolkit/atc-classification"
+ "https://www.genome.jp/kegg-bin/get_htext?htext=br08332"
actual$result$Record$Section[[20]]$Section[[11]]$Information[[1]]$ReferenceNumber vs expected$result$Record$Section[[20]]$Section[[11]]$Information[[1]]$ReferenceNumber
- 232.0
+ 249.0
actual$result$Record$Section[[20]]$Section[[11]]$Information[[1]]$URL vs expected$result$Record$Section[[20]]$Section[[11]]$Information[[1]]$URL
- "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=79"
+ "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=118"
actual$result$Record$Section[[20]]$Section[[11]]$Information[[1]]$Value$Number vs expected$result$Record$Section[[20]]$Section[[11]]$Information[[1]]$Value$Number
- 79.0
+ 118.0
actual$result$Record$Section[[20]]$Section[[12]]$TOCHeading vs expected$result$Record$Section[[20]]$Section[[12]]$TOCHeading
- "FDA Pharm Classes"
+ "WHO ATC Classification System"
actual$result$Record$Section[[20]]$Section[[12]]$Description vs expected$result$Record$Section[[20]]$Section[[12]]$Description
- "Pharmacologic Class is a group of active moieties that share scientifically documented properties and is defined on the basis of any combination of three attributes of the active moiety: mechanism of action (MOA), physiologic effect (PE) and chemical structure (CS). An FDA \"Established Pharmacologic Class\" (EPC) text phrase is a pharmacologic class associated with an approved indication of an active moiety that the FDA has determined to be scientifically valid and clinically meaningful."
+ "The Anatomical Therapeutic Chemical (ATC) Classification System is used for the classification of drugs. This pharmaceutical coding system divides drugs into different groups according to the organ or system on which they act and/or their therapeutic and chemical characteristics. Each bottom-level ATC code stands for a pharmaceutically used substance, or a combination of substances, in a single indication (or use). This means that one drug can have more than one code: acetylsalicylic acid (aspirin), for example, has A01AD05 as a drug for local oral treatment, B01AC06 as a platelet inhibitor, and N02BA01 as an analgesic and antipyretic. On the other hand, several different brands share the same code if they have the same active substance and indications."
actual$result$Record$Section[[20]]$Section[[12]]$URL vs expected$result$Record$Section[[20]]$Section[[12]]$URL
- "https://www.fda.gov/industry/structured-product-labeling-resources/pharmacologic-class"
+ "https://www.who.int/tools/atc-ddd-toolkit/atc-classification"
actual$result$Record$Section[[20]]$Section[[12]]$Information[[1]]$ReferenceNumber vs expected$result$Record$Section[[20]]$Section[[12]]$Information[[1]]$ReferenceNumber
- 231.0
+ 233.0
actual$result$Record$Section[[20]]$Section[[12]]$Information[[1]]$URL vs expected$result$Record$Section[[20]]$Section[[12]]$Information[[1]]$URL
- "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=78"
+ "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=79"
actual$result$Record$Section[[20]]$Section[[12]]$Information[[1]]$Value$Number vs expected$result$Record$Section[[20]]$Section[[12]]$Information[[1]]$Value$Number
- 78.0
+ 79.0
actual$result$Record$Section[[20]]$Section[[13]]$TOCHeading vs expected$result$Record$Section[[20]]$Section[[13]]$TOCHeading
- "ChemIDplus"
+ "FDA Pharm Classes"
actual$result$Record$Section[[20]]$Section[[13]]$Description vs expected$result$Record$Section[[20]]$Section[[13]]$Description
- "Classification of this compound, provided by ChemIDplus, which is a free web search system that provides access to the structure and nomenclature authority files used for the identification of chemical substances cited in National Library of Medicine (NLM) databases. ChemIDplus groups chemicals based on the source locators (i.e., what information resources have data for a given chemical)."
+ "Pharmacologic Class is a group of active moieties that share scientifically documented properties and is defined on the basis of any combination of three attributes of the active moiety: mechanism of action (MOA), physiologic effect (PE) and chemical structure (CS). An FDA \"Established Pharmacologic Class\" (EPC) text phrase is a pharmacologic class associated with an approved indication of an active moiety that the FDA has determined to be scientifically valid and clinically meaningful."
actual$result$Record$Section[[20]]$Section[[13]]$URL vs expected$result$Record$Section[[20]]$Section[[13]]$URL
- "https://chem.nlm.nih.gov/chemidplus/"
+ "https://www.fda.gov/industry/structured-product-labeling-resources/pharmacologic-class"
actual$result$Record$Section[[20]]$Section[[13]]$Information[[1]]$ReferenceNumber vs expected$result$Record$Section[[20]]$Section[[13]]$Information[[1]]$ReferenceNumber
- 234.0
+ 232.0
actual$result$Record$Section[[20]]$Section[[13]]$Information[[1]]$URL vs expected$result$Record$Section[[20]]$Section[[13]]$Information[[1]]$URL
- "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=84"
+ "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=78"
actual$result$Record$Section[[20]]$Section[[13]]$Information[[1]]$Value$Number vs expected$result$Record$Section[[20]]$Section[[13]]$Information[[1]]$Value$Number
- 84.0
+ 78.0
actual$result$Record$Section[[20]]$Section[[14]]$TOCHeading vs expected$result$Record$Section[[20]]$Section[[14]]$TOCHeading
- "CAMEO Chemicals"
+ "ChemIDplus"
actual$result$Record$Section[[20]]$Section[[14]]$Description vs expected$result$Record$Section[[20]]$Section[[14]]$Description
- "CAMEO chemical reactivity classification from CAMEO Chemicals, which is a database of hazardous chemical datasheets that emergency responders and planners can use to get response recommendations and predict hazards (e.g., explosions or toxic fumes)."
+ "Classification of this compound, provided by ChemIDplus, which is a free web search system that provides access to the structure and nomenclature authority files used for the identification of chemical substances cited in National Library of Medicine (NLM) databases. ChemIDplus groups chemicals based on the source locators (i.e., what information resources have data for a given chemical)."
actual$result$Record$Section[[20]]$Section[[14]]$URL vs expected$result$Record$Section[[20]]$Section[[14]]$URL
- "https://cameochemicals.noaa.gov/"
+ "https://chem.nlm.nih.gov/chemidplus/"
actual$result$Record$Section[[20]]$Section[[14]]$Information[[1]]$URL vs expected$result$Record$Section[[20]]$Section[[14]]$Information[[1]]$URL
- "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=86"
+ "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=84"
actual$result$Record$Section[[20]]$Section[[14]]$Information[[1]]$Value$Number vs expected$result$Record$Section[[20]]$Section[[14]]$Information[[1]]$Value$Number
- 86.0
+ 84.0
actual$result$Record$Section[[20]]$Section[[15]]$TOCHeading vs expected$result$Record$Section[[20]]$Section[[15]]$TOCHeading
- "IUPHAR/BPS Guide to PHARMACOLOGY Target Classification"
+ "CAMEO Chemicals"
actual$result$Record$Section[[20]]$Section[[15]]$Description vs expected$result$Record$Section[[20]]$Section[[15]]$Description
- "Classification of this entity in the context of targets, provided by the IUPHAR/BPS Guide to PHARMACOLOGY."
+ "CAMEO chemical reactivity classification from CAMEO Chemicals, which is a database of hazardous chemical datasheets that emergency responders and planners can use to get response recommendations and predict hazards (e.g., explosions or toxic fumes)."
actual$result$Record$Section[[20]]$Section[[15]]$URL vs expected$result$Record$Section[[20]]$Section[[15]]$URL
- "https://www.guidetopharmacology.org/"
+ "https://cameochemicals.noaa.gov/"
actual$result$Record$Section[[20]]$Section[[15]]$Information[[1]]$ReferenceNumber vs expected$result$Record$Section[[20]]$Section[[15]]$Information[[1]]$ReferenceNumber
- 237.0
+ 236.0
actual$result$Record$Section[[20]]$Section[[15]]$Information[[1]]$URL vs expected$result$Record$Section[[20]]$Section[[15]]$Information[[1]]$URL
- "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=92"
+ "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=86"
actual$result$Record$Section[[20]]$Section[[15]]$Information[[1]]$Value$Number vs expected$result$Record$Section[[20]]$Section[[15]]$Information[[1]]$Value$Number
- 92.0
+ 86.0
actual$result$Record$Section[[20]]$Section[[16]]$TOCHeading vs expected$result$Record$Section[[20]]$Section[[16]]$TOCHeading
- "ChEMBL Target Tree"
+ "IUPHAR/BPS Guide to PHARMACOLOGY Target Classification"
actual$result$Record$Section[[20]]$Section[[16]]$Description vs expected$result$Record$Section[[20]]$Section[[16]]$Description
- "Classification of this entity in the context of targets, provided by ChEMBL."
+ "Classification of this entity in the context of targets, provided by the IUPHAR/BPS Guide to PHARMACOLOGY."
actual$result$Record$Section[[20]]$Section[[16]]$URL vs expected$result$Record$Section[[20]]$Section[[16]]$URL
- "https://www.ebi.ac.uk/chembl/"
+ "https://www.guidetopharmacology.org/"
actual$result$Record$Section[[20]]$Section[[16]]$Information[[1]]$ReferenceNumber vs expected$result$Record$Section[[20]]$Section[[16]]$Information[[1]]$ReferenceNumber
- 236.0
+ 238.0
actual$result$Record$Section[[20]]$Section[[16]]$Information[[1]]$URL vs expected$result$Record$Section[[20]]$Section[[16]]$Information[[1]]$URL
- "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=87"
+ "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=92"
actual$result$Record$Section[[20]]$Section[[16]]$Information[[1]]$Value$Number vs expected$result$Record$Section[[20]]$Section[[16]]$Information[[1]]$Value$Number
- 87.0
+ 92.0
actual$result$Record$Section[[20]]$Section[[17]]$TOCHeading vs expected$result$Record$Section[[20]]$Section[[17]]$TOCHeading
- "UN GHS Classification"
+ "ChEMBL Target Tree"
actual$result$Record$Section[[20]]$Section[[17]]$Description vs expected$result$Record$Section[[20]]$Section[[17]]$Description
- "The United Nations' Globally Harmonized System of Classification and Labelling of Chemicals (GHS) provides a harmonized basis for globally uniform physical, environmental, and health and safety information on hazardous chemical substances and mixtures."
+ "Classification of this entity in the context of targets, provided by ChEMBL."
actual$result$Record$Section[[20]]$Section[[17]]$URL vs expected$result$Record$Section[[20]]$Section[[17]]$URL
- "https://unece.org/about-ghs"
+ "https://www.ebi.ac.uk/chembl/"
actual$result$Record$Section[[20]]$Section[[17]]$Information[[1]]$ReferenceNumber vs expected$result$Record$Section[[20]]$Section[[17]]$Information[[1]]$ReferenceNumber
- 233.0
+ 237.0
actual$result$Record$Section[[20]]$Section[[17]]$Information[[1]]$URL vs expected$result$Record$Section[[20]]$Section[[17]]$Information[[1]]$URL
- "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=83"
+ "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=87"
actual$result$Record$Section[[20]]$Section[[17]]$Information[[1]]$Value$Number vs expected$result$Record$Section[[20]]$Section[[17]]$Information[[1]]$Value$Number
- 83.0
+ 87.0
actual$result$Record$Section[[20]]$Section[[18]]$TOCHeading vs expected$result$Record$Section[[20]]$Section[[18]]$TOCHeading
- "EPA CPDat Classification"
+ "UN GHS Classification"
actual$result$Record$Section[[20]]$Section[[18]]$Description vs expected$result$Record$Section[[20]]$Section[[18]]$Description
- "Classification from the U.S. Environmental Protection Agency's CPDat (Chemical and Products Database). This database contains information mapping more than 49,000 chemicals to a set of terms categorizing their usage or function in 16,000 consumer products (e.g. shampoo, soap) types based on what chemicals they contain."
+ "The United Nations' Globally Harmonized System of Classification and Labelling of Chemicals (GHS) provides a harmonized basis for globally uniform physical, environmental, and health and safety information on hazardous chemical substances and mixtures."
actual$result$Record$Section[[20]]$Section[[18]]$URL vs expected$result$Record$Section[[20]]$Section[[18]]$URL
- "https://www.epa.gov/chemical-research/chemical-and-products-database-cpdat"
+ "https://unece.org/about-ghs"
actual$result$Record$Section[[20]]$Section[[18]]$Information[[1]]$ReferenceNumber vs expected$result$Record$Section[[20]]$Section[[18]]$Information[[1]]$ReferenceNumber
- 239.0
+ 234.0
actual$result$Record$Section[[20]]$Section[[18]]$Information[[1]]$URL vs expected$result$Record$Section[[20]]$Section[[18]]$Information[[1]]$URL
- "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=99"
+ "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=83"
actual$result$Record$Section[[20]]$Section[[18]]$Information[[1]]$Value$Number vs expected$result$Record$Section[[20]]$Section[[18]]$Information[[1]]$Value$Number
- 99.0
+ 83.0
actual$result$Record$Section[[20]]$Section[[19]]$TOCHeading vs expected$result$Record$Section[[20]]$Section[[19]]$TOCHeading
- "NORMAN Suspect List Exchange Classification"
+ "EPA CPDat Classification"
actual$result$Record$Section[[20]]$Section[[19]]$Description vs expected$result$Record$Section[[20]]$Section[[19]]$Description
- "A classification from the NORMAN Suspect List Exchange, which serve as a central access point to find lists of chemicals with environmental concerns."
+ "Classification from the U.S. Environmental Protection Agency's CPDat (Chemical and Products Database). This database contains information mapping more than 49,000 chemicals to a set of terms categorizing their usage or function in 16,000 consumer products (e.g. shampoo, soap) types based on what chemicals they contain."
actual$result$Record$Section[[20]]$Section[[19]]$URL vs expected$result$Record$Section[[20]]$Section[[19]]$URL
- "https://www.norman-network.com/nds/SLE/"
+ "https://www.epa.gov/chemical-research/chemical-and-products-database-cpdat"
actual$result$Record$Section[[20]]$Section[[19]]$Information[[1]]$URL vs expected$result$Record$Section[[20]]$Section[[19]]$Information[[1]]$URL
- "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=101"
+ "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=99"
actual$result$Record$Section[[20]]$Section[[19]]$Information[[1]]$Value$Number vs expected$result$Record$Section[[20]]$Section[[19]]$Information[[1]]$Value$Number
- 101.0
+ 99.0
actual$result$Record$Section[[20]]$Section[[20]]$TOCHeading vs expected$result$Record$Section[[20]]$Section[[20]]$TOCHeading
- "CCSBase Classification"
+ "NORMAN Suspect List Exchange Classification"
actual$result$Record$Section[[20]]$Section[[20]]$Description vs expected$result$Record$Section[[20]]$Section[[20]]$Description
- "CCSbase is an integrated platform that contains collision cross section data for the compound. The CCSbase classification groups the compounds by the type of adduct ions that can be formed from them (e.g., [M-H]-, [M+H]+, [M+Na]+, [M+K]+)."
+ "A classification from the NORMAN Suspect List Exchange, which serve as a central access point to find lists of chemicals with environmental concerns."
actual$result$Record$Section[[20]]$Section[[20]]$URL vs expected$result$Record$Section[[20]]$Section[[20]]$URL
- "https://ccsbase.net/"
+ "https://www.norman-network.com/nds/SLE/"
actual$result$Record$Section[[20]]$Section[[20]]$Information[[1]]$URL vs expected$result$Record$Section[[20]]$Section[[20]]$Information[[1]]$URL
- "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=104"
+ "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=101"
actual$result$Record$Section[[20]]$Section[[20]]$Information[[1]]$Value$Number vs expected$result$Record$Section[[20]]$Section[[20]]$Information[[1]]$Value$Number
- 104.0
+ 101.0
actual$result$Record$Section[[20]]$Section[[21]]$TOCHeading vs expected$result$Record$Section[[20]]$Section[[21]]$TOCHeading
- "EPA DSSTox Classification"
+ "CCSBase Classification"
actual$result$Record$Section[[20]]$Section[[21]]$Description vs expected$result$Record$Section[[20]]$Section[[21]]$Description
- "Classification from the U.S. Environmental Protection Agency's Distributed Structure-Searchable Toxicity (DSSTox) database. DSSTox provides a high quality public chemistry resource for supporting improved predictive toxicology. A distinguishing feature of this effort is the accurate mapping of bioassay and physicochemical property data associated with chemical substances to their corresponding chemical structures. "
+ "CCSbase is an integrated platform that contains collision cross section data for the compound. The CCSbase classification groups the compounds by the type of adduct ions that can be formed from them (e.g., [M-H]-, [M+H]+, [M+Na]+, [M+K]+)."
actual$result$Record$Section[[20]]$Section[[21]]$URL vs expected$result$Record$Section[[20]]$Section[[21]]$URL
- "https://www.epa.gov/chemical-research/distributed-structure-searchable-toxicity-dsstox-database"
+ "https://ccsbase.net/"
actual$result$Record$Section[[20]]$Section[[21]]$Information[[1]]$URL vs expected$result$Record$Section[[20]]$Section[[21]]$Information[[1]]$URL
- "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=105"
+ "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=104"
actual$result$Record$Section[[20]]$Section[[21]]$Information[[1]]$Value$Number vs expected$result$Record$Section[[20]]$Section[[21]]$Information[[1]]$Value$Number
- 105.0
+ 104.0
actual$result$Record$Section[[20]]$Section[[22]]$TOCHeading vs expected$result$Record$Section[[20]]$Section[[22]]$TOCHeading
- "EPA TSCA and CDR Classification"
+ "EPA DSSTox Classification"
actual$result$Record$Section[[20]]$Section[[22]]$Description vs expected$result$Record$Section[[20]]$Section[[22]]$Description
- "EPA Chemicals under the Toxic Substances Control Act (TSCA) collection contains information on chemicals and their regulation under TSCA. The chemical classification tree is created based on the TSCA substance regulatory flag, UVCB, and commercial activity status."
+ "Classification from the U.S. Environmental Protection Agency's Distributed Structure-Searchable Toxicity (DSSTox) database. DSSTox provides a high quality public chemistry resource for supporting improved predictive toxicology. A distinguishing feature of this effort is the accurate mapping of bioassay and physicochemical property data associated with chemical substances to their corresponding chemical structures. "
actual$result$Record$Section[[20]]$Section[[22]]$URL vs expected$result$Record$Section[[20]]$Section[[22]]$URL
- "https://www.epa.gov/tsca-inventory"
+ "https://www.epa.gov/chemical-research/distributed-structure-searchable-toxicity-dsstox-database"
actual$result$Record$Section[[20]]$Section[[22]]$Information[[1]]$ReferenceNumber vs expected$result$Record$Section[[20]]$Section[[22]]$Information[[1]]$ReferenceNumber
- 251.0
+ 243.0
actual$result$Record$Section[[20]]$Section[[22]]$Information[[1]]$URL vs expected$result$Record$Section[[20]]$Section[[22]]$Information[[1]]$URL
- "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=132"
+ "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=105"
actual$result$Record$Section[[20]]$Section[[22]]$Information[[1]]$Value$Number vs expected$result$Record$Section[[20]]$Section[[22]]$Information[[1]]$Value$Number
- 132.0
+ 105.0
actual$result$Record$Section[[20]]$Section[[23]]$TOCHeading vs expected$result$Record$Section[[20]]$Section[[23]]$TOCHeading
- "LOTUS Tree"
+ "EPA TSCA and CDR Classification"
actual$result$Record$Section[[20]]$Section[[23]]$Description vs expected$result$Record$Section[[20]]$Section[[23]]$Description
- "Biological and chemical tree provided by the naturaL prOducTs occUrrence databaSe (LOTUS)"
+ "EPA Chemicals under the Toxic Substances Control Act (TSCA) collection contains information on chemicals and their regulation under TSCA. The chemical classification tree is created based on the TSCA substance regulatory flag, UVCB, and commercial activity status."
actual$result$Record$Section[[20]]$Section[[23]]$URL vs expected$result$Record$Section[[20]]$Section[[23]]$URL
- "https://lotus.naturalproducts.net/"
+ "https://www.epa.gov/tsca-inventory"
actual$result$Record$Section[[20]]$Section[[23]]$Information[[1]]$ReferenceNumber vs expected$result$Record$Section[[20]]$Section[[23]]$Information[[1]]$ReferenceNumber
- 246.0
+ 252.0
actual$result$Record$Section[[20]]$Section[[23]]$Information[[1]]$URL vs expected$result$Record$Section[[20]]$Section[[23]]$Information[[1]]$URL
- "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=115"
+ "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=132"
actual$result$Record$Section[[20]]$Section[[23]]$Information[[1]]$Value$Number vs expected$result$Record$Section[[20]]$Section[[23]]$Information[[1]]$Value$Number
- 115.0
+ 132.0
`actual$result$Record$Section[[20]]$Section[[24]]` is length 3
`expected$result$Record$Section[[20]]$Section[[24]]` is length 4
names(actual$result$Record$Section[[20]]$Section[[24]]) vs names(expected$result$Record$Section[[20]]$Section[[24]])
"TOCHeading"
"Description"
- "Information"
+ "URL"
+ "Information"
actual$result$Record$Section[[20]]$Section[[24]]$TOCHeading vs expected$result$Record$Section[[20]]$Section[[24]]$TOCHeading
- "FDA Drug Type and Pharmacologic Classification"
+ "LOTUS Tree"
actual$result$Record$Section[[20]]$Section[[24]]$Description vs expected$result$Record$Section[[20]]$Section[[24]]$Description
- "The FDA Drug Type and Pharmacologic Classification is based on the FDA drug type and pharm classes data from the National Drug Code (NDC) Directory."
+ "Biological and chemical tree provided by the naturaL prOducTs occUrrence databaSe (LOTUS)"
actual$result$Record$Section[[20]]$Section[[24]]$Information[[1]]$URL vs expected$result$Record$Section[[20]]$Section[[24]]$Information[[1]]$URL
- "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=116"
+ "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=115"
actual$result$Record$Section[[20]]$Section[[24]]$Information[[1]]$Value$Number vs expected$result$Record$Section[[20]]$Section[[24]]$Information[[1]]$Value$Number
- 116.0
+ 115.0
`actual$result$Record$Section[[20]]$Section[[24]]$URL` is absent
`expected$result$Record$Section[[20]]$Section[[24]]$URL` is a character vector ('https://lotus.naturalproducts.net/')
actual$result$Record$Section[[20]]$Section[[25]]$TOCHeading vs expected$result$Record$Section[[20]]$Section[[25]]$TOCHeading
- "EPA Substance Registry Services Tree"
+ "FDA Drug Type and Pharmacologic Classification"
actual$result$Record$Section[[20]]$Section[[25]]$Description vs expected$result$Record$Section[[20]]$Section[[25]]$Description
- "Substance Registry Services (SRS) is the Environmental Protection Agency's (EPA) central system for information about substances that are tracked or regulated by EPA or other sources. It is a resource for basic information about chemicals, biological organisms, and other substances of interest to EPA and its state and tribal partners. SRS makes it possible to identify which EPA data systems, environmental statutes, or other sources have information about a substance and which synonym is used by that system or statute."
+ "The FDA Drug Type and Pharmacologic Classification is based on the FDA drug type and pharm classes data from the National Drug Code (NDC) Directory."
actual$result$Record$Section[[20]]$Section[[25]]$Information[[1]]$ReferenceNumber vs expected$result$Record$Section[[20]]$Section[[25]]$Information[[1]]$ReferenceNumber
- 250.0
+ 248.0
actual$result$Record$Section[[20]]$Section[[25]]$Information[[1]]$URL vs expected$result$Record$Section[[20]]$Section[[25]]$Information[[1]]$URL
- "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=123"
+ "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=116"
actual$result$Record$Section[[20]]$Section[[25]]$Information[[1]]$Value$Number vs expected$result$Record$Section[[20]]$Section[[25]]$Information[[1]]$Value$Number
- 123.0
+ 116.0
`actual$result$Record$Section[[20]]$Section[[26]]` is length 4
`expected$result$Record$Section[[20]]$Section[[26]]` is length 3
names(actual$result$Record$Section[[20]]$Section[[26]]) vs names(expected$result$Record$Section[[20]]$Section[[26]])
"TOCHeading"
"Description"
- "URL"
"Information"
actual$result$Record$Section[[20]]$Section[[26]]$TOCHeading vs expected$result$Record$Section[[20]]$Section[[26]]$TOCHeading
- "MolGenie Organic Chemistry Ontology"
+ "EPA Substance Registry Services Tree"
actual$result$Record$Section[[20]]$Section[[26]]$Description vs expected$result$Record$Section[[20]]$Section[[26]]$Description
- "An organic chemistry ontology developed by MolGenie and OntoChem to assign compounds to structural classes, currently mapped to >1.7 million per- and polyfluoroalkyl substances (PFAS) extracted from the datasets explained in Barnabas et al (2022) DOI: 10.1039/D2DD00019A"
+ "Substance Registry Services (SRS) is the Environmental Protection Agency's (EPA) central system for information about substances that are tracked or regulated by EPA or other sources. It is a resource for basic information about chemicals, biological organisms, and other substances of interest to EPA and its state and tribal partners. SRS makes it possible to identify which EPA data systems, environmental statutes, or other sources have information about a substance and which synonym is used by that system or statute."
`actual$result$Record$Section[[20]]$Section[[26]]$URL` is a character vector ('https://github.com/MolGenie/ontology/')
`expected$result$Record$Section[[20]]$Section[[26]]$URL` is absent
actual$result$Record$Section[[20]]$Section[[26]]$Information[[1]]$ReferenceNumber vs expected$result$Record$Section[[20]]$Section[[26]]$Information[[1]]$ReferenceNumber
- 252.0
+ 251.0
actual$result$Record$Section[[20]]$Section[[26]]$Information[[1]]$URL vs expected$result$Record$Section[[20]]$Section[[26]]$Information[[1]]$URL
- "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=134"
+ "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=123"
actual$result$Record$Section[[20]]$Section[[26]]$Information[[1]]$Value$Number vs expected$result$Record$Section[[20]]$Section[[26]]$Information[[1]]$Value$Number
- 134.0
+ 123.0
`actual$result$Record$Section[[20]]$Section[[27]]` is length 3
`expected$result$Record$Section[[20]]$Section[[27]]` is length 4
names(actual$result$Record$Section[[20]]$Section[[27]]) vs names(expected$result$Record$Section[[20]]$Section[[27]])
"TOCHeading"
"Description"
- "Information"
+ "URL"
+ "Information"
actual$result$Record$Section[[20]]$Section[[27]]$TOCHeading vs expected$result$Record$Section[[20]]$Section[[27]]$TOCHeading
- "Chemicals in PubChem from Regulatory Sources"
+ "MolGenie Organic Chemistry Ontology"
actual$result$Record$Section[[20]]$Section[[27]]$Description vs expected$result$Record$Section[[20]]$Section[[27]]$Description
- "PubChem chemicals with regulatory data sources provides list of chemicals with annotation specific to regulatory data sources."
+ "An organic chemistry ontology developed by MolGenie and OntoChem to assign compounds to structural classes, currently mapped to >1.7 million per- and polyfluoroalkyl substances (PFAS) extracted from the datasets explained in Barnabas et al (2022) DOI: 10.1039/D2DD00019A"
actual$result$Record$Section[[20]]$Section[[27]]$Information[[1]]$URL vs expected$result$Record$Section[[20]]$Section[[27]]$Information[[1]]$URL
- "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=135"
+ "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=134"
actual$result$Record$Section[[20]]$Section[[27]]$Information[[1]]$Value$Number vs expected$result$Record$Section[[20]]$Section[[27]]$Information[[1]]$Value$Number
- 135.0
+ 134.0
`actual$result$Record$Section[[20]]$Section[[27]]$URL` is absent
`expected$result$Record$Section[[20]]$Section[[27]]$URL` is a character vector ('https://github.com/MolGenie/ontology/')
actual$result$Record$Section[[20]]$Section[[28]]$TOCHeading vs expected$result$Record$Section[[20]]$Section[[28]]$TOCHeading
- "ATCvet Classification"
+ "Chemicals in PubChem from Regulatory Sources"
actual$result$Record$Section[[20]]$Section[[28]]$Description vs expected$result$Record$Section[[20]]$Section[[28]]$Description
- "The ATCvet system for the classification of veterinary medicines is based on the same overall principles as the ATC system for substances used in human medicine. In most cases an ATC code exists which can be used to classify a product in the ATCvet system. The ATCvet code is then created by placing the letter Q in front of the ATC code."
+ "PubChem chemicals with regulatory data sources provides list of chemicals with annotation specific to regulatory data sources."
actual$result$Record$Section[[20]]$Section[[28]]$Information[[1]]$URL vs expected$result$Record$Section[[20]]$Section[[28]]$Information[[1]]$URL
- "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=136"
+ "https://pubchem.ncbi.nlm.nih.gov/classification/#hid=135"
actual$result$Record$Section[[20]]$Section[[28]]$Information[[1]]$Value$Number vs expected$result$Record$Section[[20]]$Section[[28]]$Information[[1]]$Value$Number
- 136.0
+ 135.0
`actual$result$Record$Section[[20]]$Section[[29]]` is absent
`expected$result$Record$Section[[20]]$Section[[29]]` is a list
`actual$result$Record$Reference` is length 257
`expected$result$Record$Reference` is length 258
actual$result$Record$Reference[[26]]$URL vs expected$result$Record$Reference[[26]]$URL
- "https://ttd.idrblab.cn/data/drug/details/D0GY5Z"
+ "https://idrblab.net/ttd/data/drug/details/D0GY5Z"
actual$result$Record$Reference[[46]]$URL vs expected$result$Record$Reference[[46]]$URL
- "https://ttd.idrblab.cn/data/drug/details/D07DPI"
+ "https://idrblab.net/ttd/data/drug/details/D07DPI"
actual$result$Record$Reference[[47]]$URL vs expected$result$Record$Reference[[47]]$URL
- "https://ttd.idrblab.cn/data/drug/details/D0G1EC"
+ "https://idrblab.net/ttd/data/drug/details/D0G1EC"
`actual$result$Record$Reference[[223]]` is length 8
`expected$result$Record$Reference[[223]]` is length 6
names(actual$result$Record$Reference[[223]])[4:8] vs names(expected$result$Record$Reference[[223]])[4:6]
"Name"
"Description"
"URL"
- "LicenseNote"
- "LicenseURL"
`actual$result$Record$Reference[[223]]$SourceName`: "KEGG"
`expected$result$Record$Reference[[223]]$SourceName`: "ChEBI"
`actual$result$Record$Reference[[223]]$SourceID`: "br08301"
`expected$result$Record$Reference[[223]]$SourceID`: "OBO"
actual$result$Record$Reference[[223]]$Name vs expected$result$Record$Reference[[223]]$Name
- "Therapeutic category of drugs in Japan"
+ "ChEBI Ontology"
actual$result$Record$Reference[[223]]$Description vs expected$result$Record$Reference[[223]]$Description
- "KEGG is an encyclopedia of genes and genomes. Assigning functional meanings to genes and genomes both at the molecular and higher levels is the primary objective of the KEGG database project."
+ "The ChEBI Ontology is a structured classification of the entities contained within ChEBI."
actual$result$Record$Reference[[223]]$URL vs expected$result$Record$Reference[[223]]$URL
- "http://www.genome.jp/kegg-bin/get_htext?br08301.keg"
+ "http://www.ebi.ac.uk/chebi/userManualForward.do#ChEBI%20Ontology"
`actual$result$Record$Reference[[223]]$LicenseNote` is a character vector ('Academic users may freely use the KEGG website. Non-academic use of KEGG generally requires a commercial license')
`expected$result$Record$Reference[[223]]$LicenseNote` is absent
`actual$result$Record$Reference[[223]]$LicenseURL` is a character vector ('https://www.kegg.jp/kegg/legal.html')
`expected$result$Record$Reference[[223]]$LicenseURL` is absent
`actual$result$Record$Reference[[224]]$SourceID`: "br08303"
`expected$result$Record$Reference[[224]]$SourceID`: "br08301"
actual$result$Record$Reference[[224]]$Name vs expected$result$Record$Reference[[224]]$Name
- "Anatomical Therapeutic Chemical (ATC) classification"
+ "Therapeutic category of drugs in Japan"
actual$result$Record$Reference[[224]]$URL vs expected$result$Record$Reference[[224]]$URL
- "http://www.genome.jp/kegg-bin/get_htext?br08303.keg"
+ "http://www.genome.jp/kegg-bin/get_htext?br08301.keg"
`actual$result$Record$Reference[[225]]$SourceID`: "br08310"
`expected$result$Record$Reference[[225]]$SourceID`: "br08303"
actual$result$Record$Reference[[225]]$Name vs expected$result$Record$Reference[[225]]$Name
- "Target-based classification of drugs"
+ "Anatomical Therapeutic Chemical (ATC) classification"
actual$result$Record$Reference[[225]]$URL vs expected$result$Record$Reference[[225]]$URL
- "http://www.genome.jp/kegg-bin/get_htext?br08310.keg"
+ "http://www.genome.jp/kegg-bin/get_htext?br08303.keg"
`actual$result$Record$Reference[[226]]$SourceID`: "br08311"
`expected$result$Record$Reference[[226]]$SourceID`: "br08310"
actual$result$Record$Reference[[226]]$Name vs expected$result$Record$Reference[[226]]$Name
- "Drugs listed in the Japanese Pharmacopoeia"
+ "Target-based classification of drugs"
actual$result$Record$Reference[[226]]$URL vs expected$result$Record$Reference[[226]]$URL
- "http://www.genome.jp/kegg-bin/get_htext?br08311.keg"
+ "http://www.genome.jp/kegg-bin/get_htext?br08310.keg"
`actual$result$Record$Reference[[227]]$SourceID`: "br08312"
`expected$result$Record$Reference[[227]]$SourceID`: "br08311"
actual$result$Record$Reference[[227]]$Name vs expected$result$Record$Reference[[227]]$Name
- "Risk category of Japanese OTC drugs"
+ "Drugs listed in the Japanese Pharmacopoeia"
actual$result$Record$Reference[[227]]$URL vs expected$result$Record$Reference[[227]]$URL
- "http://www.genome.jp/kegg-bin/get_htext?br08312.keg"
+ "http://www.genome.jp/kegg-bin/get_htext?br08311.keg"
`actual$result$Record$Reference[[228]]$SourceID`: "br08313"
`expected$result$Record$Reference[[228]]$SourceID`: "br08312"
actual$result$Record$Reference[[228]]$Name vs expected$result$Record$Reference[[228]]$Name
- "Classification of Japanese OTC drugs"
+ "Risk category of Japanese OTC drugs"
actual$result$Record$Reference[[228]]$URL vs expected$result$Record$Reference[[228]]$URL
- "http://www.genome.jp/kegg-bin/get_htext?br08313.keg"
+ "http://www.genome.jp/kegg-bin/get_htext?br08312.keg"
`actual$result$Record$Reference[[229]]$ReferenceNumber`: 231.0
`expected$result$Record$Reference[[229]]$ReferenceNumber`: 230.0
`actual$result$Record$Reference[[229]]$SourceName`: "FDA Pharm Classes"
`expected$result$Record$Reference[[229]]$SourceName`: "KEGG"
`actual$result$Record$Reference[[229]]$SourceID`: "FDA_pharm_tree"
`expected$result$Record$Reference[[229]]$SourceID`: "br08313"
actual$result$Record$Reference[[229]]$Name vs expected$result$Record$Reference[[229]]$Name
- "FDA Pharmacological Classification"
+ "Classification of Japanese OTC drugs"
actual$result$Record$Reference[[229]]$Description vs expected$result$Record$Reference[[229]]$Description
- "FDA pharmacologic class is a group of active moieties that share scientifically documented properties and is defined on the basis of any combination of attributes of the active moiety."
+ "KEGG is an encyclopedia of genes and genomes. Assigning functional meanings to genes and genomes both at the molecular and higher levels is the primary objective of the KEGG database project."
actual$result$Record$Reference[[229]]$URL vs expected$result$Record$Reference[[229]]$URL
- "https://www.fda.gov/industry/structured-product-labeling-resources/pharmacologic-class"
+ "http://www.genome.jp/kegg-bin/get_htext?br08313.keg"
actual$result$Record$Reference[[229]]$LicenseNote vs expected$result$Record$Reference[[229]]$LicenseNote
- "Unless otherwise noted, the contents of the FDA website (www.fda.gov), both text and graphics, are not copyrighted. They are in the public domain and may be republished, reprinted and otherwise used freely by anyone without the need to obtain permission from FDA. Credit to the U.S. Food and Drug Administration as the source is appreciated but not required."
+ "Academic users may freely use the KEGG website. Non-academic use of KEGG generally requires a commercial license"
actual$result$Record$Reference[[229]]$LicenseURL vs expected$result$Record$Reference[[229]]$LicenseURL
- "https://www.fda.gov/about-fda/about-website/website-policies#linking"
+ "https://www.kegg.jp/kegg/legal.html"
actual$result$Record$Reference[[230]]$SourceName vs expected$result$Record$Reference[[230]]$SourceName
- "WHO Anatomical Therapeutic Chemical (ATC) Classification"
+ "FDA Pharm Classes"
`actual$result$Record$Reference[[230]]$SourceID`: "ATCTree"
`expected$result$Record$Reference[[230]]$SourceID`: "FDA_pharm_tree"
actual$result$Record$Reference[[230]]$Name vs expected$result$Record$Reference[[230]]$Name
- "ATC Classification"
+ "FDA Pharmacological Classification"
actual$result$Record$Reference[[230]]$Description vs expected$result$Record$Reference[[230]]$Description
- "The WHO ATC (Anatomical Therapeutic Chemical) classification system classify the active substances into different groups according to the organ or system on which they act and their therapeutic, pharmacological and chemical properties."
+ "FDA pharmacologic class is a group of active moieties that share scientifically documented properties and is defined on the basis of any combination of attributes of the active moiety."
actual$result$Record$Reference[[230]]$URL vs expected$result$Record$Reference[[230]]$URL
- "https://atcddd.fhi.no/atc_ddd_index/"
+ "https://www.fda.gov/industry/structured-product-labeling-resources/pharmacologic-class"
actual$result$Record$Reference[[230]]$LicenseNote vs expected$result$Record$Reference[[230]]$LicenseNote
- "Use of all or parts of the material requires reference to the WHO Collaborating Centre for Drug Statistics Methodology. Copying and distribution for commercial purposes is not allowed. Changing or manipulating the material is not allowed."
+ "Unless otherwise noted, the contents of the FDA website (www.fda.gov), both text and graphics, are not copyrighted. They are in the public domain and may be republished, reprinted and otherwise used freely by anyone without the need to obtain permission from FDA. Credit to the U.S. Food and Drug Administration as the source is appreciated but not required."
actual$result$Record$Reference[[230]]$LicenseURL vs expected$result$Record$Reference[[230]]$LicenseURL
- "https://www.whocc.no/copyright_disclaimer/"
+ "https://www.fda.gov/about-fda/about-website/website-policies#linking"
`actual$result$Record$Reference[[231]]` is length 6
`expected$result$Record$Reference[[231]]` is length 8
names(actual$result$Record$Reference[[231]])[4:6] vs names(expected$result$Record$Reference[[231]])[4:8]
"SourceID"
"Name"
"Description"
"URL"
+ "LicenseNote"
+ "LicenseURL"
actual$result$Record$Reference[[231]]$SourceName vs expected$result$Record$Reference[[231]]$SourceName
- "GHS Classification (UNECE)"
+ "WHO Anatomical Therapeutic Chemical (ATC) Classification"
`actual$result$Record$Reference[[231]]$SourceID`: "UN_GHS_tree"
`expected$result$Record$Reference[[231]]$SourceID`: "ATCTree"
`actual$result$Record$Reference[[231]]$Name`: "GHS Classification"
`expected$result$Record$Reference[[231]]$Name`: "ATC Classification"
actual$result$Record$Reference[[231]]$Description vs expected$result$Record$Reference[[231]]$Description
- "The United Nations' Globally Harmonized System of Classification and Labeling of Chemicals (GHS) provides a harmonized basis for globally uniform physical, environmental, health and safety information on hazardous chemical substances and mixtures."
+ "The WHO ATC (Anatomical Therapeutic Chemical) classification system classify the active substances into different groups according to the organ or system on which they act and their therapeutic, pharmacological and chemical properties."
actual$result$Record$Reference[[231]]$URL vs expected$result$Record$Reference[[231]]$URL
- "http://www.unece.org/trans/danger/publi/ghs/ghs_welcome_e.html"
+ "https://atcddd.fhi.no/atc_ddd_index/"
`actual$result$Record$Reference[[231]]$LicenseNote` is absent
`expected$result$Record$Reference[[231]]$LicenseNote` is a character vector ('Use of all or parts of the material requires reference to the WHO Collaborating Centre for Drug Statistics Methodology. Copying and distribution for commercial purposes is not allowed. Changing or manipulating the material is not allowed.')
`actual$result$Record$Reference[[231]]$LicenseURL` is absent
`expected$result$Record$Reference[[231]]$LicenseURL` is a character vector ('https://www.whocc.no/copyright_disclaimer/')
`actual$result$Record$Reference[[232]]` is length 8
`expected$result$Record$Reference[[232]]` is length 6
names(actual$result$Record$Reference[[232]])[4:8] vs names(expected$result$Record$Reference[[232]])[4:6]
"Name"
"Description"
"URL"
- "LicenseURL"
- "IsToxnet"
actual$result$Record$Reference[[232]]$SourceName vs expected$result$Record$Reference[[232]]$SourceName
- "ChemIDplus"
+ "GHS Classification (UNECE)"
`actual$result$Record$Reference[[232]]$SourceID`: "ChemIDplus_tree"
`expected$result$Record$Reference[[232]]$SourceID`: "UN_GHS_tree"
actual$result$Record$Reference[[232]]$Name vs expected$result$Record$Reference[[232]]$Name
- "ChemIDplus Chemical Information Classification"
+ "GHS Classification"
actual$result$Record$Reference[[232]]$Description vs expected$result$Record$Reference[[232]]$Description
- "ChemIDplus is a TOXNET (TOXicology data NETwork) databases that contain chemicals and drugs related information."
+ "The United Nations' Globally Harmonized System of Classification and Labeling of Chemicals (GHS) provides a harmonized basis for globally uniform physical, environmental, health and safety information on hazardous chemical substances and mixtures."
actual$result$Record$Reference[[232]]$URL vs expected$result$Record$Reference[[232]]$URL
- "https://pubchem.ncbi.nlm.nih.gov/source/chemidplus"
+ "http://www.unece.org/trans/danger/publi/ghs/ghs_welcome_e.html"
`actual$result$Record$Reference[[232]]$LicenseURL` is a character vector ('https://www.nlm.nih.gov/copyright.html')
`expected$result$Record$Reference[[232]]$LicenseURL` is absent
`actual$result$Record$Reference[[232]]$IsToxnet` is a logical vector (TRUE)
`expected$result$Record$Reference[[232]]$IsToxnet` is absent
names(actual$result$Record$Reference[[233]])[4:8] vs names(expected$result$Record$Reference[[233]])[4:8]
"Name"
"Description"
"URL"
- "LicenseNote"
+ "LicenseURL"
- "LicenseURL"
+ "IsToxnet"
`actual$result$Record$Reference[[233]]$SourceName`: "CAMEO Chemicals"
`expected$result$Record$Reference[[233]]$SourceName`: "ChemIDplus"
`actual$result$Record$Reference[[233]]$SourceID`: "CameoReactivityTree"
`expected$result$Record$Reference[[233]]$SourceID`: "ChemIDplus_tree"
actual$result$Record$Reference[[233]]$Name vs expected$result$Record$Reference[[233]]$Name
- "CAMEO Chemical Reactivity Classification"
+ "ChemIDplus Chemical Information Classification"
actual$result$Record$Reference[[233]]$Description vs expected$result$Record$Reference[[233]]$Description
- "CAMEO Chemical Reactivity Classification was created based on the reactive groups."
+ "ChemIDplus is a TOXNET (TOXicology data NETwork) databases that contain chemicals and drugs related information."
actual$result$Record$Reference[[233]]$URL vs expected$result$Record$Reference[[233]]$URL
- "https://cameochemicals.noaa.gov/browse/react"
+ "https://pubchem.ncbi.nlm.nih.gov/source/chemidplus"
`actual$result$Record$Reference[[233]]$LicenseNote` is a character vector ('CAMEO Chemicals and all other CAMEO products are available at no charge to those organizations and individuals (recipients) responsible for the safe handling of chemicals. However, some of the chemical data itself is subject to the copyright restrictions of the companies or organizations that provided the data.')
`expected$result$Record$Reference[[233]]$LicenseNote` is absent
actual$result$Record$Reference[[233]]$LicenseURL vs expected$result$Record$Reference[[233]]$LicenseURL
- "https://cameochemicals.noaa.gov/help/reference/terms_and_conditions.htm?d_f=false"
+ "https://www.nlm.nih.gov/copyright.html"
`actual$result$Record$Reference[[233]]$IsToxnet` is absent
`expected$result$Record$Reference[[233]]$IsToxnet` is a logical vector (TRUE)
`actual$result$Record$Reference[[234]]$SourceName`: "ChEMBL"
`expected$result$Record$Reference[[234]]$SourceName`: "CAMEO Chemicals"
`actual$result$Record$Reference[[234]]$SourceID`: "Target Tree"
`expected$result$Record$Reference[[234]]$SourceID`: "CameoReactivityTree"
actual$result$Record$Reference[[234]]$Name vs expected$result$Record$Reference[[234]]$Name
- "ChEMBL Protein Target Tree"
+ "CAMEO Chemical Reactivity Classification"
lines(actual$result$Record$Reference[[234]]$Description) vs lines(expected$result$Record$Reference[[234]]$Description)
- "The ChEMBL Protein Target Tree is a structured classification of the protein target entities contained with the ChEMBL resource release version 35"
- "ChEMBL."
+ "CAMEO Chemical Reactivity Classification was created based on the reactive groups."
actual$result$Record$Reference[[234]]$URL vs expected$result$Record$Reference[[234]]$URL
- "https://www.ebi.ac.uk/chembl/g/#browse/targets"
+ "https://cameochemicals.noaa.gov/browse/react"
actual$result$Record$Reference[[234]]$LicenseNote vs expected$result$Record$Reference[[234]]$LicenseNote
- "Access to the web interface of ChEMBL is made under the EBI's Terms of Use (http://www.ebi.ac.uk/Information/termsofuse.html). The ChEMBL data is made available on a Creative Commons Attribution-Share Alike 3.0 Unported License (http://creativecommons.org/licenses/by-sa/3.0/)."
+ "CAMEO Chemicals and all other CAMEO products are available at no charge to those organizations and individuals (recipients) responsible for the safe handling of chemicals. However, some of the chemical data itself is subject to the copyright restrictions of the companies or organizations that provided the data."
actual$result$Record$Reference[[234]]$LicenseURL vs expected$result$Record$Reference[[234]]$LicenseURL
- "http://www.ebi.ac.uk/Information/termsofuse.html"
+ "https://cameochemicals.noaa.gov/help/reference/terms_and_conditions.htm?d_f=false"
actual$result$Record$Reference[[235]]$SourceName vs expected$result$Record$Reference[[235]]$SourceName
- "IUPHAR/BPS Guide to PHARMACOLOGY"
+ "ChEMBL"
`actual$result$Record$Reference[[235]]$SourceID`: "Target Classification"
`expected$result$Record$Reference[[235]]$SourceID`: "Target Tree"
actual$result$Record$Reference[[235]]$Name vs expected$result$Record$Reference[[235]]$Name
- "Guide to Pharmacology Target Classification"
+ "ChEMBL Protein Target Tree"
lines(actual$result$Record$Reference[[235]]$Description) vs lines(expected$result$Record$Reference[[235]]$Description)
- "An expert-driven guide to pharmacological targets and the substances that act on them"
+ "The ChEMBL Protein Target Tree is a structured classification of the protein target entities contained with the ChEMBL resource release version 35"
+ "ChEMBL."
actual$result$Record$Reference[[235]]$URL vs expected$result$Record$Reference[[235]]$URL
- "https://www.guidetopharmacology.org/targets.jsp"
+ "https://www.ebi.ac.uk/chembl/g/#browse/targets"
actual$result$Record$Reference[[235]]$LicenseNote vs expected$result$Record$Reference[[235]]$LicenseNote
- "The Guide to PHARMACOLOGY database is licensed under the Open Data Commons Open Database License (ODbL) https://opendatacommons.org/licenses/odbl/. Its contents are licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (http://creativecommons.org/licenses/by-sa/4.0/)"
+ "Access to the web interface of ChEMBL is made under the EBI's Terms of Use (http://www.ebi.ac.uk/Information/termsofuse.html). The ChEMBL data is made available on a Creative Commons Attribution-Share Alike 3.0 Unported License (http://creativecommons.org/licenses/by-sa/3.0/)."
actual$result$Record$Reference[[235]]$LicenseURL vs expected$result$Record$Reference[[235]]$LicenseURL
- "https://www.guidetopharmacology.org/about.jsp#license"
+ "http://www.ebi.ac.uk/Information/termsofuse.html"
actual$result$Record$Reference[[236]]$SourceName vs expected$result$Record$Reference[[236]]$SourceName
- "KEGG"
+ "IUPHAR/BPS Guide to PHARMACOLOGY"
`actual$result$Record$Reference[[236]]$SourceID`: "br08330"
`expected$result$Record$Reference[[236]]$SourceID`: "Target Classification"
actual$result$Record$Reference[[236]]$Name vs expected$result$Record$Reference[[236]]$Name
- "Drug Groups"
+ "Guide to Pharmacology Target Classification"
actual$result$Record$Reference[[236]]$Description vs expected$result$Record$Reference[[236]]$Description
- "KEGG is an encyclopedia of genes and genomes. Assigning functional meanings to genes and genomes both at the molecular and higher levels is the primary objective of the KEGG database project."
+ "An expert-driven guide to pharmacological targets and the substances that act on them"
actual$result$Record$Reference[[236]]$URL vs expected$result$Record$Reference[[236]]$URL
- "http://www.genome.jp/kegg-bin/get_htext?br08330.keg"
+ "https://www.guidetopharmacology.org/targets.jsp"
actual$result$Record$Reference[[236]]$LicenseNote vs expected$result$Record$Reference[[236]]$LicenseNote
- "Academic users may freely use the KEGG website. Non-academic use of KEGG generally requires a commercial license"
+ "The Guide to PHARMACOLOGY database is licensed under the Open Data Commons Open Database License (ODbL) https://opendatacommons.org/licenses/odbl/. Its contents are licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (http://creativecommons.org/licenses/by-sa/4.0/)"
actual$result$Record$Reference[[236]]$LicenseURL vs expected$result$Record$Reference[[236]]$LicenseURL
- "https://www.kegg.jp/kegg/legal.html"
+ "https://www.guidetopharmacology.org/about.jsp#license"
`actual$result$Record$Reference[[237]]` is length 7
`expected$result$Record$Reference[[237]]` is length 8
names(actual$result$Record$Reference[[237]])[4:7] vs names(expected$result$Record$Reference[[237]])[4:8]
"Name"
"Description"
"URL"
- "LicenseURL"
+ "LicenseNote"
+ "LicenseURL"
actual$result$Record$Reference[[237]]$SourceName vs expected$result$Record$Reference[[237]]$SourceName
- "EPA Chemical and Products Database (CPDat)"
+ "KEGG"
`actual$result$Record$Reference[[237]]$SourceID`: "cpdat_tree"
`expected$result$Record$Reference[[237]]$SourceID`: "br08330"
`actual$result$Record$Reference[[237]]$Name`: "EPA CPDat Classification"
`expected$result$Record$Reference[[237]]$Name`: "Drug Groups"
actual$result$Record$Reference[[237]]$Description vs expected$result$Record$Reference[[237]]$Description
- "CPDat (Chemical and Products Database) is a resource for exposure-relevant data on chemicals in consumer products."
+ "KEGG is an encyclopedia of genes and genomes. Assigning functional meanings to genes and genomes both at the molecular and higher levels is the primary objective of the KEGG database project."
actual$result$Record$Reference[[237]]$URL vs expected$result$Record$Reference[[237]]$URL
- "https://www.epa.gov/chemical-research/chemical-and-products-database-cpdat"
+ "http://www.genome.jp/kegg-bin/get_htext?br08330.keg"
actual$result$Record$Reference[[237]]$LicenseURL vs expected$result$Record$Reference[[237]]$LicenseURL
- "https://www.epa.gov/privacy/privacy-act-laws-policies-and-resources"
+ "https://www.kegg.jp/kegg/legal.html"
`actual$result$Record$Reference[[237]]$LicenseNote` is absent
`expected$result$Record$Reference[[237]]$LicenseNote` is a character vector ('Academic users may freely use the KEGG website. Non-academic use of KEGG generally requires a commercial license')
`actual$result$Record$Reference[[238]]` is length 8
`expected$result$Record$Reference[[238]]` is length 7
names(actual$result$Record$Reference[[238]])[4:8] vs names(expected$result$Record$Reference[[238]])[4:7]
"Name"
"Description"
"URL"
- "LicenseNote"
"LicenseURL"
actual$result$Record$Reference[[238]]$SourceName vs expected$result$Record$Reference[[238]]$SourceName
- "NORMAN Suspect List Exchange"
+ "EPA Chemical and Products Database (CPDat)"
`actual$result$Record$Reference[[238]]$SourceID`: "norman_sle_tree"
`expected$result$Record$Reference[[238]]$SourceID`: "cpdat_tree"
actual$result$Record$Reference[[238]]$Name vs expected$result$Record$Reference[[238]]$Name
- "NORMAN Suspect List Exchange Classification"
+ "EPA CPDat Classification"
actual$result$Record$Reference[[238]]$Description vs expected$result$Record$Reference[[238]]$Description
- "The NORMAN Suspect List Exchange (NORMAN-SLE) is a central access point for NORMAN members (and others) to find suspect lists relevant for their environmental monitoring questions."
+ "CPDat (Chemical and Products Database) is a resource for exposure-relevant data on chemicals in consumer products."
actual$result$Record$Reference[[238]]$URL vs expected$result$Record$Reference[[238]]$URL
- "https://www.norman-network.com/nds/SLE/"
+ "https://www.epa.gov/chemical-research/chemical-and-products-database-cpdat"
`actual$result$Record$Reference[[238]]$LicenseNote` is a character vector ('Data: CC-BY 4.0; Code (hosted by ECI, LCSB): Artistic-2.0')
`expected$result$Record$Reference[[238]]$LicenseNote` is absent
actual$result$Record$Reference[[238]]$LicenseURL vs expected$result$Record$Reference[[238]]$LicenseURL
- "https://creativecommons.org/licenses/by/4.0/"
+ "https://www.epa.gov/privacy/privacy-act-laws-policies-and-resources"
`actual$result$Record$Reference[[239]]` is length 6
`expected$result$Record$Reference[[239]]` is length 8
names(actual$result$Record$Reference[[239]])[4:6] vs names(expected$result$Record$Reference[[239]])[4:8]
"SourceID"
"Name"
"Description"
"URL"
+ "LicenseNote"
+ "LicenseURL"
actual$result$Record$Reference[[239]]$SourceName vs expected$result$Record$Reference[[239]]$SourceName
- "CCSbase"
+ "NORMAN Suspect List Exchange"
`actual$result$Record$Reference[[239]]$SourceID`: "ccsbase_tree"
`expected$result$Record$Reference[[239]]$SourceID`: "norman_sle_tree"
actual$result$Record$Reference[[239]]$Name vs expected$result$Record$Reference[[239]]$Name
- "CCSbase Classification"
+ "NORMAN Suspect List Exchange Classification"
actual$result$Record$Reference[[239]]$Description vs expected$result$Record$Reference[[239]]$Description
- "CCSbase is an integrated platform consisting of a comprehensive database of Collision Cross Section (CCS) measurements taken from a variety of sources and a high-quality and high-throughput CCS prediction model trained with this database using machine learning."
+ "The NORMAN Suspect List Exchange (NORMAN-SLE) is a central access point for NORMAN members (and others) to find suspect lists relevant for their environmental monitoring questions."
actual$result$Record$Reference[[239]]$URL vs expected$result$Record$Reference[[239]]$URL
- "https://ccsbase.net/"
+ "https://www.norman-network.com/nds/SLE/"
`actual$result$Record$Reference[[239]]$LicenseNote` is absent
`expected$result$Record$Reference[[239]]$LicenseNote` is a character vector ('Data: CC-BY 4.0; Code (hosted by ECI, LCSB): Artistic-2.0')
`actual$result$Record$Reference[[239]]$LicenseURL` is absent
`expected$result$Record$Reference[[239]]$LicenseURL` is a character vector ('https://creativecommons.org/licenses/by/4.0/')
`actual$result$Record$Reference[[240]]` is length 7
`expected$result$Record$Reference[[240]]` is length 6
names(actual$result$Record$Reference[[240]])[4:7] vs names(expected$result$Record$Reference[[240]])[4:6]
"Name"
"Description"
"URL"
- "LicenseURL"
`actual$result$Record$Reference[[240]]$SourceName`: "EPA DSSTox"
`expected$result$Record$Reference[[240]]$SourceName`: "CCSbase"
`actual$result$Record$Reference[[240]]$SourceID`: "dsstoxlist_tree"
`expected$result$Record$Reference[[240]]$SourceID`: "ccsbase_tree"
actual$result$Record$Reference[[240]]$Name vs expected$result$Record$Reference[[240]]$Name
- "CompTox Chemicals Dashboard Chemical Lists"
+ "CCSbase Classification"
actual$result$Record$Reference[[240]]$Description vs expected$result$Record$Reference[[240]]$Description
- "This classification lists the chemical categories from the EPA CompTox Chemicals Dashboard."
+ "CCSbase is an integrated platform consisting of a comprehensive database of Collision Cross Section (CCS) measurements taken from a variety of sources and a high-quality and high-throughput CCS prediction model trained with this database using machine learning."
actual$result$Record$Reference[[240]]$URL vs expected$result$Record$Reference[[240]]$URL
- "https://comptox.epa.gov/dashboard/chemical-lists/"
+ "https://ccsbase.net/"
`actual$result$Record$Reference[[240]]$LicenseURL` is a character vector ('https://www.epa.gov/privacy/privacy-act-laws-policies-and-resources')
`expected$result$Record$Reference[[240]]$LicenseURL` is absent
`actual$result$Record$Reference[[241]]` is length 8
`expected$result$Record$Reference[[241]]` is length 7
names(actual$result$Record$Reference[[241]])[4:8] vs names(expected$result$Record$Reference[[241]])[4:7]
"Name"
"Description"
"URL"
- "LicenseNote"
"LicenseURL"
`actual$result$Record$Reference[[241]]$ReferenceNumber`: 245.0
`expected$result$Record$Reference[[241]]$ReferenceNumber`: 243.0
`actual$result$Record$Reference[[241]]$SourceName`: "NCI Thesaurus (NCIt)"
`expected$result$Record$Reference[[241]]$SourceName`: "EPA DSSTox"
`actual$result$Record$Reference[[241]]$SourceID`: "NCIt"
`expected$result$Record$Reference[[241]]$SourceID`: "dsstoxlist_tree"
actual$result$Record$Reference[[241]]$Name vs expected$result$Record$Reference[[241]]$Name
- "NCI Thesaurus"
+ "CompTox Chemicals Dashboard Chemical Lists"
actual$result$Record$Reference[[241]]$Description vs expected$result$Record$Reference[[241]]$Description
- "The NCI Thesaurus (NCIt) provides reference terminology for many NCI and other systems. It covers vocabulary for clinical care, translational and basic research, and public information and administrative activities."
+ "This classification lists the chemical categories from the EPA CompTox Chemicals Dashboard."
actual$result$Record$Reference[[241]]$URL vs expected$result$Record$Reference[[241]]$URL
- "https://ncit.nci.nih.gov"
+ "https://comptox.epa.gov/dashboard/chemical-lists/"
`actual$result$Record$Reference[[241]]$LicenseNote` is a character vector ('Unless otherwise indicated, all text within NCI products is free of copyright and may be reused without our permission. Credit the National Cancer Institute as the source.')
`expected$result$Record$Reference[[241]]$LicenseNote` is absent
actual$result$Record$Reference[[241]]$LicenseURL vs expected$result$Record$Reference[[241]]$LicenseURL
- "https://www.cancer.gov/policies/copyright-reuse"
+ "https://www.epa.gov/privacy/privacy-act-laws-policies-and-resources"
actual$result$Record$Reference[[242]]$SourceName vs expected$result$Record$Reference[[242]]$SourceName
- "LOTUS - the natural products occurrence database"
+ "NCI Thesaurus (NCIt)"
`actual$result$Record$Reference[[242]]$SourceID`: "biochem"
`expected$result$Record$Reference[[242]]$SourceID`: "NCIt"
`actual$result$Record$Reference[[242]]$Name`: "LOTUS Tree"
`expected$result$Record$Reference[[242]]$Name`: "NCI Thesaurus"
actual$result$Record$Reference[[242]]$Description vs expected$result$Record$Reference[[242]]$Description
- "Biological and chemical tree provided by the LOTUS (naturaL products occurrence database)"
+ "The NCI Thesaurus (NCIt) provides reference terminology for many NCI and other systems. It covers vocabulary for clinical care, translational and basic research, and public information and administrative activities."
actual$result$Record$Reference[[242]]$URL vs expected$result$Record$Reference[[242]]$URL
- "https://lotus.naturalproducts.net/"
+ "https://ncit.nci.nih.gov"
actual$result$Record$Reference[[242]]$LicenseNote vs expected$result$Record$Reference[[242]]$LicenseNote
- "The code for LOTUS is released under the GNU General Public License v3.0."
+ "Unless otherwise indicated, all text within NCI products is free of copyright and may be reused without our permission. Credit the National Cancer Institute as the source."
actual$result$Record$Reference[[242]]$LicenseURL vs expected$result$Record$Reference[[242]]$LicenseURL
- "https://lotus.nprod.net/"
+ "https://www.cancer.gov/policies/copyright-reuse"
actual$result$Record$Reference[[243]]$SourceName vs expected$result$Record$Reference[[243]]$SourceName
- "National Drug Code (NDC) Directory"
+ "LOTUS - the natural products occurrence database"
`actual$result$Record$Reference[[243]]$SourceID`: "fdandc_tree"
`expected$result$Record$Reference[[243]]$SourceID`: "biochem"
actual$result$Record$Reference[[243]]$Name vs expected$result$Record$Reference[[243]]$Name
- "FDA Drug Type and Pharmacologic Classification"
+ "LOTUS Tree"
actual$result$Record$Reference[[243]]$Description vs expected$result$Record$Reference[[243]]$Description
- "The FDA Drug Type and Pharmacologic Classification is created based on the FDA drug types and pharm classes data from the National Drug Code (NDC) Directory."
+ "Biological and chemical tree provided by the LOTUS (naturaL products occurrence database)"
actual$result$Record$Reference[[243]]$URL vs expected$result$Record$Reference[[243]]$URL
- "https://www.fda.gov/drugs/drug-approvals-and-databases/national-drug-code-directory"
+ "https://lotus.naturalproducts.net/"
actual$result$Record$Reference[[243]]$LicenseNote vs expected$result$Record$Reference[[243]]$LicenseNote
- "Unless otherwise noted, the contents of the FDA website (www.fda.gov), both text and graphics, are not copyrighted. They are in the public domain and may be republished, reprinted and otherwise used freely by anyone without the need to obtain permission from FDA. Credit to the U.S. Food and Drug Administration as the source is appreciated but not required."
+ "The code for LOTUS is released under the GNU General Public License v3.0."
actual$result$Record$Reference[[243]]$LicenseURL vs expected$result$Record$Reference[[243]]$LicenseURL
- "https://www.fda.gov/about-fda/about-website/website-policies#linking"
+ "https://lotus.nprod.net/"
actual$result$Record$Reference[[244]]$SourceName vs expected$result$Record$Reference[[244]]$SourceName
- "KEGG"
+ "National Drug Code (NDC) Directory"
`actual$result$Record$Reference[[244]]$SourceID`: "br08332"
`expected$result$Record$Reference[[244]]$SourceID`: "fdandc_tree"
actual$result$Record$Reference[[244]]$Name vs expected$result$Record$Reference[[244]]$Name
- "Drug Classes"
+ "FDA Drug Type and Pharmacologic Classification"
actual$result$Record$Reference[[244]]$Description vs expected$result$Record$Reference[[244]]$Description
- "KEGG is an encyclopedia of genes and genomes. Assigning functional meanings to genes and genomes both at the molecular and higher levels is the primary objective of the KEGG database project."
+ "The FDA Drug Type and Pharmacologic Classification is created based on the FDA drug types and pharm classes data from the National Drug Code (NDC) Directory."
actual$result$Record$Reference[[244]]$URL vs expected$result$Record$Reference[[244]]$URL
- "http://www.genome.jp/kegg-bin/get_htext?br08332.keg"
+ "https://www.fda.gov/drugs/drug-approvals-and-databases/national-drug-code-directory"
actual$result$Record$Reference[[244]]$LicenseNote vs expected$result$Record$Reference[[244]]$LicenseNote
- "Academic users may freely use the KEGG website. Non-academic use of KEGG generally requires a commercial license"
+ "Unless otherwise noted, the contents of the FDA website (www.fda.gov), both text and graphics, are not copyrighted. They are in the public domain and may be republished, reprinted and otherwise used freely by anyone without the need to obtain permission from FDA. Credit to the U.S. Food and Drug Administration as the source is appreciated but not required."
actual$result$Record$Reference[[244]]$LicenseURL vs expected$result$Record$Reference[[244]]$LicenseURL
- "https://www.kegg.jp/kegg/legal.html"
+ "https://www.fda.gov/about-fda/about-website/website-policies#linking"
`actual$result$Record$Reference[[245]]` is length 7
`expected$result$Record$Reference[[245]]` is length 8
names(actual$result$Record$Reference[[245]])[4:7] vs names(expected$result$Record$Reference[[245]])[4:8]
"Name"
"Description"
"URL"
- "LicenseURL"
+ "LicenseNote"
+ "LicenseURL"
`actual$result$Record$Reference[[245]]$ReferenceNumber`: 250.0
`expected$result$Record$Reference[[245]]$ReferenceNumber`: 249.0
actual$result$Record$Reference[[245]]$SourceName vs expected$result$Record$Reference[[245]]$SourceName
- "EPA Substance Registry Services"
+ "KEGG"
`actual$result$Record$Reference[[245]]$SourceID`: "epasrs_tree"
`expected$result$Record$Reference[[245]]$SourceID`: "br08332"
`actual$result$Record$Reference[[245]]$Name`: "EPA SRS List Classification"
`expected$result$Record$Reference[[245]]$Name`: "Drug Classes"
actual$result$Record$Reference[[245]]$Description vs expected$result$Record$Reference[[245]]$Description
- "Substance Registry Services (SRS) is the Environmental Protection Agency's (EPA) central system for information about substances that are tracked or regulated by EPA or other sources."
+ "KEGG is an encyclopedia of genes and genomes. Assigning functional meanings to genes and genomes both at the molecular and higher levels is the primary objective of the KEGG database project."
actual$result$Record$Reference[[245]]$URL vs expected$result$Record$Reference[[245]]$URL
- "https://maldi.nist.gov"
+ "http://www.genome.jp/kegg-bin/get_htext?br08332.keg"
actual$result$Record$Reference[[245]]$LicenseURL vs expected$result$Record$Reference[[245]]$LicenseURL
- "https://www.epa.gov/privacy/privacy-act-laws-policies-and-resources"
+ "https://www.kegg.jp/kegg/legal.html"
`actual$result$Record$Reference[[245]]$LicenseNote` is absent
`expected$result$Record$Reference[[245]]$LicenseNote` is a character vector ('Academic users may freely use the KEGG website. Non-academic use of KEGG generally requires a commercial license')
actual$result$Record$Reference[[246]]$SourceName vs expected$result$Record$Reference[[246]]$SourceName
- "EPA Chemicals under the TSCA"
+ "EPA Substance Registry Services"
`actual$result$Record$Reference[[246]]$SourceID`: "epa_tsca_tree"
`expected$result$Record$Reference[[246]]$SourceID`: "epasrs_tree"
`actual$result$Record$Reference[[246]]$Name`: "EPA TSCA Classification"
`expected$result$Record$Reference[[246]]$Name`: "EPA SRS List Classification"
actual$result$Record$Reference[[246]]$Description vs expected$result$Record$Reference[[246]]$Description
- "EPA Chemicals under the Toxic Substances Control Act (TSCA) collection contains information on chemicals and their regulation under TSCA (40 eCFR I-R). The chemical classification tree is created based on the TSCA substance regulatory flag, UVCB, and commercial activity status."
+ "Substance Registry Services (SRS) is the Environmental Protection Agency's (EPA) central system for information about substances that are tracked or regulated by EPA or other sources."
actual$result$Record$Reference[[246]]$URL vs expected$result$Record$Reference[[246]]$URL
- "https://www.epa.gov/tsca-inventory"
+ "https://maldi.nist.gov"
`actual$result$Record$Reference[[247]]` is length 8
`expected$result$Record$Reference[[247]]` is length 7
names(actual$result$Record$Reference[[247]])[4:8] vs names(expected$result$Record$Reference[[247]])[4:7]
"Name"
"Description"
"URL"
- "LicenseNote"
"LicenseURL"
actual$result$Record$Reference[[247]]$SourceName vs expected$result$Record$Reference[[247]]$SourceName
- "MolGenie"
+ "EPA Chemicals under the TSCA"
`actual$result$Record$Reference[[247]]$SourceID`: "mol_classes"
`expected$result$Record$Reference[[247]]$SourceID`: "epa_tsca_tree"
actual$result$Record$Reference[[247]]$Name vs expected$result$Record$Reference[[247]]$Name
- "MolGenie Organic Chemistry Ontology"
+ "EPA TSCA Classification"
actual$result$Record$Reference[[247]]$Description vs expected$result$Record$Reference[[247]]$Description
- "An organic chemistry ontology developed by MolGenie and OntoChem to assign chemical entities to structural classes, split into three main subsections: calculated properties, compounds and substructural concepts. The ontology contains chemistry structural classes with a focus on elements and small organic compounds, but not inorganic, polymer, biopolymer, metal complexes, metal organic frameworks (MOFs) and other chemistry entities. The ontology has been mapped to several collections of chemicals, including (a) Chemicals of Biological Interest (ChEBI), (b) the ChEMBL database of bioactive molecules, (c) the LOTUS natural product collection, (d) per- and polyfluoroalkyl substances (PFAS) extracted from Barnabas et al (2022) DOI: 10.1039/D2DD00019A (e) PubChemLite and (f) the ZeroPM Global Chemical Inventory."
+ "EPA Chemicals under the Toxic Substances Control Act (TSCA) collection contains information on chemicals and their regulation under TSCA (40 eCFR I-R). The chemical classification tree is created based on the TSCA substance regulatory flag, UVCB, and commercial activity status."
actual$result$Record$Reference[[247]]$URL vs expected$result$Record$Reference[[247]]$URL
- "https://github.com/MolGenie/ontology/"
+ "https://www.epa.gov/tsca-inventory"
`actual$result$Record$Reference[[247]]$LicenseNote` is a character vector ('CC-BY 4.0')
`expected$result$Record$Reference[[247]]$LicenseNote` is absent
actual$result$Record$Reference[[247]]$LicenseURL vs expected$result$Record$Reference[[247]]$LicenseURL
- "https://creativecommons.org/licenses/by/4.0/"
+ "https://www.epa.gov/privacy/privacy-act-laws-policies-and-resources"
`actual$result$Record$Reference[[248]]` is length 5
`expected$result$Record$Reference[[248]]` is length 8
names(actual$result$Record$Reference[[248]])[3:5] vs names(expected$result$Record$Reference[[248]])[3:8]
"SourceName"
"SourceID"
"Name"
"Description"
+ "URL"
+ "LicenseNote"
+ "LicenseURL"
`actual$result$Record$Reference[[248]]$SourceName`: "PubChem"
`expected$result$Record$Reference[[248]]$SourceName`: "MolGenie"
`actual$result$Record$Reference[[248]]$SourceID`: "regtree"
`expected$result$Record$Reference[[248]]$SourceID`: "mol_classes"
actual$result$Record$Reference[[248]]$Name vs expected$result$Record$Reference[[248]]$Name
- "Chemicals in PubChem from Regulatory Sources"
+ "MolGenie Organic Chemistry Ontology"
actual$result$Record$Reference[[248]]$Description vs expected$result$Record$Reference[[248]]$Description
- "PubChem chemicals with regulatory data sources provides list of chemicals with annotation specific to regulatory data sources."
+ "An organic chemistry ontology developed by MolGenie and OntoChem to assign chemical entities to structural classes, split into three main subsections: calculated properties, compounds and substructural concepts. The ontology contains chemistry structural classes with a focus on elements and small organic compounds, but not inorganic, polymer, biopolymer, metal complexes, metal organic frameworks (MOFs) and other chemistry entities. The ontology has been mapped to several collections of chemicals, including (a) Chemicals of Biological Interest (ChEBI), (b) the ChEMBL database of bioactive molecules, (c) the LOTUS natural product collection, (d) per- and polyfluoroalkyl substances (PFAS) extracted from Barnabas et al (2022) DOI: 10.1039/D2DD00019A (e) PubChemLite and (f) the ZeroPM Global Chemical Inventory."
`actual$result$Record$Reference[[248]]$URL` is absent
`expected$result$Record$Reference[[248]]$URL` is a character vector ('https://github.com/MolGenie/ontology/')
`actual$result$Record$Reference[[248]]$LicenseNote` is absent
`expected$result$Record$Reference[[248]]$LicenseNote` is a character vector ('CC-BY 4.0')
`actual$result$Record$Reference[[248]]$LicenseURL` is absent
`expected$result$Record$Reference[[248]]$LicenseURL` is a character vector ('https://creativecommons.org/licenses/by/4.0/')
`actual$result$Record$Reference[[249]]` is length 8
`expected$result$Record$Reference[[249]]` is length 5
names(actual$result$Record$Reference[[249]])[3:8] vs names(expected$result$Record$Reference[[249]])[3:5]
"SourceID"
"Name"
"Description"
- "URL"
- "LicenseNote"
- "LicenseURL"
actual$result$Record$Reference[[249]]$SourceName vs expected$result$Record$Reference[[249]]$SourceName
- "WHO ATCvet - Classification of Veterinary Medicines"
+ "PubChem"
`actual$result$Record$Reference[[249]]$SourceID`: "ATCvetTree"
`expected$result$Record$Reference[[249]]$SourceID`: "regtree"
actual$result$Record$Reference[[249]]$Name vs expected$result$Record$Reference[[249]]$Name
- "ATCvet Classification"
+ "Chemicals in PubChem from Regulatory Sources"
actual$result$Record$Reference[[249]]$Description vs expected$result$Record$Reference[[249]]$Description
- "The ATCvet system for the classification of veterinary medicines is based on the same overall principles as the ATC system for substances used in human medicine. In most cases an ATC code exists which can be used to classify a product in the ATCvet system. The ATCvet code is then created by placing the letter Q in front of the ATC code."
+ "PubChem chemicals with regulatory data sources provides list of chemicals with annotation specific to regulatory data sources."
`actual$result$Record$Reference[[249]]$URL` is a character vector ('https://atcddd.fhi.no/atcvet/atcvet/')
`expected$result$Record$Reference[[249]]$URL` is absent
`actual$result$Record$Reference[[249]]$LicenseNote` is a character vector ('Use of all or parts of the material requires reference to the WHO Collaborating Centre for Drug Statistics Methodology. Copying and distribution for commercial purposes is not allowed. Changing or manipulating the material is not allowed.')
`expected$result$Record$Reference[[249]]$LicenseNote` is absent
`actual$result$Record$Reference[[249]]$LicenseURL` is a character vector ('https://atcddd.fhi.no/copyright_disclaimer/')
`expected$result$Record$Reference[[249]]$LicenseURL` is absent
`actual$result$Record$Reference[[250]]` is length 7
`expected$result$Record$Reference[[250]]` is length 8
names(actual$result$Record$Reference[[250]])[1:6] vs names(expected$result$Record$Reference[[250]])[1:7]
"ReferenceNumber"
"SourceName"
"SourceID"
+ "Name"
"Description"
"URL"
"LicenseNote"
actual$result$Record$Reference[[250]]$SourceName vs expected$result$Record$Reference[[250]]$SourceName
- "Medical Subject Headings (MeSH)"
+ "WHO ATCvet - Classification of Veterinary Medicines"
`actual$result$Record$Reference[[250]]$SourceID`: "PubMed from MeSH"
`expected$result$Record$Reference[[250]]$SourceID`: "ATCvetTree"
actual$result$Record$Reference[[250]]$Description vs expected$result$Record$Reference[[250]]$Description
- "MeSH (Medical Subject Headings) is the U.S. National Library of Medicine's controlled vocabulary thesaurus used for indexing articles for PubMed."
+ "The ATCvet system for the classification of veterinary medicines is based on the same overall principles as the ATC system for substances used in human medicine. In most cases an ATC code exists which can be used to classify a product in the ATCvet system. The ATCvet code is then created by placing the letter Q in front of the ATC code."
actual$result$Record$Reference[[250]]$URL vs expected$result$Record$Reference[[250]]$URL
- "https://www.nlm.nih.gov/mesh/meshhome.html"
+ "https://atcddd.fhi.no/atcvet/atcvet/"
actual$result$Record$Reference[[250]]$LicenseNote vs expected$result$Record$Reference[[250]]$LicenseNote
- "Works produced by the U.S. government are not subject to copyright protection in the United States. Any such works found on National Library of Medicine (NLM) Web sites may be freely used or reproduced without permission in the U.S."
+ "Use of all or parts of the material requires reference to the WHO Collaborating Centre for Drug Statistics Methodology. Copying and distribution for commercial purposes is not allowed. Changing or manipulating the material is not allowed."
actual$result$Record$Reference[[250]]$LicenseURL vs expected$result$Record$Reference[[250]]$LicenseURL
- "https://www.nlm.nih.gov/copyright.html"
+ "https://atcddd.fhi.no/copyright_disclaimer/"
`actual$result$Record$Reference[[250]]$Name` is absent
`expected$result$Record$Reference[[250]]$Name` is a character vector ('ATCvet Classification')
`actual$result$Record$Reference[[251]]` is length 8
`expected$result$Record$Reference[[251]]` is length 7
names(actual$result$Record$Reference[[251]])[1:7] vs names(expected$result$Record$Reference[[251]])[1:6]
"ReferenceNumber"
"SourceName"
"SourceID"
- "Name"
"Description"
"URL"
"LicenseNote"
`actual$result$Record$Reference[[251]]$SourceID`: "M0001335"
`expected$result$Record$Reference[[251]]$SourceID`: "PubMed from MeSH"
`actual$result$Record$Reference[[251]]$Name` is a character vector ('Anti-Inflammatory Agents, Non-Steroidal')
`expected$result$Record$Reference[[251]]$Name` is absent
actual$result$Record$Reference[[251]]$URL vs expected$result$Record$Reference[[251]]$URL
- "https://id.nlm.nih.gov/mesh/M0001335.html"
+ "https://www.nlm.nih.gov/mesh/meshhome.html"
`actual$result$Record$Reference[[252]]$SourceID`: "M0008434"
`expected$result$Record$Reference[[252]]$SourceID`: "M0001335"
actual$result$Record$Reference[[252]]$Name vs expected$result$Record$Reference[[252]]$Name
- "Fibrinolytic Agents"
+ "Anti-Inflammatory Agents, Non-Steroidal"
actual$result$Record$Reference[[252]]$URL vs expected$result$Record$Reference[[252]]$URL
- "https://id.nlm.nih.gov/mesh/M0008434.html"
+ "https://id.nlm.nih.gov/mesh/M0001335.html"
`actual$result$Record$Reference[[253]]$SourceID`: "M0017012"
`expected$result$Record$Reference[[253]]$SourceID`: "M0008434"
actual$result$Record$Reference[[253]]$Name vs expected$result$Record$Reference[[253]]$Name
- "Platelet Aggregation Inhibitors"
+ "Fibrinolytic Agents"
actual$result$Record$Reference[[253]]$URL vs expected$result$Record$Reference[[253]]$URL
- "https://id.nlm.nih.gov/mesh/M0017012.html"
+ "https://id.nlm.nih.gov/mesh/M0008434.html"
`actual$result$Record$Reference[[254]]$SourceID`: "M0025664"
`expected$result$Record$Reference[[254]]$SourceID`: "M0017012"
actual$result$Record$Reference[[254]]$Name vs expected$result$Record$Reference[[254]]$Name
- "Cyclooxygenase Inhibitors"
+ "Platelet Aggregation Inhibitors"
actual$result$Record$Reference[[254]]$URL vs expected$result$Record$Reference[[254]]$URL
- "https://id.nlm.nih.gov/mesh/M0025664.html"
+ "https://id.nlm.nih.gov/mesh/M0017012.html"
`actual$result$Record$Reference[[255]]$SourceID`: "M0028037"
`expected$result$Record$Reference[[255]]$SourceID`: "M0025664"
`actual$result$Record$Reference[[255]]$Name`: "Antipyretics"
`expected$result$Record$Reference[[255]]$Name`: "Cyclooxygenase Inhibitors"
actual$result$Record$Reference[[255]]$URL vs expected$result$Record$Reference[[255]]$URL
- "https://id.nlm.nih.gov/mesh/M0028037.html"
+ "https://id.nlm.nih.gov/mesh/M0025664.html"
`actual$result$Record$Reference[[256]]` is length 5
`expected$result$Record$Reference[[256]]` is length 8
names(actual$result$Record$Reference[[256]]) vs names(expected$result$Record$Reference[[256]])
"ReferenceNumber"
"SourceName"
- "Name"
- "Description"
- "URL"
+ "SourceID"
+ "Name"
+ "Description"
+ "URL"
+ "LicenseNote"
+ "LicenseURL"
actual$result$Record$Reference[[256]]$SourceName vs expected$result$Record$Reference[[256]]$SourceName
- "PATENTSCOPE (WIPO)"
+ "Medical Subject Headings (MeSH)"
`actual$result$Record$Reference[[256]]$Name`: "SID 403030282"
`expected$result$Record$Reference[[256]]$Name`: "Antipyretics"
actual$result$Record$Reference[[256]]$Description vs expected$result$Record$Reference[[256]]$Description
- "The PATENTSCOPE database from WIPO includes patent and chemical structure search (with a free account) that gives access to millions of patent documents. The World Intellectual Property Organisation (WIPO) is a specialized United Nations (UN) agency headquartered in Geneva (Switzerland). Our mission is to lead the development of a balanced and effective international Intellectual Property (IP) system that enables innovation and creativity for the benefit of all. We help governments, businesses and society realize the benefits of Intellectual Property and are notably a world reference source for IP information."
+ "MeSH (Medical Subject Headings) is the U.S. National Library of Medicine's controlled vocabulary thesaurus used for indexing articles for PubMed."
actual$result$Record$Reference[[256]]$URL vs expected$result$Record$Reference[[256]]$URL
- "https://pubchem.ncbi.nlm.nih.gov/substance/403030282"
+ "https://id.nlm.nih.gov/mesh/M0028037.html"
`actual$result$Record$Reference[[256]]$SourceID` is absent
`expected$result$Record$Reference[[256]]$SourceID` is a character vector ('M0028037')
`actual$result$Record$Reference[[256]]$LicenseNote` is absent
`expected$result$Record$Reference[[256]]$LicenseNote` is a character vector ('Works produced by the U.S. government are not subject to copyright protection in the United States. Any such works found on National Library of Medicine (NLM) Web sites may be freely used or reproduced without permission in the U.S.')
`actual$result$Record$Reference[[256]]$LicenseURL` is absent
`expected$result$Record$Reference[[256]]$LicenseURL` is a character vector ('https://www.nlm.nih.gov/copyright.html')
names(actual$result$Record$Reference[[257]]) vs names(expected$result$Record$Reference[[257]])
"ReferenceNumber"
"SourceName"
- "SourceID"
+ "Name"
"Description"
"URL"
`actual$result$Record$Reference[[257]]$SourceName`: "NCBI"
`expected$result$Record$Reference[[257]]$SourceName`: "PATENTSCOPE (WIPO)"
`actual$result$Record$Reference[[257]]$SourceID` is a character vector ('LinkOut')
`expected$result$Record$Reference[[257]]$SourceID` is absent
actual$result$Record$Reference[[257]]$Description vs expected$result$Record$Reference[[257]]$Description
- "LinkOut is a service that allows one to link directly from NCBI databases to a wide range of information and services beyond NCBI systems."
+ "The PATENTSCOPE database from WIPO includes patent and chemical structure search (with a free account) that gives access to millions of patent documents. The World Intellectual Property Organisation (WIPO) is a specialized United Nations (UN) agency headquartered in Geneva (Switzerland). Our mission is to lead the development of a balanced and effective international Intellectual Property (IP) system that enables innovation and creativity for the benefit of all. We help governments, businesses and society realize the benefits of Intellectual Property and are notably a world reference source for IP information."
actual$result$Record$Reference[[257]]$URL vs expected$result$Record$Reference[[257]]$URL
- "https://www.ncbi.nlm.nih.gov/projects/linkout"
+ "https://pubchem.ncbi.nlm.nih.gov/substance/403030282"
`actual$result$Record$Reference[[257]]$Name` is absent
`expected$result$Record$Reference[[257]]$Name` is a character vector ('SID 403030282')
`actual$result$Record$Reference[[258]]` is absent
`expected$result$Record$Reference[[258]]` is a list
[ FAIL 1 | WARN 0 | SKIP 0 | PASS 160 ]
Error:
! Test failures.
Execution halted
Flavor: r-oldrel-windows-x86_64