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
Commit 0b241f1 added the ability to pass in a block parameter when comparing two ttest results, and we need to unit test that.
This came up when comparing sorted positive and negtive XXX cells from a mouse, and comparing their expression profiles back to WT mice.
The individual sorted cells compared to WT were done "normally", however when the results were compared against each other, duplicateCorrelation would be required to obtain the most correct version of the stats we could get.
For example, let's say we ran an experiment similar to the data from this paper, where we had lipid high and low microglia in aged mice vs unsorted microglia from young mice. Each of the aged mice provided two Microglia samples:
This would provide dge stats for aged lipd high microglia vs young microglia, and stats for the aged lipid low microglia vs young microglia.
No if we wanted to get stats for lipid hi vs low microglia in the aged mice, you could run that comparison directly, or use compare() to do the same, like:
Commit 0b241f1 added the ability to pass in a
block
parameter when comparing two ttest results, and we need to unit test that.This came up when comparing sorted positive and negtive XXX cells from a mouse, and comparing their expression profiles back to WT mice.
The individual sorted cells compared to WT were done "normally", however when the results were compared against each other,
duplicateCorrelation
would be required to obtain the most correct version of the stats we could get.For example, let's say we ran an experiment similar to the data from this paper, where we had lipid high and low microglia in aged mice vs unsorted microglia from young mice. Each of the aged mice provided two Microglia samples:
This would provide dge stats for aged lipd high microglia vs young microglia, and stats for the aged lipid low microglia vs young microglia.
No if we wanted to get stats for lipid hi vs low microglia in the aged mice, you could run that comparison directly, or use
compare()
to do the same, like:Those two comparisons should generate the same statistics.
The text was updated successfully, but these errors were encountered: