Description Usage Arguments Value Author(s) References See Also Examples
View source: R/dataManagementFunctions.r
Finds unique genomic location information.
1 | uniqGenomicInfo(chr, bpstart, bpend, verbose = FALSE)
|
chr |
Object of class |
bpstart |
Object of class |
bpend |
Object of class |
verbose |
Logical indicator: should intermediate output be printed on the screen? |
An object of class list
. Each list item is a four-column matrix with the matched features information. The first column contains feature numbers of features with identical genomic location.
The second, third and fourth column contain the chromosome, start and end base pair information of the features (should be the same for each feature).
Wessel N. van Wieringen: w.vanwieringen@vumc.nl
Van Wieringen, W.N., Unger, K., Leday, G.G.R., Krijgsman, O., De Menezes, R.X., Ylstra, B., Van de Wiel, M.A. (2012), "Matching of array CGH and gene expression microarray features for the purpose of integrative analysis", BMC Bioinformatics, 13:80.
ExpressionSet2weightedSubset
, cghCall2weightedSubset
1 2 3 4 5 6 7 8 9 10 | # load data
data(pollackGE16)
# extract genomic information from ExpressionSet-object
chr <- fData(pollackGE16)[,1]
bpstart <- fData(pollackGE16)[,2]
bpend <- fData(pollackGE16)[,3]
# find unique genomic locations
uniqInfo <- uniqGenomicInfo(chr, bpstart, bpend, verbose = FALSE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.