Using Bioconductor To Analyse Beadarray Data (lumi): Difference between revisions
| Line 18: | Line 18: | ||
*At a minimum you need the Probe Profile data (normally a txt file). | *At a minimum you need the Probe Profile data (normally a txt file). | ||
*For all R procedures first change directory to your working directory then next create a new script, and save all executed lines in that script file. | *For all R procedures first change directory to your working directory then next create a new script, and save all executed lines in that script file. | ||
*Load the beadarray library, indictate dataFile (required | *Load the beadarray library, indictate dataFile (required) and mapping library (shown here is mouse) | ||
<pre> | <pre> | ||
data = "FinalReport_SampleProbe.txt" | data = "FinalReport_SampleProbe.txt" | ||
lumi = lumiR(data, lib='lumiMouseIDMapping') | |||
</pre> | </pre> | ||
*This fits the data into the lumi. Phenotype data can be accessed by pData(BSData) and expression data can be accessed by exprs(BSData). | |||
*This fits the data into the | |||
==Data Normalisation== | ==Data Normalisation== | ||