~ubuntu-branches/ubuntu/utopic/r-bioc-cummerbund/utopic

« back to all changes in this revision

Viewing changes to inst/reports/runReport.Rnw

  • Committer: Package Import Robot
  • Author(s): Andreas Tille
  • Date: 2013-12-28 17:17:25 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20131228171725-polmzo8go4m371c6
Tags: 2.4.1-1
* New upstream version
* debian/rules: Remove useless creation of ${R-Depends}
* debian/control: Versioned Build-Depends: r-base-dev (>= 3.0)
* debian/README.test: add hint how to test the package

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
%
 
2
%
 
3
%
 
4
%
 
5
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
6
%\SweaveOpts{prefix.string=graphics/plot}
 
7
\documentclass[10pt]{article}
 
8
\usepackage{amsmath}
 
9
\usepackage[authoryear,round]{natbib}
 
10
\usepackage{hyperref}
 
11
\hypersetup{
 
12
    colorlinks,
 
13
    citecolor=black,
 
14
    filecolor=black,
 
15
    linkcolor=red,
 
16
    urlcolor=black
 
17
}
 
18
\usepackage{theorem}
 
19
\usepackage{float}
 
20
\usepackage{ifthen}
 
21
\usepackage[OT1]{fontenc}
 
22
 
 
23
\newcommand{\R}{{\textsf{R}}}
 
24
\newcommand{\code}[1]{{\texttt{#1}}}
 
25
\newcommand{\term}[1]{{\emph{#1}}}
 
26
\newcommand{\Rpackage}[1]{\textsf{#1}}
 
27
\newcommand{\Rfunction}[1]{\texttt{#1}}
 
28
\newcommand{\Robject}[1]{\texttt{#1}}
 
29
\newcommand{\Rclass}[1]{{\textit{#1}}}
 
30
\newcommand{\Rmethod}[1]{{\textit{#1}}}
 
31
\newcommand{\Rfunarg}[1]{{\textit{#1}}}
 
32
 
 
33
\bibliographystyle{plainnat}
 
34
\title{cummeRbund Run Report}
 
35
 
 
36
\date{}
 
37
 
 
38
\begin{document}
 
39
<<init, echo=FALSE>>=
 
40
options(width=65)
 
41
library(cummeRbund)
 
42
library(xtable)
 
43
cuff<-readCufflinks(dir="../",dbfile="cuffData.db")
 
44
 
45
 
 
46
\maketitle
 
47
 
 
48
\tableofcontents
 
49
 
 
50
\section{Run Parameters}
 
51
<<>>=
 
52
runInfo(cuff)
 
53
@
 
54
\section{Samples}
 
55
 
 
56
\subsection{Condition Information}
 
57
 
 
58
\subsection{Replicate Information}
 
59
<<results=tex>>=
 
60
xtable(replicates(cuff),caption="Replicate information")
 
61
@
 
62
 
 
63
\section{Gene information}
 
64
 
 
65
\section{Model statistics}
 
66
 
 
67
 
 
68
\section{Differential Expression Analysis}
 
69
 
 
70
\section{Condition Specificity}
 
71
 
 
72
%Put \subsection loop here for specificity on each condition including top genes?
 
73
 
 
74
 
 
75
\clearpage
 
76
 
 
77
\section{Session info}
 
78
<<label=close_connection,echo=FALSE>>=
 
79
end<-sqliteCloseConnection(cuff@DB)
 
80
@
 
81
 
 
82
<<session>>=
 
83
sessionInfo()
 
84
@
 
85
 
 
86
\end{document}