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 119 120 121 122 123 124 125 126 127 128 129 130 131 132
|
\documentclass[a4paper]{article}
\usepackage{ifthen}
\usepackage{geometry}
\geometry{
includeheadfoot,
margin=2.54cm
}
\usepackage{makeidx}
\usepackage{fancyhdr}
\usepackage{graphicx}
\usepackage{multicol}
\usepackage{float}
\usepackage{alltt}
\usepackage{newtxtext, newtxmath}
% since 1.62 newtxmath defines Bbbk for the small double bold k
% this is also defined in amssymb which is loaded by
% doxygen.sty later. Undefine it here.
% actually newtxmath and amssymb are incompatible. we should choose one!!!
\let\Bbbk\relax
% newtxtext loads textcomp only in newer versions and with differing options between versions
% @commands need to be enclosed by makeatletter and makeatother
\makeatletter
\@ifpackageloaded{textcomp}
{} % do nothing if loaded by the previous package to avoid option clashes
{\usepackage{textcomp}} % otherwise load the package
\makeatother
\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}
\newcommand{\+}{\discretionary{\mbox{\scriptsize$\hookleftarrow$}}{}{}}
\setlength\parindent{0pt}
\begin{document}
\begin{titlepage}
\vspace*{7cm}
\begin{center}
{\Large TOPP and TOPPView Tutorial\\[1ex]\large Version: @CF_OPENMS_PACKAGE_VERSION_FULLSTRING@ }\\
\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}
\pagebreak
\input{TOPP_example_qualitycontrol}
\end{document}
|