One-Color Aglent Data into Limma GUI
2
0
Entering edit mode
@elliot-harrison-2391
Last seen 9.6 years ago
Hi All, I'm trying to work with One-color agilent data without much luck. http://article.gmane.org/gmane.science.biology.informatics.conductor/1 28 18/match=agilent I've tried the above method but as I posted before I get stuck on the following error. Error in readGenericHeader(fullname, columns = columns, sep = sep) : Specified column headings not found in file As such I thought I'd try a different approach and have a go with the LimmaGUI. I've faked green channel columns in my files like this which I hope to ignore once imported. FEATURES FeatureNum Block Row Col SubTypeMask SubTypeName ProbeUID ControlType ProbeName GeneName SystematicName PositionX PositionY gProcessedSignal rProcessedSignal gMeanSignal rMeanSignal gMedianSignal rMedianSignal gBGUsed rBGUsed DATA 1 1 1 1 0 0 1 GE_BrightCorner GE_BrightCorner GE_BrightCorner 9790.72 223.949 358.8079 1.52E+04 1.10E+04 1.10E+04 10446 10446 78.8743 78.8743 When I try to import the files I gives an error saying it was unable to read the image processing files I've also added a Block column as the next error is in getLayout(gal) GAL file must contain Block, Column, Row error. Then Error in Matrix and other but I guess this is all due to the file not being read properly in the first place. I am using another analysis package as well so I am analysing my data but there is so much more to R. Any help getting going would be greatly appreciated. Many Thanks Elliott This message has been scanned for viruses by BlackSpider...{{dropped:3}}
GO GO • 1.1k views
ADD COMMENT
0
Entering edit mode
@martin-morgan-1513
Last seen 2 days ago
United States
Hi Elliot, "elliot harrison" <e.harrison at="" epistem.co.uk=""> writes: > Hi All, > > I'm trying to work with One-color agilent data without much luck. > http://article.gmane.org/gmane.science.biology.informatics.conductor /128 > 18/match=agilent > > I've tried the above method but as I posted before I get stuck on the > following error. > > Error in readGenericHeader(fullname, columns = columns, sep = sep) : > Specified column headings not found in file Sorry your earlier post didn't get a reply. Try narrowing things down to their essence, and post something as close to reproducible as possible. I bet you end up with the problem here targets <- ... G <- read.maimages(targets, columns = list(G = "gMeanSignal", Gb = "gBGUsed", R = "gProcessedSignal", Rb = "gBGMedianSignal")) The likely candidates are either that one of the 'targets' is incorrect, or that one of the files pointed to by targets does not, or appears not, to contain one of the columns. So the next challenge is to figure out which file is problematic. I'd try > options(error=recover) and then execute read.maimages. You'll then want to choose one of the listed 'frames' (probably labeled something like readGenericHeader). You'll be in something called the browser (see ?browser) and will be able to evaluate any R expression. In particular, when you've navigated to the right frame (this might take a bit of experimentation), you'll be able to print out 'fullname', the name of the file you're having trouble with. Your agilent files are likely text files, and you can likely look inside them for strings matching the column names you've listed. If the column names aren't found, then you've discovered why you're getting the error! If they are found, then report back with a thoughtful and concise digest of your discoveries. You do want to be careful not to 'save' files you're looking at, unless you know your text editor won't try to be 'helpful' in some way, e.g., by saving the file in a different encoding. Please also include the output of sessionInfo(). Martin > As such I thought I'd try a different approach and have a go with the > LimmaGUI. > I've faked green channel columns in my files like this which I hope to > ignore once imported. > > FEATURES FeatureNum Block Row Col SubTypeMask > SubTypeName ProbeUID ControlType ProbeName GeneName > SystematicName PositionX PositionY gProcessedSignal > rProcessedSignal gMeanSignal rMeanSignal > gMedianSignal rMedianSignal gBGUsed rBGUsed > DATA 1 1 1 1 0 0 1 > GE_BrightCorner GE_BrightCorner GE_BrightCorner 9790.72 223.949 358.8079 > 1.52E+04 1.10E+04 1.10E+04 10446 10446 78.8743 > 78.8743 > > When I try to import the files I gives an error saying it was unable to > read the image processing files > > I've also added a Block column as the next error is in getLayout(gal) > GAL file must contain Block, Column, Row error. > Then Error in Matrix and other but I guess this is all due to the file > not being read properly in the first place. > > I am using another analysis package as well so I am analysing my data > but there is so much more to R. > Any help getting going would be greatly appreciated. > > > Many Thanks > > Elliott > > > This message has been scanned for viruses by BlackSpider...{{dropped:3}} > > _______________________________________________ > Bioconductor mailing list > Bioconductor at stat.math.ethz.ch > https://stat.ethz.ch/mailman/listinfo/bioconductor > Search the archives: http://news.gmane.org/gmane.science.biology.informatics.conductor -- Martin Morgan Computational Biology Shared Resource Director Fred Hutchinson Cancer Research Center 1100 Fairview Ave. N. PO Box 19024 Seattle, WA 98109 Location: Arnold Building M2 B169 Phone: (208) 667-2793
ADD COMMENT
0
Entering edit mode
Ido M. Tamir ▴ 320
@ido-m-tamir-1268
Last seen 9.6 years ago
On Tuesday 09 October 2007 06:32, elliot harrison wrote: > Hi All, > > I'm trying to work with One-color agilent data without much luck. > http://article.gmane.org/gmane.science.biology.informatics.conductor /128 > 18/match=agilent > > I've tried the above method but as I posted before I get stuck on the > following error. > > Error in readGenericHeader(fullname, columns = columns, sep = sep) : > Specified column headings not found in file samples <- readTargets("SampleKey.txt",sep="\t")[resort,] raw<-read.maimages(files=samples$fileName,path="RawData",columns=list( R="IsUsedBGAdjust",G="gProcessedSignal")) genes<-read.table(paste("RawData/",samples$fileName[1],sep=""),sep="\t ",as.is=TRUE,skip=9,header=TRUE,quote="",fill=TRUE) genes <- genes[,1:15] expressionValues <- raw$G rownames(expressionValues) <- genes$FeatureName colnames(expressionValues) <- samples$description the IsUsedBGAdjust is a column full of 0s and from this I then decided to construct an expressionset, which I found out is quite verbose and tedious and I don't yet see a lot of gain there. I also see a probe GC content bias in the intensity levels and have not yet decided if and how to deal with it. best wishes ido
ADD COMMENT

Login before adding your answer.

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