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 just realised that setting use_nomalized = TRUE in plot_seqeunce_logo() results in the following error after TSSs aggregation into TSRs:
Error in eval(jsub, SDenv, parent.frame()) : object 'normalized_score' not found
I traced it back to line 34 of extract_counts() where the function tries to extract the normalized_score column that is indeed not present. The score column is present but contains floating point numbers instead of integers. I guess it went through some kind of processing, but it does not coincide with the normalized_score calculated on TSSs before
As the error does not occur when only TSSs are present in the experiment object I checked the functions in between and this seems to happen during the call to mark_dominant()
------- EDIT -------
it only happens when setting use_normalized = T in mark_dominant()
Hi,
I just realised that setting
use_nomalized = TRUE
inplot_seqeunce_logo()
results in the following error after TSSs aggregation into TSRs:Error in eval(jsub, SDenv, parent.frame()) : object 'normalized_score' not found
I traced it back to line 34 of
extract_counts()
where the function tries to extract thenormalized_score
column that is indeed not present. Thescore
column is present but contains floating point numbers instead of integers. I guess it went through some kind of processing, but it does not coincide with thenormalized_score
calculated on TSSs beforeAs the error does not occur when only TSSs are present in the experiment object I checked the functions in between and this seems to happen during the call to
mark_dominant()
------- EDIT -------
it only happens when setting
use_normalized = T
inmark_dominant()
Full traceback:
The text was updated successfully, but these errors were encountered: