powered by
search in customized database based on accurate m/z and RT
searchDB(DF, DB, ppm = 5, RT = 0.2, useRT = FALSE)
input file, should contain at least a column named mz
database, should contain at least a column named mz
mass tolerance, default 5ppm
retention time tolerance, default 0.2min
should RT be considered during database search?
Yonghui Dong
DF <- cbind.data.frame(mz = c(100.001, 100.1), RT = c(10, 11)) DB <- cbind.data.frame(mz = c(100.001, 100.1), RT = c(10, 12.1)) searchDB(DF, DB, ppm = 5, RT = 0.2, useRT = TRUE)
Run the code above in your browser using DataLab