Back to the "Multiple platform build/check report" A  B  C  D  E  F [G] H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z 

Package 112/260HostnameOS / ArchBUILDCHECKBUILD BIN
GSEABase 1.2.2
Biocore Team c/o BioC user list
Snapshot Date: 2008-10-16 00:10:09 -0700 (Thu, 16 Oct 2008)
URL: https://hedgehog.fhcrc.org/bioconductor/branches/RELEASE_2_2/madman/Rpacks/GSEABase
Last Changed Rev: 32225 / Revision: 34573
Last Changed Date: 2008-06-09 20:20:04 -0700 (Mon, 09 Jun 2008)
lamb1 Linux (SUSE 10.1) / x86_64  OK  OK 
wilson2 Linux (openSUSE 10.3) / x86_64  OK  OK 
wellington Linux (openSUSE 10.3) / i686  OK  ERROR 
liverpool Windows Server 2003 R2 (32-bit) / x64  OK [ ERROR ] OK 
pitt Mac OS X Tiger (10.4.11) / i386  OK  ERROR  OK 
Package: GSEABase
Version: 1.2.2
Command: E:\biocbld\bbs-2.2-bioc\R\bin\R.exe CMD check GSEABase_1.2.2.tar.gz
StartedAt: 2008-10-16 06:10:16 -0700 (Thu, 16 Oct 2008)
EndedAt: 2008-10-16 06:11:39 -0700 (Thu, 16 Oct 2008)
EllapsedTime: 82.5 seconds
RetCode: 1
Status: ERROR
CheckDir: GSEABase.Rcheck
Warnings: NA

Command output

* checking for working pdflatex ... OK
* using log directory 'E:/biocbld/bbs-2.2-bioc/meat/GSEABase.Rcheck'
* using R version 2.7.2 (2008-08-25)
* using session charset: ISO8859-1
* checking for file 'GSEABase/DESCRIPTION' ... OK
* checking extension type ... Package
* this is package 'GSEABase' version '1.2.2'
* checking package name space information ... OK
* checking package dependencies ... OK
* checking if this is a source package ... OK
* checking whether package 'GSEABase' can be installed ... OK
* checking package directory ... OK
* checking for portable file names ... OK
* checking DESCRIPTION meta-information ... OK
* checking top-level files ... OK
* checking index information ... OK
* checking package subdirectories ... OK
* checking R files for non-ASCII characters ... OK
* checking R files for syntax errors ... OK
* checking whether the package can be loaded ... OK
* checking whether the package can be loaded with stated dependencies ... OK
* checking whether the name space can be loaded with stated dependencies ... OK
* checking for unstated dependencies in R code ... OK
* checking S3 generic/method consistency ... OK
* checking replacement functions ... OK
* checking foreign function calls ... OK
* checking R code for possible problems ... OK
* checking Rd files ... OK
* checking Rd cross-references ... OK
* checking for missing documentation entries ... OK
* checking for code/documentation mismatches ... OK
* checking Rd \usage sections ... OK
* creating GSEABase-Ex.R ... OK
* checking examples ... ERROR
Running examples in 'GSEABase-Ex.R' failed.
The error most likely occurred in:

