Bioconductor Changelog
   


About
Click here to learn more about this blog.


Packages
Click on a link
for updates to that package only.
ABarray
ACME
AffyCompatible
AffyExpress
AnnBuilder
AnnotationDbi
ArrayExpress
BAC
BCRANK
BGmix
BSgenome
BioMVCClass
Biobase
BiocCaseStudies
Biostrings
BiostringsCinterfaceDemo
BufferedMatrix
BufferedMatrixMethods
CALIB
CGHbase
CGHcall
CGHregions
CMA
CORREP
Category
CoCiteStats
DEDS
DFP
DNAcopy
DynDoc
EBImage
EBarrays
GEOmetadb
GEOquery
GGBase
GGexplorer
GGtools
GLAD
GOstats
GSEABase
GSEAlm
GeneMeta
GeneR
GeneRfold
GeneSelector
GeneSpring
GeneTraffic
GeneticsBase
GeneticsDesign
GeneticsPed
GenomeGraphs
GlobalAncova
GraphAT
GraphAlignment
HELP
HEM
Harshlight
Heatplus
HilbertCurveDisplay
IRanges
ITALICS
Icens
KEGGSOAP
LBE
LMGene
LPE
LPEadj
MANOR
MCRestimate
MLInterfaces
MVCClass
MantelCorr
MassSpecWavelet
MeasurementError.cor
MergeMaid
Mfuzz
MiPP
OCplus
OLIN
OLINgui
OrderedList
OutlierD
PCpheno
PGSEA
PROcess
RBGL
RBioinf
RDocBook
RLMM
RMAGEML
ROC
RSNPper
RWebServices
RankProd
Ratlpow
RbcBook1
Rdbi
RdbiPgSQL
Rdisop
RefPlus
Resourcerer
Rgraphviz
Ringo
Rintact
RpsiXML
Rredland
Rrsat
Rswub
Rtreemix
Ruuid
SAGx
SBMLR
SIM
SLGI
SLqPCR
SMAP
SNPchip
ScISI
SemSim
ShortRead
TypeInfo
VanillaICE
XDE
aCGH
adSplit
affxparser
affy
affyContam
affyMvout
affyPLM
affyPara
affyQCReport
affycomp
affycoretools
affyio
affylmGUI
affypdnn
altcdfenvs
annaffy
annotate
annotationTools
apComplex
aroma.light
arrayMagic
arrayQuality
arrayQualityMetrics
beadarray
beadarraySNP
bgafun
bgx
bioDist
biocGraph
biocViews
biomaRt
bridge
buildBioC
cellHTS
cellHTS2
cghMCR
clusterStab
codelink
convert
copa
cosmo
cosmoGUI
ctc
daMA
diffGeneAnalysis
domainsignatures
dualKS
ecolitk
edd
exonmap
explorase
externalVector
factDesign
fbat
fdrame
flowClust
flowCore
flowDB
flowQ
flowUtils
flowViz
gaga
gaggle
gcrma
genArise
geneRecommender
genefilter
geneplotter
globaltest
goCluster
goProfiles
goTools
gpls
graph
hexbin
hopach
hypergraph
idiogram
impute
iterativeBMA
iterativeBMAsurv
keggorth
lapmix
limma
limmaGUI
logicFS
lumi
maCorrPlot
maDB
maSigPro
maanova
macat
made4
maigesPack
makePlatformDesign
makecdfenv
marray
matchprobes
mdqc
metaArray
miRNApath
minet
multiscan
multtest
ncdfExts
nem
nnNorm
nudge
occugene
oligo
oligoClasses
oneChannelGUI
ontoTools
pairseqsim
pamr
panp
pathRender
pcaMethods
pcot2
pdInfoBuilder
pdmclass
pgUtils
pickgene
pkgDepTools
plateCore
plgem
plier
plw
ppiStats
prada
preprocessCore
prism
puma
quantsmooth
qvalue
rHVDM
rama
rbsurv
reb
rflowcyt
rhdf5
rsbml
rtracklayer
safe
sagenhaft
seqLogo
sigPathway
siggenes
simpleaffy
simulatorAPMS
sizepower
smoothMiner
snapCGH
snpMatrix
spikeLI
spkTools
splicegear
splots
spotSegmentation
sscore
ssize
stam
stepNorm
tilingArray
timecourse
tkWidgets
topGO
twilight
vbmp
vsn
weaver
webbioc
widgetInvoke
widgetTools
xcms
xcmsGUI
xps
yaqcaffy


Subscribe
Subscribe to the Bioconductor Changlog.


       
Tue, 11 Mar 2008

AnnotationDbi
Adds a vignette for SQLForge, and some bug fixes.
This checkin adds a vignette for the newer SQLForge functions as well
as some bug fixes for some of the populate functions so that they can
correctly build their databases in the specified directories. Also, a
much shorter example file was added to cut down on the time needed to
check the new vignette.

[/AnnotationDbi] permanent link

annaffy
Small bugfix to aafGO(). The id slot of the resulting aafGO objects was incorrectly being set to the probeset ID rather than the GO ID.

[/annaffy] permanent link

flowCore
adding documentation for density filters

[/flowCore] permanent link

snapCGH
altered DNAcopy code to reflect changes in that package

[/snapCGH] permanent link

hypergraph
Fixed a matrix subscripting bug and an unlist related warning.
be more careful with parameter names

[/hypergraph] permanent link

BCRANK
Added the new package BCRANK to the repository.

[/BCRANK] permanent link

cellHTS2
Better colors

[/cellHTS2] permanent link

Biostrings
Reworked the class hierarchy:
- Added the .IRanges class (not exported): now the IRanges class is just
the exported version of the .IRanges class (it derives directly from
it without any additional slot). Replacement methods "start<-",
"end<-" and "width<-" are only defined for IRanges objects so the user
cannot use them to modify a .IRanges object. Therefore the "safe" .IRanges
class can be used to make the BStringSet class (and family) "safe" too by
deriving it from .IRanges and not IRanges (see below).
- Reorganized the hierarchy of the BString class and subclasses by adding
the XString virtual class: now the BString, DNAString, RNAString and
AAString classes are all direct XString subtypes with no additional slots.
Most importantly, they are all at the same level in the new hierarchy
i.e. DNAString, RNAString and AAString objects are NOT BString objects
anymore.
- Reorganized the BStringSet and BStringList families of classes in a
similar way by adding the XStringSet and XStringList virtual classes.
Also now the XStringSet class derives from the .IRanges class instead of
the IRanges class so it is "safe".
- Added the XString() and XStringSet() versatile constructors. The BString()
and BStringSet() constructors and families are now based on them.
- Renamed subBString() -> subXString() and deprecated subBString().
No version bump yet.

[/Biostrings] permanent link

ArrayExpress
Add the phenoData to Affy objects created with ArrayExpress and add the save argument to the ArrayExpress2 function

[/ArrayExpress] permanent link

oneChannelGUI
Removing a bug related to limma topTable generation with annotation using yeast2 arrays

[/oneChannelGUI] permanent link

SNPchip
slight change to oligoHowTo vignette

[/SNPchip] permanent link

VanillaICE
allow option to plot vertical dashed lines for breakpoints. Updated the fit example data

[/VanillaICE] permanent link

arrayQualityMetrics
- Modify the boxplot.stats function so that it only detect as outlier the value larger than the others
- Move the on.exit at the right place of the code for AffyBatch
- Correct the logtransform function

[/arrayQualityMetrics] permanent link

Biobase
checkClass unit test

[/Biobase] permanent link