This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Getting full list for DEGs in Noiseq

Hello everyone

I have downloaded NOISEQ and managed to import the data and run my analysis for differentially expressed genes. However, I can't find a way to see/download the entire file of results. All I get is a snippet showing me the M and D results for for the first 6 rows (I have 21000 rows). This is the code I used > head(mynoiseq@results[[1]]) (it's in R). Will appreciate any help.

Here's a link to the NOISEQ package I downloaded from Bioconductor http://www.bioconductor.org/packages/release/bioc/html/NOISeq.html

rna-seq

head by default returns 6 rows. If you want to see more then use a number like (in this case 10)

head(mynoiseq@results[[1]], 10)

0 answers

No answers yet.

Log in to answer this question.