The lack of row names creates the error Error: Duplicate identifiers for rows (1, 2, 3, 4, 5), (6, 7, 8, 9, 10), (16, 17, 18, 19, 20), (11, 12, 13, 14, 15). I think either the constructor should ban the use of matrices without row names or wideFormat should handle the situation better. Also, are row names with spaces allowed? wideFormat converts them to dots and setting check.names = FALSE has no effect on the resulting DataFrame. The documentation doesn't explain what ... may be used for although
... Additional arguments. See details.
suggests there is more information provided in the help page.
It seems that row names on experiments are required, although this is not currently enforced by the
MultiAssayExperiment
constructor.The lack of row names creates the error
Error: Duplicate identifiers for rows (1, 2, 3, 4, 5), (6, 7, 8, 9, 10), (16, 17, 18, 19, 20), (11, 12, 13, 14, 15)
. I think either the constructor should ban the use of matrices without row names orwideFormat
should handle the situation better. Also, are row names with spaces allowed?wideFormat
converts them to dots and settingcheck.names = FALSE
has no effect on the resultingDataFrame
. The documentation doesn't explain what...
may be used for althoughsuggests there is more information provided in the help page.