Cuffdiff output filtering based on significance
1
0
Entering edit mode
7.3 years ago
1769mkc ★ 1.2k

I have cuffdiff output , i have list of genes which im interested in but also i want to filter out genes that passed the significance test so i have column in my dataframe called "significant" which is either "yes" or "no".

I manged to do that i filtered out the significant genes ,now I want to make a comparison plot across samples what is the best way to show differential expression changes in control vs test sample ,any suggestion ?

R • 1.8k views
ADD COMMENT
1
Entering edit mode
7.3 years ago
firatuyulur ▴ 320

expression bar plot is a nice one. lets say your main data from cuffdiff is "cuff_data" and your filtered table is "my_significants_filtered". A warning: if you have a couple of hundred significantly differentially expressed genes, your graph will be too crowded. With using a better threshold for p-value, subsetting your data may results in better graphs. you can draw expr. bar plot with a command like this;

ids_to_be_graphed <- my_significants_filtered$geneids
my_genes_to_be_graphed <- getGenes(cuff_data, ids_to_be_graphed)
exp_b_plot <- expressionBarplot(my_genes_to_be_graphed)
exp_b_plot `

I dont really use cuff for rnaseq, XLOC always gives a hard time. In most cases, when you first draw the graph, you dont see the graph itself but you see gene names that are labeling the x-axis. increasing the width and height will let you see your graph.

ADD COMMENT
0
Entering edit mode

I can make a subset with gene the common name ,wouldn't that be helpful as there is a column after XLOC which contains the gene name ,commonly used name .

ADD REPLY
1
Entering edit mode

If you have the gene names, forget about the XLOC column and go with gene names.

ADD REPLY

Login before adding your answer.

Traffic: 2179 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