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
|
\section{Profile construction steps, in detail}
\label{section:pipeline}
\setcounter{footnote}{0}
\begin{description}
\item [\textbf{Read and validate input alignment}]
\item [\textbf{Calculate relative sequence weights}]
\item [\textbf{Define sequence fragments}]
\item [\textbf{Determine model architecture}]
\item [\textbf{Calculate effective sequence number}]
\item [\textbf{Parameterize the model}]
\item [\textbf{Transfer annotation from MSA to model}]
\item [\textbf{Calibrate the model}]
\item [\textbf{Create the ``post'' MSA}]
\end{description}
In more detail, each step is described in the following
subsections.\footnote{To study the relevant source code, start with
\ccode{p7\_builder.c::p7\_Builder()}.}
\subsection{Alignment input and validation}
HMMER is designed to work on input
\subsection{Relative sequence weighting}
\subsection{Sequence fragment definition}
\subsection{Model architecture determination}
\subsection{Effective sequence number (absolute sequence weights)}
\subsection{Model parameterization}
\subsection{Annotation transfer from MSA to model}
\subsection{Model calibration}
\subsection{Create the ``post'' MSA}
|