MANOR: information about id.rep
1
0
Entering edit mode
@ballardini-michela-2028
Last seen 9.7 years ago
An embedded and charset-unspecified text was scrubbed... Name: not available Url: https://stat.ethz.ch/pipermail/bioconductor/attachments/20070524/ 5727a338/attachment.pl
• 587 views
ADD COMMENT
0
Entering edit mode
@pierre-neuvial-2162
Last seen 9.7 years ago
Hello Michela, Ballardini Michela wrote: > ... > > I have two questions: > > 1. what?s na.rm? - The parameter "na.rm" stands for "remove non-assigned values (NA)", it is quite standard in R, consider the following example: > x <- c(NA, 1, 2, 3) > median(x) [1] NA > median(x, na.rm=TRUE) [1] 2 >From the help on function median: "na.rm: a logical value indicating whether 'NA' values should be stripped before the computation proceeds." In your case the parameter na.rm is passed to function 'FUN' when you call norm.arrayCGH: > arrayAB.norm <- norm.arrayCGH(arrayAB, var="LogRatio", FUN=median, na.rm=TRUE) That is, the log-ratio of each of your 3588 clones will be calculated as the median of the corresponding spots on the array, and NAs will be discarded before the calculation. > 2. where can I found the ?single target value computed for all the > replicates?? Is it arrayAB.norm$cloneValues$LogRatio? Yes ! arrayAB.norm$cloneValues$LogRatio is a vector of length 3588 with normalised log-ratios aggregated by clone. FYI, arrayAB.norm$arrayValues$LogRatioNorm is a vector of length 21632 with normalised log-ratios *before* aggregation by clone. Hope this helps, Pierre.
ADD COMMENT

Login before adding your answer.

Traffic: 392 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6