Code Monkey home page Code Monkey logo

Comments (2)

jorainer avatar jorainer commented on August 16, 2024

Just some timings for fetching the data with and without filter.

The goal is to find MS2 spectra with a peak at an m/z of about 195.08. Below we use a CompDb with the full HMDB version 4.1.

library(CompoundDb)
cdb <- CompDb("CompDb.Hsapiens.HMDB.4.1.sqlite")

mz_in <- 195.08

## Get all spectra
system.time(all <- spectra(cdb))
   user  system elapsed 
 49.169   5.952  55.404 

## Get all spectra with peaks potentially in the same region
system.time(subs <- spectra(cdb, filter = ~ msms_mz_range_min <= mz_in & msms_mz_range_max >= mz_in))
   user  system elapsed 
 15.723   2.852  18.716 

length(all)
[1] 458901
length(subs)
[1] 187798

Still quite some spectra were retrieved, but the performance is better with the filter.

from compounddb.

jorainer avatar jorainer commented on August 16, 2024

Now proceeding with finding the spectra that have an actual m/z matching 195.08 (using the hasMz method from #28).

system.time(all_has_pk <- hasMz(all, mz = mz_in, ppm = 20))
   user  system elapsed 
 10.930   0.203  11.212 

system.time(subs_has_pk <- hasMz(subs, mz = mz_in, ppm = 20))
   user  system elapsed 
  4.058   0.044   4.128 

sum(all_has_pk)
[1] 591

sum(sus_has_pk)
[1] 590

The same spectra were detected, with the exception of one, that was missed because the filter with msms_mz_range_min and msms_mz_range_max did not consider a ppm.

from compounddb.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.