You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've been going through the starting workflow using my own data. When trying to detect peaks with the egh fit using the code below:
# find and integrate peaks using gaussian peak fitting
pks_gauss <- get_peaks(warp.254, sd.max = 40, fit = "gaussian")
# find and integrate peaks using exponential-gaussian hybrid model
pks_egh <- get_peaks(warp.254, sd.max = 40, fit = "egh")
# find and integrate peaks without modeling peak shape
pks_raw <- get_peaks(warp.254, sd.max = 100, fit = "raw")
This error appears for pks_egh:
Error in [<-.data.frame(*tmp*, , c("rt", "start", "end"), value = list( :
replacement element 1 has 186 rows, need 187
Both the standard gaussian and the raw functions work fine.
Thanks for any help with this!
The text was updated successfully, but these errors were encountered:
Hi,
Thanks for reporting this. I will likely need an example file to help track down the issue? Do you think you could figure identify one of the chromatograms that is triggering the problem and share it with me (either here, or at my email ethanbass@gmail.com).
Thanks!
Ethan
Hi,
I've been going through the starting workflow using my own data. When trying to detect peaks with the egh fit using the code below:
This error appears for pks_egh:
Error in
[<-.data.frame
(*tmp*
, , c("rt", "start", "end"), value = list( :replacement element 1 has 186 rows, need 187
Both the standard gaussian and the raw functions work fine.
Thanks for any help with this!
The text was updated successfully, but these errors were encountered: