The volcano plot shows data with an arm-shaped enrichment.
0
0
Entering edit mode
21 days ago
lea.LD • 0

Hi. I analysed my Transcriptomics data as followed: Trimmomatic, Kallisto, R: tximport,

> dge <- DGEList(counts = txi$counts)
> colnames(dge) <- sample_names
> keep <- rowSums(cpm(dge) > 1) >=3
> dge <- dge[keep, , keep.lib.sizes = FALSE]
> dge <- calcNormFactors(dge, method = "upperquartile")
> norm_counts <- cpm(dge,normalized.lib.sizes = TRUE)

In the end, I visualised the data in a volcano plot, which looks like this: Unfortunately, I don't know what happened to the data that it has such a structure, why it forms such an arm-shaped accumulation

Unfortunately, I don't know what happened to the data that it has such a structure, why it forms such an arm-shaped accumulation. If you know of any reasons for the enrichment or possible solutions, I would be grateful.

volcanoplot • 318 views
ADD COMMENT
1
Entering edit mode

Usually odd shapes in these sorts of plots come from insufficient prefiltering. Here, in your keep all you do is to make sure that the genes is not all-zero, it is not group-aware. I would recommend filterByExpr() as suggested in the edgeR user guide.

ADD REPLY

Login before adding your answer.

Traffic: 1819 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6