Displaying 20 results from an estimated 174 matches for "biobase".
Did you mean:
iobase
2007 Sep 13
1
trouble with installing Biobase package
Hi Everybody,
I am having a problem with loading Biobase package. I typed
2 lines below at R prompt
> source ("http://boconductor.org/biocLite.R")
> biocLite (lib="/usr/local/lib/R/library")
which attempted to install a bunch of packages with varying
degree of success. Out of 29, 13 failed. Biobase is one of
them. As a m...
2008 Sep 05
1
Problem installing Biobase on Solaris
Hi everyone
This is my first post to the list. I had experience installing and using
Bioconductor on Linux and Windows systems but I am encountering problems
installing Biobase on Solaris running on Sparc. The package compilation
works fine, with only a warning
warning: implicit declaration of function `__builtin_isnan'
the help files are generated but in the end it fails with an error also
related __builtin_isnan
** building package indices ...
Error in dyn.load...
2006 Sep 05
1
Reserve and biobase
Hi
I am using Rserve for R2.3.1.
every time after I load Biobase library, a new Graphics window frame pops up. Could any onw know how can avoid it.
Best
Saeede
class testReserve {
public static void main(String[] args) {
RServeConnection rsCon = null;
Rconnection c = null;
Process proc = null;
try {
Runtime rt = Runtim...
2010 Jul 08
2
package installation for Windows 7
...In safeSource() : Redefining ?biocinstallRepos?
> biocLite()
Using R version 2.11.1, biocinstall version 2.6.7.
Installing Bioconductor version 2.6 packages:
[1] "affy" "affydata" "affyPLM" "affyQCReport"
[5] "annaffy" "annotate" "Biobase" "biomaRt"
[9] "Biostrings" "DynDoc" "gcrma" "genefilter"
[13] "geneplotter" "GenomicRanges" "hgu95av2.db" "limma"
[17] "marray" "multtest" "vsn" "xtable"
Please wa...
2005 Sep 08
1
Install packages to non-default lib on Windows
...access to $R_HOME is required as part of
the install step even when -l is used to specify an alternate package
library.
here's an example of what we're seeing:
C:\rlibdir\hpages>set R_LIBS=c:\rlibdir\hpages
C:\rlibdir\hpages>d:\biocbld\R-devel\bin\R CMD INSTALL -l=%R_LIBS% --build Biobase_1.6.7.tar.gz
Using auto-selected zip options 'Biobase-ZIPDATA=zip Biobase-HELP=ziponly'
---------- Making package Biobase ------------
adding build stamp to DESCRIPTION
installing NAMESPACE file and metadata
making DLL ...
... DLL made
installing DLL
installing R files
save...
2008 Nov 15
1
unable to view vignette in R
...Output
4: annotate - HowTo: use chromosomal information
5: annotate - HOWTO: Use the online query tools
6: annotate - Using Affymetrix Probe Level Data
7: annotate - Using Data Packages
8: annotate - Using the homology package
9: AnnotationDbi - AnnotationDbi
10: AnnotationDbi - SQLForge
11: Biobase - An introduction to Biobase and ExpressionSets
12: Biobase - Bioconductor Overview
13: Biobase - esApply Introduction
14: Biobase - Notes for eSet developers
15: Biobase - Notes for writing introductory 'how to' documents
16: Biobase - quick views of eSet instances
17: geneplotter - How to...
2003 Sep 05
2
S4 Method Collisions with "[" (PR#4075)
Full_Name: Colin A. Smith
Version: 1.8.0
OS: Mac OS X 10.2.6
Submission from: (NULL) (216.102.90.18)
Both Biobase and my package annaffy use S4 classes to define methods for "[".
Both packages use the save image method of installation. (See annaffy 1.0.3 in
BioC CVS.)
Depending on how both packages are loaded, the Biobase definitions seem to be
getting masked out:
> library(Biobase)
> library...
2003 Sep 11
1
potentially nasty interaction between R 1.8.0 and tetex
...ants
Blue and Red predefined, when only blue and red are defined (as of
rsync Rdevel, Sept 10th). This is on a Debian unstable system (Sept
9th version). Might not apply to all other tetex systems. Seems to
have bitten the bioconductor build system, though.
Symptom:
512$ R CMD build --force Biobase
* checking for file 'Biobase/DESCRIPTION' ... OK
* preparing 'Biobase':
* checking whether 'INDEX' is up-to-date ... OK
* creating vignettes ... ERROR
/usr/lib/R/bin/texi2dvi: pdflatex exited with bad status, quitting.
/usr/lib/R/bin/texi2dvi: see Bioconductor.log for errors...
2012 Nov 26
1
A problem subsetting a data frame
...t;
>> error in evaluating the argument 'i' in selecting a method for function '[': Error in c(BCR/ABL, NEG) : unused argument(s) (NEG)
At this point, I really appreciate any inputs to move forward. ?.
> str(ALL)
> Formal class 'ExpressionSet' [package "Biobase"] with 7 slots
> ..@ experimentData :Formal class 'MIAME' [package "Biobase"] with 13 slots
> .. .. ..@ name : chr "Chiaretti et al."
> .. .. ..@ lab : chr "Department of Medical Oncology, Dana-Farber Cancer Institute,...
2003 Oct 27
1
initialization of S4 classes/methods
I'm seeing weird issues in methods initialization, i.e. loading
marrayClasses loads Biobase, and when explicitly done, as in
library(Biobase)
library(marrayClasses)
is fine, but when Biobase is loaded via a require statement in
marrayClasses' .First.Lib, I end up with:
Warning message: In the method signature for function "coerce", class
"exprSet" has...
2006 Oct 11
1
Possible bug in accessing methods documentation?
Hi,
Reading help("Documentation"), I'm led to believe that a help call
like:
?myFun(x, sqrt(wt))
Will search for help on the appropriate method in the case that myFun
is generic. This isn't working for me. Here is an example using the
Biobase package:
## If Biobase is not installed
source("http://bioconductor.org/biocLite.R")
biocLite("Biobase")
> library("Biobase")
> data(sample.ExpressionSet)
> class(sample.ExpressionSet)
[1] "ExpressionSet"
attr(,"package")
[1] "Biobas...
2006 Oct 11
1
Possible bug in accessing methods documentation? (PR#9291)
...;
> Reading help("Documentation"), I'm led to believe that a help call
> like:
>
> ?myFun(x, sqrt(wt))
>
> Will search for help on the appropriate method in the case that myFun
> is generic. This isn't working for me. Here is an example using the
> Biobase package:
>
> ## If Biobase is not installed
> source("http://bioconductor.org/biocLite.R")
> biocLite("Biobase")
>
>> library("Biobase")
>> data(sample.ExpressionSet)
>> class(sample.ExpressionSet)
> [1] "ExpressionSet"
&...
2003 Sep 18
2
R-1.7.1 package installation problem
...informatician working in DFCI. I am new to R. Yesterday I installed
the R-1.7.1 to my Linux (since I am not able to find R-1.8 on the webpage). But
I have some package installation problems ...
1. install.packages2() function isn't available. If I type at R prompt:
>install.packages2("Biobase")
Error: couldn't find function "install.packages2"
*****************************************************
2. If I try this:
>install.packages("Biobase")
trying URL `http://cran.us.r-project.org/src/contrib/PACKAGES'
Content type `text/plain' length 127126 by...
2006 Mar 15
1
installation problem with Biobase
Hello,
I wanted to install MergeMaid package in v 2.2.1. I could install it but couldn't use without its dependant, Biobase. at biobase installation, I got the following error message
In method for function "split": expanding the signature
to include omitted arguments in definition: drop = "missing"
Error in .MakeSignature(new("signature"), def, signature) :
the names in signature...
2011 Apr 27
2
arch=i386
Dear ALL
I want to load "HTSanalyzeR", It 's necessary to load "igraph" package.
This time I see this error:
library(igraph)
library(HTSanalyzeR)
Loading required package: GSEABase
Loading required package: Biobase
Error: package 'Biobase' is not installed for 'arch=i386'
>
I 'll be glade if you help me
[[alternative HTML version deleted]]
2010 Oct 24
1
R-devel CMD build fails when vignette present
If I try to build a package with a vignette
R CMD build Biobase
I see
* checking for file 'Biobase/DESCRIPTION' ... OK
* preparing 'Biobase':
* checking DESCRIPTION meta-information ... OK
* cleaning src
* installing the package to re-build vignettes
* creating vignettes ... OK
* cleaning src
Error in setwd(pkgname) : cannot change working dir...
2002 Jun 10
2
library() with v. 1.5.0 for Mac OS X Carbon
I am having trouble with the library function of R Version 1.5.0 for Mac
OS X Carbon when I try to load libraries that did not come with the R
installation. For example, I put the Biobase library from
bioconductor.org in the 'library' folder. R cannot find it, even though
it can find the pre-installed libraries:
> library() # this lists standard libraries such as 'boot', but does not
list 'Biobase'
> library('boot') # this loads 'boot&...
2006 Oct 12
1
getMethods() not finding all methods
...misunderstanding
something?
I try to use getMethods() to learn how things work,
without having to always get the source code and
grep my way through the source. Is there another
way to get all methods that I should be using?
Any info appreciated.
> library(affy)
Loading required package: Biobase
Loading required package: tools
Welcome to Bioconductor
Vignettes contain introductory material. To view, type
'openVignette()' or start with 'help(Biobase)'. For details
on reading vignettes, see the openVignette help page.
Loading required package: affyio
> getMe...
2008 Jul 04
1
Problem in installing Biobase
Hi,
Recently I try to install Biobase component using the tutorials from
cran.r-project.org/doc/Rnews/Rnews_2006-5.pdf
I tried
u <- "http://bioconductor.org/biocLite.R"
> source(u)
> biocLite("pkgDepTools", dependencies=TRUE)
Running biocinstall version 2.0.8 with R version 2.5.1
Your version of R require...
2010 Aug 27
1
Error: package/namespace load failed for 'IlluminaHumanMethylation27k.db'
...It went all succesfull:
"package 'IlluminaHumanMethylation27k.db' successfully unpacked and MD5 sums
checked"
But when I am trying to load this library I get an error:
> library(IlluminaHumanMethylation27k.db)
Loading required package: AnnotationDbi
Loading required package: Biobase
Welcome to Bioconductor
Vignettes contain introductory material. To view, type
'openVignette()'. To cite Bioconductor, see
'citation("Biobase")' and for packages 'citation(pkgname)'.
Loading required package: org.Hs.eg.db
Loading required package: DBI
Erro...