The MFAssignR package was designed for multi-element molecular formula (MF) assignment of ultrahigh resolution mass spectrometry measurements. A number of tools for internal mass recalibration, MF assignment, signal-to-noise evaluation, and unambiguous formula selections are provided.
GNU General Public License v3.0
0
stars
3
forks
source link
FindRecalSeries: Adjust the function to work with input dataframe containing spaces in colnames #52
The RecalList function returns a dataframe containing spaces in the column names (e.g. Mass Range). When importing the data into R, all spaces get replaced by dots (resulting in Mass.Range).
I think we should do colnames(df) <- gsub(" ", ".", colnames(df)) to ensure we get unified input
The RecalList function returns a dataframe containing spaces in the column names (e.g.
Mass Range
). When importing the data into R, all spaces get replaced by dots (resulting inMass.Range
).I think we should do
colnames(df) <- gsub(" ", ".", colnames(df))
to ensure we get unified input