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
└─rlang::abort(message, class = c(class, "vctrs_error"), ..., call = vctrs_error_call(call))
The issue is caused by the following tidyr updates: replace_na() no longer allows the type of data to change when the replacement is applied. replace will now always be cast to the type of data before the replacement is made. For example, this means that using a replacement value of 1.5 on an integer column is no longer allowed. Similarly, replacing missing values in a list-column must now be done with list("foo") rather than just "foo".
replace_na() no longer replaces empty atomic elements in list-columns (like integer(0)). The only value that is replaced in a list-column is NULL (#1168).
This might be fixed by casting start_residue and end_residue to double in the replace_na() call.
The text was updated successfully, but these errors were encountered:
In the line referenced below, an error results when using tidyr 1.2.0+.
annotateMaf/R/hotspot-annotate-maf.R
Line 96 in cb94e4b
The error generates is as follows:
Error in
vec_assign()
:! Can't convert
replace$start_residue
to match type ofdata$start_residue
.Backtrace:
▆
The issue is caused by the following tidyr updates:
replace_na() no longer allows the type of data to change when the replacement is applied. replace will now always be cast to the type of data before the replacement is made. For example, this means that using a replacement value of 1.5 on an integer column is no longer allowed. Similarly, replacing missing values in a list-column must now be done with list("foo") rather than just "foo".
replace_na() no longer replaces empty atomic elements in list-columns (like integer(0)). The only value that is replaced in a list-column is NULL (#1168).
This might be fixed by casting start_residue and end_residue to double in the replace_na() call.
The text was updated successfully, but these errors were encountered: