Skip to content.

bioconductor.org

Bioconductor is an open source and open development software project
for the analysis and comprehension of genomic data.

Sections

lab1Basics.R

################################################### ### chunk number 1: wd ################################################### getwd()

################################################### ### chunk number 2: loadPacks ################################################### library(Biobase) library(tkWidgets) library(genefilter)

################################################### ### chunk number 3: exprSet ################################################### slotNames("exprSet")

################################################### ### chunk number 4: loadData ################################################### library(golubEsets) data(golubTrain) data(golubTest) data(golubMerge)

################################################### ### chunk number 5: golubTrain ################################################### class(golubTrain) slotNames(golubTrain) golubTrain

################################################### ### chunk number 6: phenoData1 ################################################### phenoTrain<-phenoData(golubTrain) class(phenoTrain) slotNames(phenoTrain) varLabels(phenoTrain) pData(phenoTrain)

################################################### ### chunk number 7: phenoData2 ################################################### table(phenoTrain$ALL.AML) table(golubTest$ALL.AML)

################################################### ### chunk number 8: subset ################################################### golubTrain[1:10,1:3]

################################################### ### chunk number 9: filter ################################################### fg <- kOverA(k=10, A=10000) flist <- filterfun(fg) ans <- genefilter(golubTrain, flist) sum(ans)

News
2008-05-01

BioC 2.2, consisting of 260 packages and designed to work with R 2.7.0, was released today.

2008-03-04

BioConductor release scheduled for 30 April 2008.