Saving Median values to an Affy CEL file
4
0
Entering edit mode
Nathan Haigh ▴ 120
@nathan-haigh-2307
Last seen 9.6 years ago
I have a need to calculate the median of probes across 4 reps and save these medians to a single Affy ATH1 CEL file. Can this be done with bioconductor? Thanks Nathan
affy affy • 1.3k views
ADD COMMENT
0
Entering edit mode
Seth Falcon ★ 7.4k
@seth-falcon-992
Last seen 9.6 years ago
Nathan Haigh <n.haigh at="" sheffield.ac.uk=""> writes: > James MacDonald wrote: >> Hi Nathan, >> >> What's your sessionInfo()? > >> sessionInfo() > R version 2.4.0 Patched (2006-11-25 r39997) > i486-pc-linux-gnu Can you try upgrading to the latest R release (2.5.1) and trying biocLite again? Are you really on a 486?! + seth -- Seth Falcon | Computational Biology | Fred Hutchinson Cancer Research Center BioC: http://bioconductor.org/ Blog: http://userprimary.net/user/
ADD COMMENT
0
Entering edit mode
Seth Falcon wrote: > Nathan Haigh <n.haigh at="" sheffield.ac.uk=""> writes: > > >> James MacDonald wrote: >> >>> Hi Nathan, >>> >>> What's your sessionInfo()? >>> >>> sessionInfo() >>> >> R version 2.4.0 Patched (2006-11-25 r39997) >> i486-pc-linux-gnu >> > > Can you try upgrading to the latest R release (2.5.1) and trying > biocLite again? Are you really on a 486?! > > + seth > > I'm on a Debian machine, running the latest "stable" R version according to Debian. I can try installing 2.5.1 from unstable if you think that's gonna be required. I'll let you know if it's gonna cause problems with updating loads of dependencies. No it's not a 486 it's a 686 - not sure why R reports that since "uname-a" gives: Linux bio5 2.6.18-4-686 #1 SMP Wed May 9 23:03:12 UTC 2007 i686 GNU/Linux
ADD REPLY
0
Entering edit mode
If the problem persists, please give us some compiler specifics. I guess you are using GCC, but a version number would be nice. Also please check that R CMD config CC and R CMD config CXX points to the compiler you think you are using :) Kasper On Aug 7, 2007, at 9:02 AM, Nathan Haigh wrote: > Seth Falcon wrote: >> Nathan Haigh <n.haigh at="" sheffield.ac.uk=""> writes: >> >> >>> James MacDonald wrote: >>> >>>> Hi Nathan, >>>> >>>> What's your sessionInfo()? >>>> >>>> sessionInfo() >>>> >>> R version 2.4.0 Patched (2006-11-25 r39997) >>> i486-pc-linux-gnu >>> >> >> Can you try upgrading to the latest R release (2.5.1) and trying >> biocLite again? Are you really on a 486?! >> >> + seth >> >> > > I'm on a Debian machine, running the latest "stable" R version > according > to Debian. I can try installing 2.5.1 from unstable if you think > that's > gonna be required. I'll let you know if it's gonna cause problems with > updating loads of dependencies. > > No it's not a 486 it's a 686 - not sure why R reports that since > "uname-a" gives: > Linux bio5 2.6.18-4-686 #1 SMP Wed May 9 23:03:12 UTC 2007 i686 GNU/ > Linux > > _______________________________________________ > 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
ADD REPLY
0
Entering edit mode
Forgot this: because you are using R-2.4.0 you get an old(er) version of affxparser. That is essentially why Seth wants you to upgrade. As far as I can remember (and I am the maintainer after all), the 1.8.1 version of affxparser (the current stable one) is compatible with R-2.4.0, although I am not 100% sure. If you just want to get it working quickly, I suggest downloading the tarball from Bioconductor and install it manually. It might work. Kasper On Aug 7, 2007, at 9:02 AM, Nathan Haigh wrote: > Seth Falcon wrote: >> Nathan Haigh <n.haigh at="" sheffield.ac.uk=""> writes: >> >> >>> James MacDonald wrote: >>> >>>> Hi Nathan, >>>> >>>> What's your sessionInfo()? >>>> >>>> sessionInfo() >>>> >>> R version 2.4.0 Patched (2006-11-25 r39997) >>> i486-pc-linux-gnu >>> >> >> Can you try upgrading to the latest R release (2.5.1) and trying >> biocLite again? Are you really on a 486?! >> >> + seth >> >> > > I'm on a Debian machine, running the latest "stable" R version > according > to Debian. I can try installing 2.5.1 from unstable if you think > that's > gonna be required. I'll let you know if it's gonna cause problems with > updating loads of dependencies. > > No it's not a 486 it's a 686 - not sure why R reports that since > "uname-a" gives: > Linux bio5 2.6.18-4-686 #1 SMP Wed May 9 23:03:12 UTC 2007 i686 GNU/ > Linux > > _______________________________________________ > 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
ADD REPLY
0
Entering edit mode
Seth Falcon ★ 7.4k
@seth-falcon-992
Last seen 9.6 years ago
Nathan Haigh <n.haigh at="" sheffield.ac.uk=""> writes: > I'm on a Debian machine, running the latest "stable" R version according > to Debian. I can try installing 2.5.1 from unstable if you think that's > gonna be required. I'll let you know if it's gonna cause problems with > updating loads of dependencies. Why not try building R from source? > No it's not a 486 it's a 686 - not sure why R reports that since > "uname-a" gives: > Linux bio5 2.6.18-4-686 #1 SMP Wed May 9 23:03:12 UTC 2007 i686 GNU/Linux Weird. -- Seth Falcon | Computational Biology | Fred Hutchinson Cancer Research Center BioC: http://bioconductor.org/ Blog: http://userprimary.net/user/
ADD COMMENT
0
Entering edit mode
Seth Falcon wrote: > Nathan Haigh <n.haigh at="" sheffield.ac.uk=""> writes: > >> I'm on a Debian machine, running the latest "stable" R version according >> to Debian. I can try installing 2.5.1 from unstable if you think that's >> gonna be required. I'll let you know if it's gonna cause problems with >> updating loads of dependencies. >> > > Why not try building R from source? > > Ah, found the packports for installing 2.5.1 on Debian stable! :) http://cran.r-project.org/bin/linux/debian/ Got 2.5.1 installed, and managed to install affxparser sucessfully. Now in the middle of upgrade all my bioconductor packages - gosh, there have been quite a few large version bumps! Thanks for your help - I might be in contact again, as I get further into the world of CEL, CDF files and limma etc! Nathan
ADD REPLY
0
Entering edit mode
@james-w-macdonald-5106
Last seen 17 hours ago
United States
Hi Nathan, Nathan Haigh wrote: > I have a need to calculate the median of probes across 4 reps and save > these medians to a single Affy ATH1 CEL file. Can this be done with > bioconductor? > I believe so. See the affxparser package, in particular the createCel() and updateCel() functions. Best, Jim > Thanks > Nathan > > _______________________________________________ > 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
ADD COMMENT
0
Entering edit mode
James W. MacDonald wrote: > Hi Nathan, > > Nathan Haigh wrote: >> I have a need to calculate the median of probes across 4 reps and save >> these medians to a single Affy ATH1 CEL file. Can this be done with >> bioconductor? >> > > I believe so. See the affxparser package, in particular the > createCel() and updateCel() functions. > > Best, > > Jim > Thanks for the head's up. I tried installing the package using: source("http://bioconductor.org/biocLite.R") biocLite(c("affxparser")) but get the following error: -- snip -- g++ -I/usr/share/R/include -I/usr/share/R/include -imacros R_affx_constants.h -Ifusion_sdk/calvin_files/array/src -Ifusion_sdk/calvin_files/data/src -Ifusion_sdk/calvin_files/exception/src -Ifusion_sdk/calvin_files/fusion/src -Ifusion_sdk/calvin_files/fusion/src/GCOSAdapter -Ifusion_sdk/calvin_files/fusion/src/CalvinAdapter -Ifusion_sdk/calvin_files/parameter/src -Ifusion_sdk/calvin_files/parsers/src -Ifusion_sdk/calvin_files/portability/src -Ifusion_sdk/calvin_files/template/src -Ifusion_sdk/calvin_files/utils/src -Ifusion_sdk/calvin_files/writers/src -Ifusion_sdk/file -Ifusion_sdk/portability -D_USE_MEM_MAPPING_ -fpic -g -O2 -O0 -c fusion_sdk/calvin_files/data/src/CELData.cpp -o fusion_sdk/calvin_files/data/src/CELData.o fusion_sdk/calvin_files/data/src/CELData.h:188: error: extra qualification 'affymetrix_calvin_io::CelFileData::' on member 'GetAlgorithmVersion' make: *** [fusion_sdk/calvin_files/data/src/CELData.o] Error 1 ERROR: compilation failed for package 'affxparser' ** Removing '/usr/local/lib/R/site-library/affxparser' The downloaded packages are in /tmp/RtmpgblgWq/downloaded_packages Warning message: installation of package 'affxparser' had non-zero exit status in: install.packages(pkgs = pkgs, repos = repos, dependencies = dependencies, -- end -- Any ideas if I'm doing something stupid!? Thanks Nathan
ADD REPLY
0
Entering edit mode
Hi Nathan, What's your sessionInfo()? Nathan Haigh wrote: > James W. MacDonald wrote: >> Hi Nathan, >> >> Nathan Haigh wrote: >>> I have a need to calculate the median of probes across 4 reps and save >>> these medians to a single Affy ATH1 CEL file. Can this be done with >>> bioconductor? >>> >> I believe so. See the affxparser package, in particular the >> createCel() and updateCel() functions. >> >> Best, >> >> Jim >> > > Thanks for the head's up. > > I tried installing the package using: > source("http://bioconductor.org/biocLite.R") > biocLite(c("affxparser")) > > but get the following error: > > -- snip -- > g++ -I/usr/share/R/include -I/usr/share/R/include -imacros > R_affx_constants.h -Ifusion_sdk/calvin_files/array/src > -Ifusion_sdk/calvin_files/data/src > -Ifusion_sdk/calvin_files/exception/src > -Ifusion_sdk/calvin_files/fusion/src > -Ifusion_sdk/calvin_files/fusion/src/GCOSAdapter > -Ifusion_sdk/calvin_files/fusion/src/CalvinAdapter > -Ifusion_sdk/calvin_files/parameter/src > -Ifusion_sdk/calvin_files/parsers/src > -Ifusion_sdk/calvin_files/portability/src > -Ifusion_sdk/calvin_files/template/src > -Ifusion_sdk/calvin_files/utils/src > -Ifusion_sdk/calvin_files/writers/src -Ifusion_sdk/file > -Ifusion_sdk/portability -D_USE_MEM_MAPPING_ -fpic -g -O2 -O0 -c > fusion_sdk/calvin_files/data/src/CELData.cpp -o > fusion_sdk/calvin_files/data/src/CELData.o > fusion_sdk/calvin_files/data/src/CELData.h:188: error: extra > qualification 'affymetrix_calvin_io::CelFileData::' on member > 'GetAlgorithmVersion' > make: *** [fusion_sdk/calvin_files/data/src/CELData.o] Error 1 > ERROR: compilation failed for package 'affxparser' > ** Removing '/usr/local/lib/R/site-library/affxparser' > > The downloaded packages are in > /tmp/RtmpgblgWq/downloaded_packages > Warning message: > installation of package 'affxparser' had non-zero exit status in: > install.packages(pkgs = pkgs, repos = repos, dependencies = dependencies, > > -- end -- > > Any ideas if I'm doing something stupid!? > > Thanks > Nathan > > _______________________________________________ > 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 -- James W. MacDonald, MS Biostatistician UMCCC cDNA and Affymetrix Core University of Michigan 1500 E Medical Center Drive 7410 CCGC Ann Arbor MI 48109 734-647-5623
ADD REPLY
0
Entering edit mode
James MacDonald wrote: > Hi Nathan, > > What's your sessionInfo()? > sessionInfo() R version 2.4.0 Patched (2006-11-25 r39997) i486-pc-linux-gnu locale: LC_CTYPE=en_GB;LC_NUMERIC=C;LC_TIME=en_GB;LC_COLLATE=en_GB;LC_MONETARY =en_GB;LC_MESSAGES=en_GB;LC_PAPER=en_GB;LC_NAME=C;LC_ADDRESS=C;LC_TELE PHONE=C;LC_MEASUREMENT=en_GB;LC_IDENTIFICATION=C attached base packages: [1] "stats" "graphics" "grDevices" "utils" "datasets" "methods" [7] "base" >
ADD REPLY
0
Entering edit mode
Nathan Haigh ▴ 120
@nathan-haigh-2307
Last seen 9.6 years ago
I have a need to calculate the median of probes across 4 reps and save these medians to a single Affy ATH1 CEL file. Can this be done with bioconductor? Thanks Nathan
ADD COMMENT

Login before adding your answer.

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