Description Usage Arguments Details Value Author(s) See Also Examples
One-step reading of BPMAP and CEL files, using Fusion SDK and affxparser.
1 | BPMAPCelParser(BPMAPFileName, CelFileNames, genomeName=NULL, verbose=FALSE,groupName="",seqName="")
|
BPMAPFileName |
String containing the full filename of the BPMAP file. |
CelFileNames |
Vector of strings containing full filenames of CEL files. i.e. c("F1.CEL", "F2.CEL" |
genomeName |
String containing the genome name used. |
groupName |
String containing the group of genome name used. |
seqName |
String containing the group of sequence name (e.g. chromosome) used. |
verbose |
If verbose is selected, the progress and additional information will be displayed while the function is running |
This function returns an object of class tilingSet
containing all necessary information: probe sequences, genomic positions, chromosomes as well as the probe intensities.
An object of class tilingSet
.
Charles Cheung, cykc@interchange.ubc.ca and Raphael Gottardo, rgottard@fhcrc.org Arnaud Droit, arnaud.droit@crchuq.ulaval.ca
affyTile
for information about the package.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | ####################################################
#The data are in inst/doc folder in rMAT package
####################################################
pwd<-"" #INPUT FILES- BPMAP, ARRAYS, etc.
path<- system.file("extdata", "Sc03b_MR_v04_10000.bpmap",package="rMAT")
bpmapFile<-paste(pwd,path,sep="")
pathCEL<- system.file("extdata", "Swr1WTIP_Short.CEL",package="rMAT")
arrayFile<-paste(pwd,c(pathCEL),sep="")
# Show the all the different sequences
ReadBPMAPAllSeqHeader(bpmapFile)
# create a tiling Set from the corresponding data
# This will only grep the sequences with Sc
ScSet<-BPMAPCelParser(bpmapFile, arrayFile, verbose=FALSE,groupName="Sc")
# show the object
show(ScSet)
# summarize its content
summary(ScSet)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.