-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Chromatogram #1
Comments
See also here for broader plans. |
Just adding to @lgatto's answer: you can extract chromatographic data with the |
Cool. Thx for the updates. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi everyone,
are there any plans for an OO representation of chromatograms? My idea would be to derive
Chromatogram
objects fromSpectra
using an aggregation function and subsetting.Example: TIC for all MS2 within 5-10 min of RT from
Spectra
instance Sall MS2 -> subset
Spectra
onMSlevel
within 5-10 min of RT -> subset
Spectra
onrtime
aggregation = sum(subset(S))
results in
Chromatogram
with intensity slot (time resolved intensity vector) plus meaningful metadata inherited from S and on how it was constructed (parameters used for construction)What do you think?
The text was updated successfully, but these errors were encountered: