abagen icon indicating copy to clipboard operation
abagen copied to clipboard

Question about normalization method before differential expressed gene (DEG) analysis.

Open YCHuang0610 opened this issue 2 years ago • 0 comments

Dear all, I want to identify differential expressed genes (DEGs) between ROIs (for example, PFC versus the rest of brain) using limma R package, after parcellation through the abagen.get_expression_data function. I am wondering which normalization method in {sample,gene}_norm will be recommend before DEG analysis, since the static test is sensitive to the data distribution.

What's more, when I used the 'srs' normalizaiton method by default, the distribution of different ROI in each donors seemed to be weird:

expr = abagen.get_expression_data(imagemask, data_dir=datadir, donors="9861",
                                  donor_probes='independent', probe_selection='corr_intensity')
sns.boxplot(data=expr.T)

image

And when the norm method was set to None:

expr = abagen.get_expression_data(imagemask, data_dir=datadir, donors="9861", gene_norm=None, sample_norm=None,
                                  donor_probes='independent', probe_selection='corr_intensity')

image

The parcellation mask was shown bellow: image

Thank you for your help, Yc Huang.

YCHuang0610 avatar Sep 16 '22 07:09 YCHuang0610