\documentclass[11pt]{article} \usepackage[margin=1in]{geometry} \geometry{letterpaper} \usepackage[parfill]{parskip} \usepackage{graphicx} \usepackage{subfig} \usepackage{amssymb} \usepackage{epstopdf} \usepackage{amsmath} \usepackage{dsfont} \usepackage{tikz} \usetikzlibrary{positioning,shapes.geometric} \usepackage{mathrsfs} \usepackage{hyperref} \usepackage{enumerate} \DeclareGraphicsRule{.tif}{png}{.png}{`convert #1 `dirname #1`/`basename #1 .tif`.png} \usepackage{color} \usepackage{placeins} % \VignetteIndexEntry{Vignette for R package asmn} % \VignetteDepends{asmn} % \VignetteKeyword{normalization} \usepackage{setspace} \usepackage{cite} \usepackage{authblk} \usepackage{Sweave} \title{Vignette for {\tt R} package {\tt asmn}} \author[1]{Anna Decker} \author[2]{Paul Yousefi} \affil[1]{University of California, Berkeley, Division of Biostatistics} \affil[2]{University of California, Berkeley, Department of Environmental Health Sciences} \date{\today} \begin{document} \maketitle \section{Introduction} The {\tt asmn} package performs the all-sample mean normalization procedure for Illumina BeadArray 450k methylation data. This package does not contain a complete pipeline for normalizing raw data, but the functions do take data in the {\tt MethyLumiSet} format for integration with existing pipelines for analysis of methylation data. The functions can also take raw experimental and control data as well as feature information from BeadStudio, which can be read in as {\tt data.frames}. The {\tt asmn} package is loaded by <>= library(asmn) @ To access the help files, type {\tt help(package = asmn)} in the {\tt R} console. The example data come from the {\tt TCGAMethylation450k} package, and are loaded as a {\tt MethyLumiSet} object. The procedure to load the data is from a vignette for the {\tt methylumi} package. <