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
Due to how sq objects are stored as lists of raw vectors, dplyr::group_by throws "Unsupported type raw" while trying to do something like:
library(dplyr)
library(tidysq)
# has to create a tibble first, from read_fasta or find_motifs for examplesq_dna<- sq(c("CGGCATCGT", "CTAGGCTCCG"), "dna_bsc")
find_motifs(sq_dna, "TCN") %>%
group_by(found)
The text was updated successfully, but these errors were encountered:
Due to how
sq
objects are stored as lists of raw vectors,dplyr::group_by
throws "Unsupported type raw" while trying to do something like:The text was updated successfully, but these errors were encountered: