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
This project seems to have sra.sample_attributes that are empty and thus gives a dimension mismatch when doing rbind. Solution is to add NA in expand_sra_attributes() for empty lines before doing rbind.
d[which(sapply(d,length)==0)] <- NA
The text was updated successfully, but these errors were encountered:
Describe the bug
DataFrame dimension mismatch error using data from project SRP017465
Provide a minimally reproducible example (reprex)
Possible solution
This project seems to have sra.sample_attributes that are empty and thus gives a dimension mismatch when doing rbind. Solution is to add NA in expand_sra_attributes() for empty lines before doing rbind.
d[which(sapply(d,length)==0)] <- NA
The text was updated successfully, but these errors were encountered: