Loading table of logratios into limma
1
0
Entering edit mode
@karen-vranizan-868
Last seen 9.7 years ago
How would I import a tab delimited file containing geneids and logratios into limma for analysis without going through the low-level reading, normalizing of the cel, gpr, etc. files? Thank you. Karen Vranizan UC Berkeley Functional Genomics Lab
limma limma • 579 views
ADD COMMENT
0
Entering edit mode
@sean-davis-490
Last seen 4 months ago
United States
Karen Vranizan wrote: > How would I import a tab delimited file containing geneids and logratios > into limma for analysis without going through the low-level reading, > normalizing of the cel, gpr, etc. files? Thank you. > Karen Vranizan > UC Berkeley Functional Genomics Lab > Limma will take a matrix of values for lmFit. Therefore, all you need to do is to read in your data (using read.table(), for example), remove the columns that do not have gene expression values in them (gene names, ids, etc.) and make a matrix. Then, use the matrix in the call to lmFit like: fit1 <- lmFit(mymatrix,design=design) Where design is your design matrix. Hope that helps. Sean
ADD COMMENT

Login before adding your answer.

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