Illumina BeadChip Array probe file Vs control probe file
0
0
Entering edit mode
7.2 years ago

Hi every body,

I want to get the list of differential expressed genes from an Illumina BeadChip Array data set (Gse22155).

In Limma manual it has been said that BeadStudio is usually produced probe intensity file as well as control probe file which the latter is used for background correction and normalization.

However most data sets that I want to use, including gse22155, does not have control probe file.

Can anyone guide me how to analyze these types of Illumina BeadChip Arrays?

Thank u in advance

Nazanin

Illumina BeadChip Array Control probe file • 2.0k views
ADD COMMENT
0
Entering edit mode

The data is already normalised; thus, the control probe information has already been utilised and is not provided.

library(Biobase)
library(GEOquery)

# load series and platform data from GEO

gset <- getGEO("GSE22155", GSEMatrix =TRUE, getGPL=FALSE)
if (length(gset) > 1) idx <- grep("GPL6947", attr(gset, "names")) else idx <- 1
gset <- gset[[idx]]

# set parameters and draw the plot

dev.new(width=4+dim(gset)[[2]]/5, height=6)
par(mar=c(2+round(max(nchar(sampleNames(gset)))/2),4,2,1))
title <- paste ("GSE22155", '/', annotation(gset), " selected samples", sep ='')
boxplot(exprs(gset), boxwex=0.7, notch=T, main=title, outline=FALSE, las=2)

d


Please confirm the exact data that you downloaded.

Kevin

ADD REPLY
0
Entering edit mode

Thank u so much for your help Kevin

ADD REPLY

Login before adding your answer.

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