Hi guys,
I'm trying to get a list of differentially expressed genes using cummerbund - which is working well using this sort of thing:
cuff_data <- readCufflinks('diff_out')
diffGeneIDs <- getSig(cuff_data,level="genes",alpha=0.01)
length(diffGeneIDs)
I can see that I have 342 genes sig DE (P<0.01) genes between the groups, and I can see there IDs.
However, as I don't have a annotation track, what I really want to be able to do from here is to essentially BLAST these genes to find out what they are.
Is there any way of pulling out nucleotide sequence using cummeRbund?
Many thanks
I'm trying to get a list of differentially expressed genes using cummerbund - which is working well using this sort of thing:
cuff_data <- readCufflinks('diff_out')
diffGeneIDs <- getSig(cuff_data,level="genes",alpha=0.01)
length(diffGeneIDs)
I can see that I have 342 genes sig DE (P<0.01) genes between the groups, and I can see there IDs.
However, as I don't have a annotation track, what I really want to be able to do from here is to essentially BLAST these genes to find out what they are.
Is there any way of pulling out nucleotide sequence using cummeRbund?
Many thanks
Comment