Description Usage Arguments Value Author(s) Examples
Check that the foreground and backgruond intensities are stored in the same order as provided in the first column of target file.
| 1 | checkTargetInfo(mraw)
 | 
| mraw | Object of class  | 
A logical value. This function returns "TRUE" if the first column from the Target information is the same order as the foreground and backgruond intensities.
Yee Hwa (Jean) Yang
| 1 2 3 4 5 6 7 8 9 10 11 12 | datadir <- system.file("swirldata", package="marray")
swirl.targets <- read.marrayInfo(file.path(datadir, "SwirlSample.txt"))
data(swirl)
swirl@maTargets <- swirl.targets
checkTargetInfo(swirl)
checkTargetInfo(swirl[, 2:4])
## reorder
swirl@maTargets <- swirl.targets[c(2:4, 1),]
checkTargetInfo(swirl)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.