Dear list,
Combining SummarizedExperiment object, containing a DNAStringSet in the
rowData seems not to work properly. If I cbind two SummarizedExperiment
objects, which I know are identical, an error is reported:
Error in FUN(X[[i]], ...) (from #2) :
column(s) 'sourceSeq' in ?mcols? are duplicated and the data do not match
I think I traced the problem existing in `SummarizedExperiment:::.compare`
in that `identical` is used to compare DNAStringSets which is not behaving
as expected. Whereas it should return all identical it returns it is not!
Here is a counter example (which was easier to construct) showing that
`identical` returns FALSE where it should return TRUE.
I don't completely understand understand why `identical` is not working
properly is it comparing the environment address in the above example they
are the same although the sequences are not? In my case the two
SummarizedExperiments contained the same DNAStringSets but had a different
environment address?
Regards,
Maarten