git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/crlmm@53579 bc3139a8-67e5-0310-9ffc-ced21a209358
... | ... |
@@ -5,6 +5,7 @@ |
5 | 5 |
\documentclass{article} |
6 | 6 |
\usepackage{graphicx} |
7 | 7 |
\usepackage{natbib} |
8 |
+\usepackage{url} |
|
8 | 9 |
\newcommand{\Rfunction}[1]{{\texttt{#1}}} |
9 | 10 |
\newcommand{\Rmethod}[1]{{\texttt{#1}}} |
10 | 11 |
\newcommand{\Rcode}[1]{{\texttt{#1}}} |
... | ... |
@@ -33,8 +34,11 @@ options(continue=" ", width=70) |
33 | 34 |
|
34 | 35 |
\begin{abstract} |
35 | 36 |
This vignette estimates copy number for HapMap samples on the |
36 |
- Affymetrix 6.0 platform. See \citep{Scharpf2010} for additional |
|
37 |
- details. |
|
37 |
+ Affymetrix 6.0 platform. See \citep{Scharpf2010} for details |
|
38 |
+ regarding the methodology implemented in \crlmm{}. In addition, a |
|
39 |
+ compendium describing copy number analysis using the \crlmm{} |
|
40 |
+ package is available from the author's website: |
|
41 |
+ \url{http://www.biostat.jhsph.edu/~rscharpf/crlmmCompendium/index.html}. |
|
38 | 42 |
|
39 | 43 |
\end{abstract} |
40 | 44 |
|
... | ... |
@@ -6,6 +6,7 @@ |
6 | 6 |
\alias{phiA} |
7 | 7 |
\alias{phiB} |
8 | 8 |
\alias{totalCopynumber} |
9 |
+\alias{rawCopynumber} |
|
9 | 10 |
|
10 | 11 |
\title{ |
11 | 12 |
|
... | ... |
@@ -28,6 +29,7 @@ nuB(object) |
28 | 29 |
phiA(object) |
29 | 30 |
phiB(object) |
30 | 31 |
totalCopynumber(object,...) |
32 |
+rawCopynumber(object,...) |
|
31 | 33 |
} |
32 | 34 |
|
33 | 35 |
\arguments{ |
... | ... |
@@ -64,7 +66,7 @@ totalCopynumber(object,...) |
64 | 66 |
|
65 | 67 |
CA and CB return matrices of allele-specific copy number. |
66 | 68 |
|
67 |
- totalCopynumber returns a matrix of CA+CB. |
|
69 |
+ totalCopynumber (or rawCopynumber) returns a matrix of CA+CB. |
|
68 | 70 |
|
69 | 71 |
} |
70 | 72 |
|