having problem to make Histogram graph with R for distribution of fpkm value per gene
1
1
Entering edit mode
9.6 years ago
hana ▴ 190

I want to make the Histogram graph of distribution of fpkm value per gene from genes.fpkm_tracking (cufflinks out_put) file and then based on graph find the appropriate FPKM cutoff to identify the high express genes in my sample. I am not good in R , can you provide me the codes for this propose?

thanks in advance

RNA-Seq • 4.7k views
ADD COMMENT
4
Entering edit mode

Why don't you first try it yourself and if you struggle you can come back either here or ask at stackoverflow?

This forum is not for ordering code.

Ps: this should not be a hard problem

ADD REPLY
1
Entering edit mode

Hint: Use read.delim() and hist().

ADD REPLY
1
Entering edit mode

Hint2: In the case if FPKM is in 10th coloumn of your read delim genes.fpkm_tracking

hist(genes.fpkm_tracking[,10], prob=TRUE)
lines(density(genes.fpkm_tracking[,10]))

just play around.

ADD REPLY
0
Entering edit mode

Thank you so much for you help

ADD REPLY
0
Entering edit mode
9.6 years ago
hana ▴ 190

I have already made the density graph fpkm value per gene. Can any one let me know how I can choose of the appropriate fpkm cutoff based on the graph?

thank you

ADD COMMENT
0
Entering edit mode

You will need to determine that (and whether FPKM even makes sense to use) based on your experiment. There is no "right" cutoff.

ADD REPLY
0
Entering edit mode

without graph, how can I choose the FPKM cutoff to identify the high express genes in my sample?

ADD REPLY

Login before adding your answer.

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