Open James-E-Clark opened 5 months ago
Odd error, thanks for filing an issue! From the code you sent, it does seem like the colnames and rownames are equal and should be fine. So I'll need a little more context to figure out what is triggering the error. Can you show the code you used to generate the intensity_data
and sample_metadata
dataframes, their initial colnames and rownames, and their dimensions?
I had the same error and got it fixed using the code below before creating the DAList. You can give it a try.
INDEX=sort(intersect(colnames(intensity_data),rownames(sample_metadata))) sample_metadata=sample_metadata[INDEX,] intensity_data=intensity_data[,INDEX]
However, the col and row names are the same:
Names are a mixture of numbers and letters e.g. H8417
Even after making sure the names are the same it does not work: