How To Process A .Gpr File Using R And Marray Package Of Bioconductor
2
1
Entering edit mode
10.7 years ago
Curious Mind ▴ 10

Hi,

This is a bioinformatics question involving R. I am a new bee in R and Bioconductor. I am a new bee in R and Bioconductor. I have a .gpr file from GenePix experiments. I want to load this file using marray package of Bioconductor and extract the foreground and background median values from the Cy5 and Cy3 channels. I was able to load the file. But need help in extracting the above mentioned subset of data.

dat<-read.GenePix(fnames="KLM675590.gpr", path="C:/MyMicroArrays/Data/")

Most of the samples I see on the internet are based upon the swirl dataset, which is loaded when marray package is loaded automatically. I don't see any sample where a .gpr file is processed.

Thanks

r bioconductor • 7.4k views
ADD COMMENT
1
Entering edit mode
10.7 years ago
Raygozak ★ 1.4k

A simple google search resulted in the following tutorial

http://www.computing.dcu.ie/~asirbu/R.pdf

ADD COMMENT
0
Entering edit mode

Unfortunately it uses limma package and not marray. Thanks

ADD REPLY
0
Entering edit mode

You can use the str function when in doubt

str(dat)

it will give you the structure of your object and you can get an idea of how you can access the members of the object.

ADD REPLY
0
Entering edit mode
10.7 years ago
Martin Morgan ★ 1.6k

It's better to ask Bioconductor questions on the Bioconductor mailing list (no subscription required) rather than cross-posting (which is frowned upon!) to StackOverflow and Biostars. From looking at the help page ?read.GenePix and class?marrayRaw I think you can extract, e.g., green background intensities as a plain old matrix and calculate per-sample medians with

apply(maGb(dat), 1, median)
ADD COMMENT

Login before adding your answer.

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