> ### * GeneSet-class
> 
> flush(stderr()); flush(stdout())
> 
> ### Name: GeneSet-class
> ### Title: Class "GeneSet"
> ### Aliases: GeneSet-class [,GeneSet,character,ANY-method
> ###   [,GeneSet,numeric,ANY-method [,ExpressionSet,GeneSet,ANY-method
> ###   [[,GeneSet,character-method [[,GeneSet,numeric-method
> ###   Logic,character,GeneSet-method |,GeneSet,GeneSet-method
> ###   |,GeneSet,character-method $,GeneSet-method &,GeneSet,GeneSet-method
> ###   &,GeneSet,character-method
> ###   collectionType<-,GeneSet,CollectionType-method
> ###   collectionType,GeneSet-method contributor<-,GeneSet,character-method
> ###   contributor,GeneSet-method creationDate<-,GeneSet,character-method
> ###   creationDate,GeneSet-method description<-,GeneSet,character-method
> ###   description,GeneSet-method geneIds<-,GeneSet,character-method
> ###   geneIds,GeneSet-method initialize,GeneSet-method
> ###   intersect,GeneSet,GeneSet-method
> ###   longDescription<-,GeneSet,character-method
> ###   longDescription,GeneSet-method organism<-,GeneSet,character-method
> ###   organism,GeneSet-method pubMedIds<-,GeneSet,character-method
> ###   pubMedIds,GeneSet-method setdiff,GeneSet,GeneSet-method
> ###   setIdentifier<-,GeneSet,character-method setIdentifier,GeneSet-method
> ###   setName<-,GeneSet,character-method setName,GeneSet-method
> ###   geneIdType<-,GeneSet,character-method
> ###   geneIdType<-,GeneSet,GeneIdentifierType-method
> ###   geneIdType,GeneSet-method setVersion<-,GeneSet,Versions-method
> ###   setVersion,GeneSet-method show,GeneSet-method
> ###   union,GeneSet,GeneSet-method urls<-,GeneSet,character-method
> ###   urls,GeneSet-method collectionType<- collectionType contributor<-
> ###   contributor creationDate<- creationDate geneIds<- geneIds geneIdType
> ###   geneIdType<- longDescription<- longDescription organism<- organism
> ###   setIdentifier<- setIdentifier setName<- setName setVersion<-
> ###   setVersion urls<- urls
> ### Keywords: classes
> 
> ### ** Examples
> 
> ## Empty gene set
> GeneSet()
setName: NA 
geneIds:  (total: 0)
geneIdType: Null
collectionType: Null 
details: use 'details(object)'
> ## Gene set from ExpressionSet
> data(sample.ExpressionSet)
> gs1 <- GeneSet(sample.ExpressionSet[100:109])
> ## GeneSet from Broad XML; 'fl' could be a url
> fl <- system.file("extdata", "Broad.xml", package="GSEABase")
> gs2 <- getBroadSets(fl)[[1]] # actually, a list of two gene sets
> ## GeneSet from list of geneIds
> geneIds <- geneIds(gs2) # any character vector would do
> gs3 <- GeneSet(geneIds=geneIds)
> ## unspecified set type, so...
> is(geneIdType(gs3), "NullIdentifier") == TRUE
[1] TRUE
> ## update set type to match encoding of identifiers
> geneIdType(gs2)
geneIdType: Symbol
> geneIdType(gs3) <- SymbolIdentifier()
> 
> ## Convert between set types; this consults the 'annotation'
> ## information encoded in the 'AnnotationIdentifier' set type and the
> ## corresponding annotation package.
> ## Not run: 
> ##D gs4 <- gs1
> ##D geneIdType(gs4) <- EntrezIdentifier()
> ## End(Not run)
> 
> ## logical (set) operations
> gs5 <- GeneSet(sample.ExpressionSet[100:109], setName="subset1")
> gs6 <- GeneSet(sample.ExpressionSet[105:114], setName="subset2")
> ## intersection: 5 'genes'; note the set name '(subset1 & subset2)'
> gs5 & gs6
setName: (subset1 & subset2) 
geneIds: 31344_at, 31345_at, ..., 31348_at (total: 5)
geneIdType: Annotation (hgu95av2)
collectionType: ExpressionSet 
details: use 'details(object)'
> ## union: 15 'genes'; note the set name
> gs5 | gs6
setName: (subset1 | subset2) 
geneIds: 31339_at, 31340_at, ..., 31353_f_at (total: 15)
geneIdType: Annotation (hgu95av2)
collectionType: ExpressionSet 
details: use 'details(object)'
> ## an identity
> gs7 <- gs5 | gs6
> gs8 <- setdiff(gs5, gs6) | (gs5 & gs6) | setdiff(gs6, gs5)
> identical(geneIds(gs7), geneIds(gs8))
[1] TRUE
> identical(gs7, gs8) == FALSE # gs7 and gs8 setNames differ
[1] TRUE
> 
> ## output
> tmp <- tempfile()
> toBroadXML(gs2, tmp)
Error in value[[3]](cond) : 
  toBroadXML failed to create XML: no method or default for coercing "NULL" to "XMLNamespaceDefinitions"
Calls: toBroadXML ... tryCatchList -> tryCatchOne -> <Anonymous> -> .stopf
Execution halted

GSEABase.Rcheck/00install.out:

installing R.css in E:/biocbld/bbs-2.2-bioc/meat/GSEABase.Rcheck


---------- Making package GSEABase ------------
  adding build stamp to DESCRIPTION
  installing NAMESPACE file and metadata
  installing R files
  installing inst files
  preparing package GSEABase for lazy loading
Loading required package: AnnotationDbi
Loading required package: Biobase
Loading required package: tools

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: DBI
Loading required package: RSQLite
Loading required package: annotate
Loading required package: xtable
  installing man source files
  installing indices
  installing help
 >>> Building/Updating help pages for package 'GSEABase'
     Formats: text html latex example chm 
  CollectionType-class              text    html    latex   example chm
  CollectionType-constructors       text    html    latex   example chm
  GSEABase-package                  text    html    latex   example chm
  GeneColorSet-class                text    html    latex   example chm
  GeneColorSet-methods              text    html    latex           chm
  GeneIdentifierType-class          text    html    latex   example chm
  GeneIdentifierType-constructors   text    html    latex   example chm
  GeneSet-class                     text    html    latex   example chm
  GeneSet-methods                   text    html    latex   example chm
  GeneSetCollection-class           text    html    latex   example chm
  GeneSetCollection-methods         text    html    latex   example chm
  OBOCollection-class               text    html    latex   example chm
  details-methods                   text    html    latex           chm
  getOBOCollection                  text    html    latex   example chm
  getObjects                        text    html    latex   example chm
  goSlim-methods                    text    html    latex   example chm
  incidence-methods                 text    html    latex   example chm
  mapIdentifiers-methods            text    html    latex           chm
Microsoft HTML Help Compiler 4.74.8702

Compiling e:\biocbld\bbs-2.2-bioc\meat\GSEABase.Rcheck\00_pkg_src\GSEABase\chm\GSEABase.chm


Compile time: 0 minutes, 0 seconds
19	Topics
358	Local links
3	Internet links
1	Graphic


Created e:\biocbld\bbs-2.2-bioc\meat\GSEABase.Rcheck\00_pkg_src\GSEABase\chm\GSEABase.chm, 62,959 bytes
Compression decreased file by 138,789 bytes.
  adding MD5 sums

* DONE (GSEABase)