* collab:
update Rds
revert imputeGender to original api
bug fix for calculateRBafCNSet
update calculateRBafCNSet
Fix documentation for crlmmCopynumber -- added argument fitLinearModel
update crlmmGT2
Put rm(DD, ...) further down in crlmmGT2 function
remove message about cloning A and B
Open and close callsPr and callsGt in crlmmGT2 (when args not missing)
revert removed indices loaded in crlmmGT2
snprmaAffy no longer writes normalized intensities to calls and callProbability slots. crlmmGT2 takes arguments callsGt and callsPr. When present, crlmmGT2 will not overwrite A and B.
explicit coercion to matrix in imputeGender
Assign imputed gender to cnSet$gender within crlmmGT2 function.
Change sum(SNR > SNRmin) to sum(SNR[] > SNRmin) in imputeGender
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/crlmm@69450 bc3139a8-67e5-0310-9ffc-ced21a209358
1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,49 @@ |
1 |
+\name{genotypeAffy} |
|
2 |
+\alias{genotypeAffy} |
|
3 |
+\title{Genotype Affymetrix CEL files} |
|
4 |
+\description{Assign diallelic genotypes at polymorphic markers} |
|
5 |
+\usage{ |
|
6 |
+genotypeAffy(cnSet, SNRMin = 5, recallMin = 10, recallRegMin = 1000, gender = NULL, badSNP = 0.7, returnParams = TRUE, verbose = TRUE) |
|
7 |
+} |
|
8 |
+ |
|
9 |
+\arguments{ |
|
10 |
+ \item{cnSet}{ |
|
11 |
+ An object of class \code{CNSet} |
|
12 |
+ } |
|
13 |
+ \item{SNRMin}{ |
|
14 |
+ See \code{\link{crlmm}} |
|
15 |
+ } |
|
16 |
+ \item{recallMin}{ |
|
17 |
+ See \code{\link{crlmm}} |
|
18 |
+} |
|
19 |
+ \item{recallRegMin}{ |
|
20 |
+ See \code{\link{crlmm}} |
|
21 |
+} |
|
22 |
+ \item{gender}{ |
|
23 |
+ See \code{\link{crlmm}} |
|
24 |
+} |
|
25 |
+ \item{badSNP}{ |
|
26 |
+ See \code{\link{crlmm}} |
|
27 |
+} |
|
28 |
+ \item{returnParams}{ |
|
29 |
+ See \code{\link{crlmm}} |
|
30 |
+} |
|
31 |
+ \item{verbose}{ |
|
32 |
+ Logical. |
|
33 |
+} |
|
34 |
+} |
|
35 |
+\details{ |
|
36 |
+ Wrapper for crlmm genotyping. |
|
37 |
+} |
|
38 |
+\value{ |
|
39 |
+ Returns logical. SNP genotypes and confidence scores are written to |
|
40 |
+ \code{ff_matrix} objects. |
|
41 |
+} |
|
42 |
+ |
|
43 |
+\author{ |
|
44 |
+R.Scharpf |
|
45 |
+} |
|
46 |
+\seealso{ |
|
47 |
+ \code{\link{crlmm}}, \code{\link{calls}}, \code{\link{confs}} |
|
48 |
+} |
|
49 |
+\keyword{classif} |
|
0 | 50 |
\ No newline at end of file |