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
Performing recursive median filtering...
Performing HMM segmentation...
Error in DataFrame(..., check.names = FALSE) :
different row counts implied by arguments
I cannot find why. Can you please give some advice?
Thank you very much.
The text was updated successfully, but these errors were encountered:
I will just leave a solution in case anyone else needs it:
The problem shows up because your annotation does not have same rows as your counts. tpm_transformed <- tpm_transformed %>% rownames_to_column("Geneid") %>% semi_join(rannotation, by = c("Geneid" = "Gene")) %>% column_to_rownames("Geneid")
You can use dplyr or some other function to make sure they have same rows.
Hi, friend
when I use this good software to analyse bulk RNAseq (PE reads), when I run the following step:
final.objects <- runCaSpER(object, removeCentromere=T, cytoband=cytoband, method="iterative")
it happened the following error:
Performing recursive median filtering...
Performing HMM segmentation...
Error in DataFrame(..., check.names = FALSE) :
different row counts implied by arguments
I cannot find why. Can you please give some advice?
Thank you very much.
The text was updated successfully, but these errors were encountered: