1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
|
\documentclass[a4paper]{article}
\usepackage{a4wide}
\usepackage{makeidx}
\usepackage{fancyhdr}
\usepackage{graphicx}
\usepackage{multicol}
\usepackage{float}
\usepackage{textcomp}
\usepackage{alltt}
\usepackage{times}
\ifx\pdfoutput\undefined
\usepackage[ps2pdf,
pagebackref=true,
colorlinks=true,
linkcolor=blue
]{hyperref}
\usepackage{pspicture}
\else
\usepackage[pdftex,
pagebackref=true,
colorlinks=true,
linkcolor=blue
]{hyperref}
\fi
\usepackage{doxygen}
\makeindex
\setcounter{tocdepth}{1}
\renewcommand{\footrulewidth}{0.4pt}
% Filippo Rusconi <lopippo@debian.org>: backport of code from "Aiche,
% Stephan" <Stephan.Aiche@fu-berlin.de> to fix the failing building of
% this documentation following a change in the way Doxygen converts
% doc to LaTeX.
\newcommand{\+}{\discretionary{\mbox{\scriptsize$\hookleftarrow$}}{}{}}
\begin{document}
\begin{titlepage}
\vspace*{7cm}
\begin{center}
{\Large TOPP and TOPPView Tutorial\\[1ex]\large Version: @CF_OPENMS_PACKAGE_VERSION@ }\\
\end{center}
\end{titlepage}
\pagenumbering{arabic}
\setcounter{tocdepth}{2}
\tableofcontents
\pagebreak
\section{Concepts}
\input{TOPP_concepts}
\pagebreak
\section{TOPPView main interface}
\input{TOPPView_introduction}
\pagebreak
\input{TOPPView_views}
\pagebreak
\input{TOPPView_modes}
\pagebreak
\input{TOPPView_analysis}
\pagebreak
\input{TOPPView_editing}
\pagebreak
\input{TOPPView_hotkeys}
\pagebreak
\section{Calling TOPP tools from TOPPView}
\input{TOPPView_smoothing}
\pagebreak
\input{TOPPView_baseline_reduction}
\pagebreak
\input{TOPPView_peakpicking}
\pagebreak
\input{TOPPView_feature_detection_centroided}
\pagebreak
\section{Using TOPPAS to create and run TOPP pipelines}
\input{TOPPAS_general}
\pagebreak
\input{TOPPAS_interface}
\pagebreak
\input{TOPPAS_examples}
\section{Advanced Users: Tips \& Tricks}
\input{TOPP_advanced}
\pagebreak
\section{Scripting with TOPP}
\input{TOPP_general}
\pagebreak
\input{TOPP_example_handling}
\pagebreak
\input{TOPP_example_signalprocessing}
\pagebreak
\input{TOPP_example_calibration}
\pagebreak
\input{TOPP_example_mapalignment}
\pagebreak
\input{TOPP_example_featuredetection}
\pagebreak
\input{TOPP_example_featuregrouping}
\pagebreak
\input{TOPP_example_id}
\pagebreak
\input{TOPP_example_ppp}
\pagebreak
\input{TOPP_example_convert}
\end{document}
|