Prerequisites
Describe you issue
In performing GSEA, it seems the default is to have the genes sorted in decreasing order:
DOSE:::is.sorted
function (x, decreasing = TRUE)
{
all(sort(x, decreasing = decreasing) == x)
}
However, per the original paper, it seems the order should not matter i.e. whether ascending or descending. I would like to know if it is possible to support a non-decreasing sorted gene list or perhaps what the rationale is for a decreasing only gene sort.
This could be related to YuLab-SMU/clusterProfiler#214, YuLab-SMU/clusterProfiler#91, and YuLab-SMU/clusterProfiler#48.
Thank you,
NelsonGon
Ask in right place
Prerequisites
Describe you issue
In performing GSEA, it seems the default is to have the genes sorted in
decreasingorder:However, per the original paper, it seems the order should not matter i.e. whether ascending or descending. I would like to know if it is possible to support a non-decreasing sorted gene list or perhaps what the rationale is for a decreasing only gene sort.
This could be related to YuLab-SMU/clusterProfiler#214, YuLab-SMU/clusterProfiler#91, and YuLab-SMU/clusterProfiler#48.
Thank you,
NelsonGon
Ask in right place
DOSE