16 May 19:44
Bug in base.profiles.nc (gcrma)?
From: Heidi Dvinge <heidi@...>
Subject: Bug in base.profiles.nc (gcrma)?
Newsgroups: gmane.science.biology.informatics.conductor
Date: 2008-05-16 17:48:31 GMT
Subject: Bug in base.profiles.nc (gcrma)?
Newsgroups: gmane.science.biology.informatics.conductor
Date: 2008-05-16 17:48:31 GMT
Hi,
I'm trying to use gcrma with affinity.source= "local", and a predefined
set of NCprobes with gcrma v. 2.12.0. However, I'm running into problems
with the sub-function base.profiles.nc. I think that where it says:
if (length(seqs) < length(NCprobe)) {
cat("\nNote: some of your negative control probes do not have
sequence information\n")
subIndex2 <- match(c(xy2indices(p$x, p$y, cdf = cdfpackagename),
xy2indices(p$x, p$y + 1), cdf = cdfpackagename),
NCprobe)
subIndex2 <- subIndex2[!is.na(subIndex2)]
bgy <- bgy[!is.na(subIndex1), ]
}
isn't is supposed to be:
if (length(seqs) < length(NCprobe)) {
cat("\nNote: some of your negative control probes do not have
sequence information\n")
subIndex2 <- match(c(xy2indices(p$x, p$y, cdf = cdfpackagename),
xy2indices(p$x, p$y + 1, cdf = cdfpackagename)), #
moving the ")" here
NCprobe)
subIndex2 <- subIndex2[!is.na(subIndex2)]
bgy <- bgy[!is.na(subIndex1), ]
}
Thanks
(Continue reading)
RSS Feed