glMDPlot(s61.vs.SCR.sv, counts = logCPM, groups = group, status = decideTests(s61.vs.SCR.sv))
the order of the groups in the top right plot of individual sample values seems to default to unique(group) . Could this be changed to levels(group) so that I could adjust the order by re-leveling instead of having to re-order both logCPM and group?
I have a factor group for my samples where the samples are not in the same order as the levels:
when I call glMDPlot:
the order of the groups in the top right plot of individual sample values seems to default to
unique(group)
. Could this be changed tolevels(group)
so that I could adjust the order by re-leveling instead of having to re-order both logCPM and group?Thanks!