Skip to content
Prev 1816 / 21307 Next

[Bioc-devel] Biobase/IRanges annotation maksing

Hi,

I seem to observe to observe an odd side effect of the ":::" operator. 
Can anyone reproduce this?
	Best wishes	
	Wolfgang


library("IRanges")
annotation
showMethods("annotation")
Biobase:::annotation
showMethods("annotation")




 > library("IRanges")

Attaching package: 'IRanges'


	The following object(s) are masked from package:base :

	 cbind,
	 order,
	 pmax,
	 pmax.int,
	 pmin,
	 pmin.int,
	 rbind,
	 rep.int,
	 table

 > annotation
standardGeneric for "annotation" defined from package "IRanges"

function (x, ...)
standardGeneric("annotation")
<environment: 0x26b8da0>
Methods may be defined for arguments: x
Use  showMethods("annotation")  for currently available ones.

 > showMethods("annotation")
Function: annotation (package IRanges)
x="AnnotatedList"

 > Biobase:::annotation
standardGeneric for "annotation" defined from package "Biobase"

function (object)
standardGeneric("annotation")
<environment: 0x2920538>
Methods may be defined for arguments: object
Use  showMethods("annotation")  for currently available ones.

 > showMethods("annotation")

Function "annotation":
  <not a generic function>

 > sessionInfo()
R version 2.9.0 Under development (unstable) (2009-02-18 r47956)
x86_64-unknown-linux-gnu

locale:
LC_CTYPE=C;LC_NUMERIC=C;LC_TIME=C;LC_COLLATE=C;LC_MONETARY=C;LC_MESSAGES=en_GB.UTF-8;LC_PAPER=C;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=C;LC_IDENTIFICATION=C

attached base packages:
[1] stats     graphics  grDevices datasets  utils     methods   base

other attached packages:
[1] IRanges_1.1.38 fortunes_1.3-6

loaded via a namespace (and not attached):
[1] Biobase_2.3.10
Martin Morgan wrote: