<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://bionmr.unl.edu/mediawiki/mediawiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Chris</id>
	<title>Powers Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://bionmr.unl.edu/mediawiki/mediawiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Chris"/>
	<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php/Special:Contributions/Chris"/>
	<updated>2026-04-19T22:59:06Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.38.2</generator>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=815</id>
		<title>Generating docs</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=815"/>
		<updated>2021-06-03T23:44:52Z</updated>

		<summary type="html">&lt;p&gt;Chris: /* Function file Texinfo */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MVAPACK&#039;s uses [https://www.gnu.org/software/texinfo/ GNU Texinfo] for documentation. The end goal is to generate a .pdf file that contains all of the information for each function as well as general usage, pipelines and examples. This guide is &#039;&#039;&#039;NOT&#039;&#039;&#039; designed to cover all the details of writing GNU Texinfo and its syntax, but just how the documentation for this project works and how to build new pdf&#039;s for future releases.&lt;br /&gt;
&lt;br /&gt;
In general there are two parts to documentation source, being the Texinfo found in each of the files contained within &amp;lt;code&amp;gt; mvapack/inst/ &amp;lt;/code&amp;gt; and the main file found in &amp;lt;code&amp;gt; mvapack/doc/mvapack.tex &amp;lt;/code&amp;gt;. This page covers how to change these types of Texinfo entries as well as making the .pdf itself.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Making the pdf=&lt;br /&gt;
&lt;br /&gt;
To make the documentation, first &amp;lt;code&amp;gt; cd &amp;lt;/code&amp;gt; into your &amp;lt;code&amp;gt; mvapack/ &amp;lt;/code&amp;gt; directory. Next, you will run the following command:&lt;br /&gt;
&lt;br /&gt;
 &amp;gt; bin/doc&lt;br /&gt;
&lt;br /&gt;
This will build the documentation and save it to &amp;lt;code&amp;gt; mvapack/doc/mvapack.pdf &amp;lt;/code&amp;gt;, assuming the build finished successfully. &lt;br /&gt;
&lt;br /&gt;
=Function file Texinfo=&lt;br /&gt;
&lt;br /&gt;
Whenever a new function file is made in &amp;lt;code&amp;gt; mvapack/inst/ &amp;lt;/code&amp;gt;, the following code should be copy and pasted &lt;br /&gt;
to the top of the function file, with your name and email subbed in below. This first part is just the licensing&lt;br /&gt;
agreement/disclaimer. It does not change from file to file but changes from user to user.&lt;br /&gt;
&lt;br /&gt;
 ## Copyright (C) 2021 University of Nebraska Board of Regents.&lt;br /&gt;
 ## Written by FIRSTNAME LASTNAME &amp;lt;uname@huskers.unl.edu&amp;gt;.&lt;br /&gt;
 ##&lt;br /&gt;
 ## This program is free software; you can redistribute it and/or modify&lt;br /&gt;
 ## it under the terms of the GNU General Public License as published by&lt;br /&gt;
 ## the Free Software Foundation; either version 3 of the License, or&lt;br /&gt;
 ## (at your option) any later version.&lt;br /&gt;
 ##&lt;br /&gt;
 ## This program is distributed in the hope that it will be useful,&lt;br /&gt;
 ## but WITHOUT ANY WARRANY; without even the implied warranty of&lt;br /&gt;
 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the&lt;br /&gt;
 ## GNU General Public License for more details.&lt;br /&gt;
 ##&lt;br /&gt;
 ## You should have received a copy of the GNU General Public License&lt;br /&gt;
 ## along with this program; If not, see &amp;lt;http://www.gnu.org/licenses/&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
This second part is different for each file &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 ## -*- texinfo -*-&lt;br /&gt;
 ## @anchor{create_eics}&lt;br /&gt;
 ## @deftypefn {Function File} create_eics (@var{fname}, @var{outdir}, @var{mz_min}=50, @var{mz_max}=2000, @var{eic_width}=0.05, @var{min_intensity}=1000, @var{filt_type}=&#039;base_peak&#039;, @var{cutoff}=0.001)&lt;br /&gt;
 ##&lt;br /&gt;
 ## Creates extracted ion chromatograms (EICs) from the data in the file specified by @var{fname}. &lt;br /&gt;
 ## If and when multiple data points exist at the same retention time, the one with higher intensity will be kept.&lt;br /&gt;
 ## This code relies on C++ bindings that must be compiled for this functionality to work.&lt;br /&gt;
 ## Detail on the input parameters is provided below:&lt;br /&gt;
 ## &lt;br /&gt;
 ## - EICs will be made from @var{mz_min} to @var{mz_max}&lt;br /&gt;
 ##&lt;br /&gt;
 ## - EICs have dalton width of @var{eic_width} and  are saved to the @var{outdir} directory. Note that any existing files in @var{outdir} are deleted and it is created if it does not already exist.&lt;br /&gt;
 ##&lt;br /&gt;
 ## - @var{min_intensity} denotes the lowest max intensity an EIC must have to be saved.&lt;br /&gt;
 ## &lt;br /&gt;
 ## - @var{filt_type} indicates the type of raw data filtration to be carried out. Valid options are &#039;base_peak&#039; or &#039;absolute&#039;.&lt;br /&gt;
 ##&lt;br /&gt;
 ## - @var{cutoff} indicates the cutoff that will be used to filter the raw data. For &#039;base_peak&#039; mode, this decimal will be multiplied by the base peak to get a cutoff whereas for &#039;absolute&#039;, it is the specified value.&lt;br /&gt;
 ##&lt;br /&gt;
 ## @end deftypefn&lt;br /&gt;
&lt;br /&gt;
=MVAPACK=&lt;br /&gt;
=extra=&lt;br /&gt;
&lt;br /&gt;
[[Category:Sysadmin]]&lt;/div&gt;</summary>
		<author><name>Chris</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=814</id>
		<title>Generating docs</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=814"/>
		<updated>2021-06-03T23:40:23Z</updated>

		<summary type="html">&lt;p&gt;Chris: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MVAPACK&#039;s uses [https://www.gnu.org/software/texinfo/ GNU Texinfo] for documentation. The end goal is to generate a .pdf file that contains all of the information for each function as well as general usage, pipelines and examples. This guide is &#039;&#039;&#039;NOT&#039;&#039;&#039; designed to cover all the details of writing GNU Texinfo and its syntax, but just how the documentation for this project works and how to build new pdf&#039;s for future releases.&lt;br /&gt;
&lt;br /&gt;
In general there are two parts to documentation source, being the Texinfo found in each of the files contained within &amp;lt;code&amp;gt; mvapack/inst/ &amp;lt;/code&amp;gt; and the main file found in &amp;lt;code&amp;gt; mvapack/doc/mvapack.tex &amp;lt;/code&amp;gt;. This page covers how to change these types of Texinfo entries as well as making the .pdf itself.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Making the pdf=&lt;br /&gt;
&lt;br /&gt;
To make the documentation, first &amp;lt;code&amp;gt; cd &amp;lt;/code&amp;gt; into your &amp;lt;code&amp;gt; mvapack/ &amp;lt;/code&amp;gt; directory. Next, you will run the following command:&lt;br /&gt;
&lt;br /&gt;
 &amp;gt; bin/doc&lt;br /&gt;
&lt;br /&gt;
This will build the documentation and save it to &amp;lt;code&amp;gt; mvapack/doc/mvapack.pdf &amp;lt;/code&amp;gt;, assuming the build finished successfully. &lt;br /&gt;
&lt;br /&gt;
=Function file Texinfo=&lt;br /&gt;
&lt;br /&gt;
 ## Copyright (C) 2021 University of Nebraska Board of Regents.&lt;br /&gt;
 ## Written by Christopher Jurich &amp;lt;cjurich2@huskers.unl.edu&amp;gt;.&lt;br /&gt;
 ##&lt;br /&gt;
 ## This program is free software; you can redistribute it and/or modify&lt;br /&gt;
 ## it under the terms of the GNU General Public License as published by&lt;br /&gt;
 ## the Free Software Foundation; either version 3 of the License, or&lt;br /&gt;
 ## (at your option) any later version.&lt;br /&gt;
 ##&lt;br /&gt;
 ## This program is distributed in the hope that it will be useful,&lt;br /&gt;
 ## but WITHOUT ANY WARRANY; without even the implied warranty of&lt;br /&gt;
 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the&lt;br /&gt;
 ## GNU General Public License for more details.&lt;br /&gt;
 ##&lt;br /&gt;
 ## You should have received a copy of the GNU General Public License&lt;br /&gt;
 ## along with this program; If not, see &amp;lt;http://www.gnu.org/licenses/&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
 ## -*- texinfo -*-&lt;br /&gt;
 ## @anchor{create_eics}&lt;br /&gt;
 ## @deftypefn {Function File} create_eics (@var{fname}, @var{outdir}, @var{mz_min}=50, @var{mz_max}=2000, @var{eic_width}=0.05, @var{min_intensity}=1000, @var{filt_type}=&#039;base_peak&#039;, @var{cutoff}=0.001)&lt;br /&gt;
 ##&lt;br /&gt;
 ## Creates extracted ion chromatograms (EICs) from the data in the file specified by @var{fname}. &lt;br /&gt;
 ## If and when multiple data points exist at the same retention time, the one with higher intensity will be kept.&lt;br /&gt;
 ## This code relies on C++ bindings that must be compiled for this functionality to work.&lt;br /&gt;
 ## Detail on the input parameters is provided below:&lt;br /&gt;
 ## &lt;br /&gt;
 ## - EICs will be made from @var{mz_min} to @var{mz_max}&lt;br /&gt;
 ##&lt;br /&gt;
 ## - EICs have dalton width of @var{eic_width} and  are saved to the @var{outdir} directory. Note that any existing files in @var{outdir} are deleted and it is created if it does not already exist.&lt;br /&gt;
 ##&lt;br /&gt;
 ## - @var{min_intensity} denotes the lowest max intensity an EIC must have to be saved.&lt;br /&gt;
 ## &lt;br /&gt;
 ## - @var{filt_type} indicates the type of raw data filtration to be carried out. Valid options are &#039;base_peak&#039; or &#039;absolute&#039;.&lt;br /&gt;
 ##&lt;br /&gt;
 ## - @var{cutoff} indicates the cutoff that will be used to filter the raw data. For &#039;base_peak&#039; mode, this decimal will be multiplied by the base peak to get a cutoff whereas for &#039;absolute&#039;, it is the specified value.&lt;br /&gt;
 ##&lt;br /&gt;
 ## @end deftypefn&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=MVAPACK=&lt;br /&gt;
=extra=&lt;br /&gt;
&lt;br /&gt;
[[Category:Sysadmin]]&lt;/div&gt;</summary>
		<author><name>Chris</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=813</id>
		<title>Generating docs</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=813"/>
		<updated>2021-06-03T23:39:10Z</updated>

		<summary type="html">&lt;p&gt;Chris: /* Function file Texinfo */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MVAPACK&#039;s uses [https://www.gnu.org/software/texinfo/ GNU Texinfo] for documentation. The end goal is to generate a .pdf file that contains all of the information for each function as well as general usage, pipelines and examples. This guide is &#039;&#039;&#039;NOT&#039;&#039;&#039; designed to cover all the details of writing GNU Texinfo and its syntax, but just how the documentation for this project works and how to build new pdf&#039;s for future releases.&lt;br /&gt;
&lt;br /&gt;
In general there are two parts to documentation source, being the Texinfo found in each of the files contained within &amp;lt;code&amp;gt; mvapack/inst/ &amp;lt;/code&amp;gt; and the main file found in &amp;lt;code&amp;gt; mvapack/doc/mvapack.tex &amp;lt;/code&amp;gt;. This page covers how to change these types of Texinfo entries as well as making the .pdf itself.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Making the pdf=&lt;br /&gt;
&lt;br /&gt;
To make the documentation, first &amp;lt;code&amp;gt; cd &amp;lt;/code&amp;gt; into your &amp;lt;code&amp;gt; mvapack/ &amp;lt;/code&amp;gt; directory. Next, you will run the following command:&lt;br /&gt;
&lt;br /&gt;
 &amp;gt; bin/doc&lt;br /&gt;
&lt;br /&gt;
This will build the documentation and save it to &amp;lt;code&amp;gt; mvapack/doc/mvapack.pdf &amp;lt;/code&amp;gt;, assuming the build finished successfully. &lt;br /&gt;
&lt;br /&gt;
=Function file Texinfo=&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 ## Copyright (C) 2021 University of Nebraska Board of Regents.&lt;br /&gt;
## Written by Christopher Jurich &amp;lt;cjurich2@huskers.unl.edu&amp;gt;.&lt;br /&gt;
##&lt;br /&gt;
## This program is free software; you can redistribute it and/or modify&lt;br /&gt;
## it under the terms of the GNU General Public License as published by&lt;br /&gt;
## the Free Software Foundation; either version 3 of the License, or&lt;br /&gt;
## (at your option) any later version.&lt;br /&gt;
##&lt;br /&gt;
## This program is distributed in the hope that it will be useful,&lt;br /&gt;
## but WITHOUT ANY WARRANY; without even the implied warranty of&lt;br /&gt;
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the&lt;br /&gt;
## GNU General Public License for more details.&lt;br /&gt;
##&lt;br /&gt;
## You should have received a copy of the GNU General Public License&lt;br /&gt;
## along with this program; If not, see &amp;lt;http://www.gnu.org/licenses/&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
## -*- texinfo -*-&lt;br /&gt;
## @anchor{create_eics}&lt;br /&gt;
## @deftypefn {Function File} create_eics (@var{fname}, @var{outdir}, @var{mz_min}=50, @var{mz_max}=2000, @var{eic_width}=0.05, @var{min_intensity}=1000, @var{filt_type}=&#039;base_peak&#039;, @var{cutoff}=0.001)&lt;br /&gt;
##&lt;br /&gt;
## Creates extracted ion chromatograms (EICs) from the data in the file specified by @var{fname}. &lt;br /&gt;
## If and when multiple data points exist at the same retention time, the one with higher intensity will be kept.&lt;br /&gt;
## This code relies on C++ bindings that must be compiled for this functionality to work.&lt;br /&gt;
## Detail on the input parameters is provided below:&lt;br /&gt;
## &lt;br /&gt;
## - EICs will be made from @var{mz_min} to @var{mz_max}&lt;br /&gt;
##&lt;br /&gt;
## - EICs have dalton width of @var{eic_width} and  are saved to the @var{outdir} directory. Note that any existing files in @var{outdir} are deleted and it is created if it does not already exist.&lt;br /&gt;
##&lt;br /&gt;
## - @var{min_intensity} denotes the lowest max intensity an EIC must have to be saved.&lt;br /&gt;
## &lt;br /&gt;
## - @var{filt_type} indicates the type of raw data filtration to be carried out. Valid options are &#039;base_peak&#039; or &#039;absolute&#039;.&lt;br /&gt;
##&lt;br /&gt;
## - @var{cutoff} indicates the cutoff that will be used to filter the raw data. For &#039;base_peak&#039; mode, this decimal will be multiplied by the base peak to get a cutoff whereas for &#039;absolute&#039;, it is the specified value.&lt;br /&gt;
##&lt;br /&gt;
## @end deftypefn&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=MVAPACK=&lt;br /&gt;
=extra=&lt;br /&gt;
&lt;br /&gt;
[[Category:Sysadmin]]&lt;/div&gt;</summary>
		<author><name>Chris</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=812</id>
		<title>Generating docs</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=812"/>
		<updated>2021-06-03T23:38:58Z</updated>

		<summary type="html">&lt;p&gt;Chris: /* Function file Texinfo */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MVAPACK&#039;s uses [https://www.gnu.org/software/texinfo/ GNU Texinfo] for documentation. The end goal is to generate a .pdf file that contains all of the information for each function as well as general usage, pipelines and examples. This guide is &#039;&#039;&#039;NOT&#039;&#039;&#039; designed to cover all the details of writing GNU Texinfo and its syntax, but just how the documentation for this project works and how to build new pdf&#039;s for future releases.&lt;br /&gt;
&lt;br /&gt;
In general there are two parts to documentation source, being the Texinfo found in each of the files contained within &amp;lt;code&amp;gt; mvapack/inst/ &amp;lt;/code&amp;gt; and the main file found in &amp;lt;code&amp;gt; mvapack/doc/mvapack.tex &amp;lt;/code&amp;gt;. This page covers how to change these types of Texinfo entries as well as making the .pdf itself.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Making the pdf=&lt;br /&gt;
&lt;br /&gt;
To make the documentation, first &amp;lt;code&amp;gt; cd &amp;lt;/code&amp;gt; into your &amp;lt;code&amp;gt; mvapack/ &amp;lt;/code&amp;gt; directory. Next, you will run the following command:&lt;br /&gt;
&lt;br /&gt;
 &amp;gt; bin/doc&lt;br /&gt;
&lt;br /&gt;
This will build the documentation and save it to &amp;lt;code&amp;gt; mvapack/doc/mvapack.pdf &amp;lt;/code&amp;gt;, assuming the build finished successfully. &lt;br /&gt;
&lt;br /&gt;
=Function file Texinfo=&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
\#\# Copyright (C) 2021 University of Nebraska Board of Regents.&lt;br /&gt;
## Written by Christopher Jurich &amp;lt;cjurich2@huskers.unl.edu&amp;gt;.&lt;br /&gt;
##&lt;br /&gt;
## This program is free software; you can redistribute it and/or modify&lt;br /&gt;
## it under the terms of the GNU General Public License as published by&lt;br /&gt;
## the Free Software Foundation; either version 3 of the License, or&lt;br /&gt;
## (at your option) any later version.&lt;br /&gt;
##&lt;br /&gt;
## This program is distributed in the hope that it will be useful,&lt;br /&gt;
## but WITHOUT ANY WARRANY; without even the implied warranty of&lt;br /&gt;
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the&lt;br /&gt;
## GNU General Public License for more details.&lt;br /&gt;
##&lt;br /&gt;
## You should have received a copy of the GNU General Public License&lt;br /&gt;
## along with this program; If not, see &amp;lt;http://www.gnu.org/licenses/&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
## -*- texinfo -*-&lt;br /&gt;
## @anchor{create_eics}&lt;br /&gt;
## @deftypefn {Function File} create_eics (@var{fname}, @var{outdir}, @var{mz_min}=50, @var{mz_max}=2000, @var{eic_width}=0.05, @var{min_intensity}=1000, @var{filt_type}=&#039;base_peak&#039;, @var{cutoff}=0.001)&lt;br /&gt;
##&lt;br /&gt;
## Creates extracted ion chromatograms (EICs) from the data in the file specified by @var{fname}. &lt;br /&gt;
## If and when multiple data points exist at the same retention time, the one with higher intensity will be kept.&lt;br /&gt;
## This code relies on C++ bindings that must be compiled for this functionality to work.&lt;br /&gt;
## Detail on the input parameters is provided below:&lt;br /&gt;
## &lt;br /&gt;
## - EICs will be made from @var{mz_min} to @var{mz_max}&lt;br /&gt;
##&lt;br /&gt;
## - EICs have dalton width of @var{eic_width} and  are saved to the @var{outdir} directory. Note that any existing files in @var{outdir} are deleted and it is created if it does not already exist.&lt;br /&gt;
##&lt;br /&gt;
## - @var{min_intensity} denotes the lowest max intensity an EIC must have to be saved.&lt;br /&gt;
## &lt;br /&gt;
## - @var{filt_type} indicates the type of raw data filtration to be carried out. Valid options are &#039;base_peak&#039; or &#039;absolute&#039;.&lt;br /&gt;
##&lt;br /&gt;
## - @var{cutoff} indicates the cutoff that will be used to filter the raw data. For &#039;base_peak&#039; mode, this decimal will be multiplied by the base peak to get a cutoff whereas for &#039;absolute&#039;, it is the specified value.&lt;br /&gt;
##&lt;br /&gt;
## @end deftypefn&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=MVAPACK=&lt;br /&gt;
=extra=&lt;br /&gt;
&lt;br /&gt;
[[Category:Sysadmin]]&lt;/div&gt;</summary>
		<author><name>Chris</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=811</id>
		<title>Generating docs</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=811"/>
		<updated>2021-06-03T23:38:25Z</updated>

		<summary type="html">&lt;p&gt;Chris: /* Function file Texinfo */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MVAPACK&#039;s uses [https://www.gnu.org/software/texinfo/ GNU Texinfo] for documentation. The end goal is to generate a .pdf file that contains all of the information for each function as well as general usage, pipelines and examples. This guide is &#039;&#039;&#039;NOT&#039;&#039;&#039; designed to cover all the details of writing GNU Texinfo and its syntax, but just how the documentation for this project works and how to build new pdf&#039;s for future releases.&lt;br /&gt;
&lt;br /&gt;
In general there are two parts to documentation source, being the Texinfo found in each of the files contained within &amp;lt;code&amp;gt; mvapack/inst/ &amp;lt;/code&amp;gt; and the main file found in &amp;lt;code&amp;gt; mvapack/doc/mvapack.tex &amp;lt;/code&amp;gt;. This page covers how to change these types of Texinfo entries as well as making the .pdf itself.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Making the pdf=&lt;br /&gt;
&lt;br /&gt;
To make the documentation, first &amp;lt;code&amp;gt; cd &amp;lt;/code&amp;gt; into your &amp;lt;code&amp;gt; mvapack/ &amp;lt;/code&amp;gt; directory. Next, you will run the following command:&lt;br /&gt;
&lt;br /&gt;
 &amp;gt; bin/doc&lt;br /&gt;
&lt;br /&gt;
This will build the documentation and save it to &amp;lt;code&amp;gt; mvapack/doc/mvapack.pdf &amp;lt;/code&amp;gt;, assuming the build finished successfully. &lt;br /&gt;
&lt;br /&gt;
=Function file Texinfo=&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
## Copyright (C) 2021 University of Nebraska Board of Regents.&lt;br /&gt;
## Written by Christopher Jurich &amp;lt;cjurich2@huskers.unl.edu&amp;gt;.&lt;br /&gt;
##&lt;br /&gt;
## This program is free software; you can redistribute it and/or modify&lt;br /&gt;
## it under the terms of the GNU General Public License as published by&lt;br /&gt;
## the Free Software Foundation; either version 3 of the License, or&lt;br /&gt;
## (at your option) any later version.&lt;br /&gt;
##&lt;br /&gt;
## This program is distributed in the hope that it will be useful,&lt;br /&gt;
## but WITHOUT ANY WARRANY; without even the implied warranty of&lt;br /&gt;
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the&lt;br /&gt;
## GNU General Public License for more details.&lt;br /&gt;
##&lt;br /&gt;
## You should have received a copy of the GNU General Public License&lt;br /&gt;
## along with this program; If not, see &amp;lt;http://www.gnu.org/licenses/&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
## -*- texinfo -*-&lt;br /&gt;
## @anchor{create_eics}&lt;br /&gt;
## @deftypefn {Function File} create_eics (@var{fname}, @var{outdir}, @var{mz_min}=50, @var{mz_max}=2000, @var{eic_width}=0.05, @var{min_intensity}=1000, @var{filt_type}=&#039;base_peak&#039;, @var{cutoff}=0.001)&lt;br /&gt;
##&lt;br /&gt;
## Creates extracted ion chromatograms (EICs) from the data in the file specified by @var{fname}. &lt;br /&gt;
## If and when multiple data points exist at the same retention time, the one with higher intensity will be kept.&lt;br /&gt;
## This code relies on C++ bindings that must be compiled for this functionality to work.&lt;br /&gt;
## Detail on the input parameters is provided below:&lt;br /&gt;
## &lt;br /&gt;
## - EICs will be made from @var{mz_min} to @var{mz_max}&lt;br /&gt;
##&lt;br /&gt;
## - EICs have dalton width of @var{eic_width} and  are saved to the @var{outdir} directory. Note that any existing files in @var{outdir} are deleted and it is created if it does not already exist.&lt;br /&gt;
##&lt;br /&gt;
## - @var{min_intensity} denotes the lowest max intensity an EIC must have to be saved.&lt;br /&gt;
## &lt;br /&gt;
## - @var{filt_type} indicates the type of raw data filtration to be carried out. Valid options are &#039;base_peak&#039; or &#039;absolute&#039;.&lt;br /&gt;
##&lt;br /&gt;
## - @var{cutoff} indicates the cutoff that will be used to filter the raw data. For &#039;base_peak&#039; mode, this decimal will be multiplied by the base peak to get a cutoff whereas for &#039;absolute&#039;, it is the specified value.&lt;br /&gt;
##&lt;br /&gt;
## @end deftypefn&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=MVAPACK=&lt;br /&gt;
=extra=&lt;br /&gt;
&lt;br /&gt;
[[Category:Sysadmin]]&lt;/div&gt;</summary>
		<author><name>Chris</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=810</id>
		<title>Generating docs</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=810"/>
		<updated>2021-06-03T23:37:18Z</updated>

		<summary type="html">&lt;p&gt;Chris: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MVAPACK&#039;s uses [https://www.gnu.org/software/texinfo/ GNU Texinfo] for documentation. The end goal is to generate a .pdf file that contains all of the information for each function as well as general usage, pipelines and examples. This guide is &#039;&#039;&#039;NOT&#039;&#039;&#039; designed to cover all the details of writing GNU Texinfo and its syntax, but just how the documentation for this project works and how to build new pdf&#039;s for future releases.&lt;br /&gt;
&lt;br /&gt;
In general there are two parts to documentation source, being the Texinfo found in each of the files contained within &amp;lt;code&amp;gt; mvapack/inst/ &amp;lt;/code&amp;gt; and the main file found in &amp;lt;code&amp;gt; mvapack/doc/mvapack.tex &amp;lt;/code&amp;gt;. This page covers how to change these types of Texinfo entries as well as making the .pdf itself.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Making the pdf=&lt;br /&gt;
&lt;br /&gt;
To make the documentation, first &amp;lt;code&amp;gt; cd &amp;lt;/code&amp;gt; into your &amp;lt;code&amp;gt; mvapack/ &amp;lt;/code&amp;gt; directory. Next, you will run the following command:&lt;br /&gt;
&lt;br /&gt;
 &amp;gt; bin/doc&lt;br /&gt;
&lt;br /&gt;
This will build the documentation and save it to &amp;lt;code&amp;gt; mvapack/doc/mvapack.pdf &amp;lt;/code&amp;gt;, assuming the build finished successfully. &lt;br /&gt;
&lt;br /&gt;
=Function file Texinfo=&lt;br /&gt;
&lt;br /&gt;
## Copyright (C) 2021 University of Nebraska Board of Regents.&lt;br /&gt;
## Written by Christopher Jurich &amp;lt;cjurich2@huskers.unl.edu&amp;gt;.&lt;br /&gt;
##&lt;br /&gt;
## This program is free software; you can redistribute it and/or modify&lt;br /&gt;
## it under the terms of the GNU General Public License as published by&lt;br /&gt;
## the Free Software Foundation; either version 3 of the License, or&lt;br /&gt;
## (at your option) any later version.&lt;br /&gt;
##&lt;br /&gt;
## This program is distributed in the hope that it will be useful,&lt;br /&gt;
## but WITHOUT ANY WARRANY; without even the implied warranty of&lt;br /&gt;
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the&lt;br /&gt;
## GNU General Public License for more details.&lt;br /&gt;
##&lt;br /&gt;
## You should have received a copy of the GNU General Public License&lt;br /&gt;
## along with this program; If not, see &amp;lt;http://www.gnu.org/licenses/&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
## -*- texinfo -*-&lt;br /&gt;
## @anchor{create_eics}&lt;br /&gt;
## @deftypefn {Function File} create_eics (@var{fname}, @var{outdir}, @var{mz_min}=50, @var{mz_max}=2000, @var{eic_width}=0.05, @var{min_intensity}=1000, @var{filt_type}=&#039;base_peak&#039;, @var{cutoff}=0.001)&lt;br /&gt;
##&lt;br /&gt;
## Creates extracted ion chromatograms (EICs) from the data in the file specified by @var{fname}. &lt;br /&gt;
## If and when multiple data points exist at the same retention time, the one with higher intensity will be kept.&lt;br /&gt;
## This code relies on C++ bindings that must be compiled for this functionality to work.&lt;br /&gt;
## Detail on the input parameters is provided below:&lt;br /&gt;
## &lt;br /&gt;
## - EICs will be made from @var{mz_min} to @var{mz_max}&lt;br /&gt;
##&lt;br /&gt;
## - EICs have dalton width of @var{eic_width} and  are saved to the @var{outdir} directory. Note that any existing files in @var{outdir} are deleted and it is created if it does not already exist.&lt;br /&gt;
##&lt;br /&gt;
## - @var{min_intensity} denotes the lowest max intensity an EIC must have to be saved.&lt;br /&gt;
## &lt;br /&gt;
## - @var{filt_type} indicates the type of raw data filtration to be carried out. Valid options are &#039;base_peak&#039; or &#039;absolute&#039;.&lt;br /&gt;
##&lt;br /&gt;
## - @var{cutoff} indicates the cutoff that will be used to filter the raw data. For &#039;base_peak&#039; mode, this decimal will be multiplied by the base peak to get a cutoff whereas for &#039;absolute&#039;, it is the specified value.&lt;br /&gt;
##&lt;br /&gt;
## @end deftypefn&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=MVAPACK=&lt;br /&gt;
=extra=&lt;br /&gt;
&lt;br /&gt;
[[Category:Sysadmin]]&lt;/div&gt;</summary>
		<author><name>Chris</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=809</id>
		<title>Generating docs</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=809"/>
		<updated>2021-06-03T23:28:14Z</updated>

		<summary type="html">&lt;p&gt;Chris: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MVAPACK&#039;s uses [https://www.gnu.org/software/texinfo/ GNU Texinfo] for documentation. The end goal is to generate a .pdf file that contains all of the information for each function as well as general usage, pipelines and examples. This guide is &#039;&#039;&#039;NOT&#039;&#039;&#039; designed to cover all the details of writing GNU Texinfo and its syntax, but just how the documentation for this project works and how to build new pdf&#039;s for future releases.&lt;br /&gt;
&lt;br /&gt;
In general there are two parts to documentation source, being the Texinfo found in each of the files contained within &amp;lt;code&amp;gt; mvapack/inst/ &amp;lt;/code&amp;gt; and the main file found in &amp;lt;code&amp;gt; mvapack/doc/mvapack.tex &amp;lt;/code&amp;gt;. This page covers how to change these types of Texinfo entries as well as making the .pdf itself.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Making the pdf=&lt;br /&gt;
&lt;br /&gt;
To make the documentation, first &amp;lt;code&amp;gt; cd &amp;lt;/code&amp;gt; into your &amp;lt;code&amp;gt; mvapack/ &amp;lt;/code&amp;gt; directory. Next, you will run the following command:&lt;br /&gt;
&lt;br /&gt;
 &amp;gt; bin/doc&lt;br /&gt;
&lt;br /&gt;
This will build the documentation and save it to &amp;lt;code&amp;gt; mvapack/doc/mvapack.pdf &amp;lt;/code&amp;gt;, assuming the build finished successfully. &lt;br /&gt;
&lt;br /&gt;
=Function file Texinfo=&lt;br /&gt;
&lt;br /&gt;
=MVAPACK=&lt;br /&gt;
=extra=&lt;br /&gt;
&lt;br /&gt;
[[Category:Sysadmin]]&lt;/div&gt;</summary>
		<author><name>Chris</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=808</id>
		<title>Generating docs</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=808"/>
		<updated>2021-06-03T23:18:18Z</updated>

		<summary type="html">&lt;p&gt;Chris: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MVAPACK&#039;s uses [https://www.gnu.org/software/texinfo/ GNU Texinfo] for documentation. The end goal is to generate a .pdf file that contains all of the information for each function as well as general usage, pipelines and examples. This guide is &#039;&#039;&#039;NOT&#039;&#039;&#039; designed to cover all the details of writing GNU Texinfo and its syntax, but just how the documentation for this project works and how to build new pdf&#039;s for future releases.&lt;br /&gt;
&lt;br /&gt;
In general there are two parts to documentation source, being the Texinfo found in each of the files contained within &amp;lt;code&amp;gt; mvapack/inst/ &amp;lt;/code&amp;gt; and the main file found in &amp;lt;code&amp;gt; mvapack/doc/mvapack.tex &amp;lt;/code&amp;gt;. This page covers how to change these types of Texinfo entries as well as making the .pdf itself.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Making the pdf=&lt;br /&gt;
&lt;br /&gt;
To make the documentation, first &amp;lt;code&amp;gt; cd &amp;lt;/code&amp;gt; into your &amp;lt;code&amp;gt; mvapack/ &amp;lt;/code&amp;gt; directory. Next, you will run the following command:&lt;br /&gt;
&lt;br /&gt;
 &amp;gt; bin/doc&lt;br /&gt;
&lt;br /&gt;
This will build the documentation and save it to &amp;lt;code&amp;gt; mvapack/doc/mvapack.pdf &amp;lt;/code&amp;gt;, assuming the build finished successfully. &lt;br /&gt;
&lt;br /&gt;
=Function file Texinfo=&lt;br /&gt;
&lt;br /&gt;
=VAPACK=&lt;br /&gt;
&lt;br /&gt;
[[Category:Sysadmin]]&lt;/div&gt;</summary>
		<author><name>Chris</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=807</id>
		<title>Generating docs</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=807"/>
		<updated>2021-06-03T23:18:04Z</updated>

		<summary type="html">&lt;p&gt;Chris: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MVAPACK&#039;s uses [https://www.gnu.org/software/texinfo/ GNU Texinfo] for documentation. The end goal is to generate a .pdf file that contains all of the information for each function as well as general usage, pipelines and examples. This guide is &#039;&#039;&#039;NOT&#039;&#039;&#039; designed to cover all the details of writing GNU Texinfo and its syntax, but just how the documentation for this project works and how to build new pdf&#039;s for future releases.&lt;br /&gt;
&lt;br /&gt;
In general there are two parts to documentation source, being the Texinfo found in each of the files contained within &amp;lt;code&amp;gt; mvapack/inst/ &amp;lt;/code&amp;gt; and the main file found in &amp;lt;code&amp;gt; mvapack/doc/mvapack.tex &amp;lt;/code&amp;gt;. This page covers how to change these types of Texinfo entries as well as making the .pdf itself.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Making the pdf==&lt;br /&gt;
&lt;br /&gt;
To make the documentation, first &amp;lt;code&amp;gt; cd &amp;lt;/code&amp;gt; into your &amp;lt;code&amp;gt; mvapack/ &amp;lt;/code&amp;gt; directory. Next, you will run the following command:&lt;br /&gt;
&lt;br /&gt;
 &amp;gt; bin/doc&lt;br /&gt;
&lt;br /&gt;
This will build the documentation and save it to &amp;lt;code&amp;gt; mvapack/doc/mvapack.pdf &amp;lt;/code&amp;gt;, assuming the build finished successfully. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Function file Texinfo==&lt;br /&gt;
&lt;br /&gt;
==VAPACK==&lt;br /&gt;
&lt;br /&gt;
[[Category:Sysadmin]]&lt;/div&gt;</summary>
		<author><name>Chris</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=806</id>
		<title>Generating docs</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=806"/>
		<updated>2021-06-03T23:16:44Z</updated>

		<summary type="html">&lt;p&gt;Chris: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MVAPACK&#039;s uses [https://www.gnu.org/software/texinfo/ GNU Texinfo] for documentation. The end goal is to generate a .pdf file that contains all of the information for each function as well as general usage, pipelines and examples. This guide is &#039;&#039;&#039;NOT&#039;&#039;&#039; designed to cover all the details of writing GNU Texinfo and its syntax, but just how the documentation for this project works and how to build new pdf&#039;s for future releases.&lt;br /&gt;
&lt;br /&gt;
In general there are two parts to documentation source, being the Texinfo found in each of the files contained within &amp;lt;code&amp;gt; mvapack/inst/ &amp;lt;/code&amp;gt; and the main file found in &amp;lt;code&amp;gt; mvapack/doc/mvapack.tex &amp;lt;/code&amp;gt;. This page covers how to change these types of Texinfo entries as well as making the .pdf itself.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Making the pdf ==&lt;br /&gt;
&lt;br /&gt;
To make the documentation, first &amp;lt;code&amp;gt; cd &amp;lt;/code&amp;gt; into your &amp;lt;code&amp;gt; mvapack/ &amp;lt;/code&amp;gt; directory. Next, you will run the following command:&lt;br /&gt;
&lt;br /&gt;
 &amp;gt; bin/doc&lt;br /&gt;
&lt;br /&gt;
This will build the documentation and save it to &amp;lt;code&amp;gt; mvapack/doc/mvapack.pdf &amp;lt;/code&amp;gt;, assuming the build finished successfully. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Function file Texinfo ==&lt;br /&gt;
&lt;br /&gt;
== MVAPACK ==&lt;br /&gt;
&lt;br /&gt;
[[Category:Sysadmin]]&lt;/div&gt;</summary>
		<author><name>Chris</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=805</id>
		<title>Generating docs</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=805"/>
		<updated>2021-06-03T23:14:28Z</updated>

		<summary type="html">&lt;p&gt;Chris: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MVAPACK&#039;s uses [https://www.gnu.org/software/texinfo/ GNU Texinfo] for documentation. The end goal is to generate a .pdf file that contains all of the information for each function as well as general usage, pipelines and examples. This guide is &#039;&#039;&#039;NOT&#039;&#039;&#039; designed to cover all the details of writing GNU Texinfo and its syntax, but just how the documentation for this project works and how to build new pdf&#039;s for future releases.&lt;br /&gt;
&lt;br /&gt;
In general there are two parts to documentation source, being the Texinfo found in each of the files contained within &amp;lt;code&amp;gt; mvapack/inst/ &amp;lt;/code&amp;gt; and the main file found in &amp;lt;code&amp;gt; mvapack/doc/mvapack.tex &amp;lt;/code&amp;gt;. This page covers how to change these types of Texinfo entries as well as making the .pdf itself.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Making the pdf ==&lt;br /&gt;
&lt;br /&gt;
To make the documentation, first &amp;lt;code&amp;gt; cd &amp;lt;/code&amp;gt; into your &amp;lt;code&amp;gt; mvapack/ &amp;lt;/code&amp;gt; directory. Next, you will run the following command:&lt;br /&gt;
&lt;br /&gt;
 &amp;gt; bin/doc&lt;br /&gt;
&lt;br /&gt;
This will build the documentation and save it to &amp;lt;code&amp;gt; mvapack/doc/mvapack.pdf &amp;lt;/code&amp;gt;, assuming the build finished successfully. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Section 2 ==&lt;br /&gt;
&lt;br /&gt;
[[Category:Sysadmin]]&lt;/div&gt;</summary>
		<author><name>Chris</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=804</id>
		<title>Generating docs</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=804"/>
		<updated>2021-06-03T23:14:21Z</updated>

		<summary type="html">&lt;p&gt;Chris: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MVAPACK&#039;s uses [https://www.gnu.org/software/texinfo/ GNU Texinfo] for documentation. The end goal is to generate a .pdf file that contains all of the information for each function as well as general usage, pipelines and examples. This guide is &#039;&#039;&#039;NOT&#039;&#039;&#039; designed to cover all the details of writing GNU Texinfo and its syntax, but just how the documentation for this project works and how to build new pdf&#039;s for future releases.&lt;br /&gt;
&lt;br /&gt;
In general there are two parts to documentation source, being the Texinfo found in each of the files contained within &amp;lt;code&amp;gt; mvapack/inst/ &amp;lt;/code&amp;gt; and the main file found in &amp;lt;code&amp;gt; mvapack/doc/mvapack.tex &amp;lt;/code&amp;gt;. This page covers how to change these types of Texinfo entries as well as making the .pdf itself.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Making the pdf ==&lt;br /&gt;
&lt;br /&gt;
To make the documentation, first &amp;lt;code&amp;gt; cd &amp;lt;/code&amp;gt; into your &amp;lt;code&amp;gt; mvapack/ &amp;lt;/code&amp;gt; directory. Next, you will run the following command:&lt;br /&gt;
&lt;br /&gt;
 &amp;gt; bin/doc&lt;br /&gt;
&lt;br /&gt;
* This will build the documentation and save it to &amp;lt;code&amp;gt; mvapack/doc/mvapack.pdf &amp;lt;/code&amp;gt;, assuming the build finished successfully. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Section 2 ==&lt;br /&gt;
&lt;br /&gt;
[[Category:Sysadmin]]&lt;/div&gt;</summary>
		<author><name>Chris</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=803</id>
		<title>Generating docs</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=803"/>
		<updated>2021-06-03T23:14:12Z</updated>

		<summary type="html">&lt;p&gt;Chris: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MVAPACK&#039;s uses [https://www.gnu.org/software/texinfo/ GNU Texinfo] for documentation. The end goal is to generate a .pdf file that contains all of the information for each function as well as general usage, pipelines and examples. This guide is &#039;&#039;&#039;NOT&#039;&#039;&#039; designed to cover all the details of writing GNU Texinfo and its syntax, but just how the documentation for this project works and how to build new pdf&#039;s for future releases.&lt;br /&gt;
&lt;br /&gt;
In general there are two parts to documentation source, being the Texinfo found in each of the files contained within &amp;lt;code&amp;gt; mvapack/inst/ &amp;lt;/code&amp;gt; and the main file found in &amp;lt;code&amp;gt; mvapack/doc/mvapack.tex &amp;lt;/code&amp;gt;. This page covers how to change these types of Texinfo entries as well as making the .pdf itself.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Making the pdf ==&lt;br /&gt;
&lt;br /&gt;
* To make the documentation, first &amp;lt;code&amp;gt; cd &amp;lt;/code&amp;gt; into your &amp;lt;code&amp;gt; mvapack/ &amp;lt;/code&amp;gt; directory. Next, you will run the following command:&lt;br /&gt;
&lt;br /&gt;
 &amp;gt; bin/doc&lt;br /&gt;
&lt;br /&gt;
* This will build the documentation and save it to &amp;lt;code&amp;gt; mvapack/doc/mvapack.pdf &amp;lt;/code&amp;gt;, assuming the build finished successfully. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Section 2 ==&lt;br /&gt;
&lt;br /&gt;
[[Category:Sysadmin]]&lt;/div&gt;</summary>
		<author><name>Chris</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=802</id>
		<title>Generating docs</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=802"/>
		<updated>2021-06-03T23:13:53Z</updated>

		<summary type="html">&lt;p&gt;Chris: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MVAPACK&#039;s uses [https://www.gnu.org/software/texinfo/ GNU Texinfo] for documentation. The end goal is to generate a .pdf file that contains all of the information for each function as well as general usage, pipelines and examples. This guide is &#039;&#039;&#039;NOT&#039;&#039;&#039; designed to cover all the details of writing GNU Texinfo and its syntax, but just how the documentation for this project works and how to build new pdf&#039;s for future releases.&lt;br /&gt;
&lt;br /&gt;
In general there are two parts to documentation source, being the Texinfo found in each of the files contained within &amp;lt;code&amp;gt; mvapack/inst/ &amp;lt;/code&amp;gt; and the main file found in &amp;lt;code&amp;gt; mvapack/doc/mvapack.tex &amp;lt;/code&amp;gt;. This page covers how to change these types of Texinfo entries as well as making the .pdf itself.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Making the pdf ==&lt;br /&gt;
&lt;br /&gt;
* To make the documentation, first &amp;lt;code&amp;gt; cd &amp;lt;/code&amp;gt; into your &amp;lt;code&amp;gt; mvapack/ &amp;lt;/code&amp;gt; directory. Next, you will run the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;gt; bin/doc&lt;br /&gt;
&lt;br /&gt;
* This will build the documentation and save it to &amp;lt;code&amp;gt; mvapack/doc/mvapack.pdf &amp;lt;/code&amp;gt;, assuming the build finished successfully. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Section 2 ==&lt;br /&gt;
&lt;br /&gt;
[[Category:Sysadmin]]&lt;/div&gt;</summary>
		<author><name>Chris</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=801</id>
		<title>Generating docs</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=801"/>
		<updated>2021-06-03T23:13:40Z</updated>

		<summary type="html">&lt;p&gt;Chris: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MVAPACK&#039;s uses [https://www.gnu.org/software/texinfo/ GNU Texinfo] for documentation. The end goal is to generate a .pdf file that contains all of the information for each function as well as general usage, pipelines and examples. This guide is &#039;&#039;&#039;NOT&#039;&#039;&#039; designed to cover all the details of writing GNU Texinfo and its syntax, but just how the documentation for this project works and how to build new pdf&#039;s for future releases.&lt;br /&gt;
&lt;br /&gt;
In general there are two parts to documentation source, being the Texinfo found in each of the files contained within &amp;lt;code&amp;gt; mvapack/inst/ &amp;lt;/code&amp;gt; and the main file found in &amp;lt;code&amp;gt; mvapack/doc/mvapack.tex &amp;lt;/code&amp;gt;. This page covers how to change these types of Texinfo entries as well as making the .pdf itself.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Making the pdf ==&lt;br /&gt;
&lt;br /&gt;
* To make the documentation, first &amp;lt;code&amp;gt; cd &amp;lt;/code&amp;gt; into your &amp;lt;code&amp;gt; mvapack/ &amp;lt;/code&amp;gt; directory. Next, you will run the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;gt; bin/doc&lt;br /&gt;
&lt;br /&gt;
This will build the documentation and save it to &amp;lt;code&amp;gt; mvapack/doc/mvapack.pdf &amp;lt;/code&amp;gt;, assuming the build finished successfully. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Section 2 ==&lt;br /&gt;
&lt;br /&gt;
[[Category:Sysadmin]]&lt;/div&gt;</summary>
		<author><name>Chris</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=800</id>
		<title>Generating docs</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=800"/>
		<updated>2021-06-03T23:13:23Z</updated>

		<summary type="html">&lt;p&gt;Chris: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MVAPACK&#039;s uses [https://www.gnu.org/software/texinfo/ GNU Texinfo] for documentation. The end goal is to generate a .pdf file that contains all of the information for each function as well as general usage, pipelines and examples. This guide is &#039;&#039;&#039;NOT&#039;&#039;&#039; designed to cover all the details of writing GNU Texinfo and its syntax, but just how the documentation for this project works and how to build new pdf&#039;s for future releases.&lt;br /&gt;
&lt;br /&gt;
In general there are two parts to documentation source, being the Texinfo found in each of the files contained within &amp;lt;code&amp;gt; mvapack/inst/ &amp;lt;/code&amp;gt; and the main file found in &amp;lt;code&amp;gt; mvapack/doc/mvapack.tex &amp;lt;/code&amp;gt;. This page covers how to change these types of Texinfo entries as well as making the .pdf itself.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Making the pdf ==&lt;br /&gt;
&lt;br /&gt;
*To make the documentation, first &amp;lt;code&amp;gt; cd &amp;lt;/code&amp;gt; into your &amp;lt;code&amp;gt; mvapack/ &amp;lt;/code&amp;gt; directory. Next, you will run the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;gt; bin/doc&lt;br /&gt;
&lt;br /&gt;
This will build the documentation and save it to &amp;lt;code&amp;gt; mvapack/doc/mvapack.pdf &amp;lt;/code&amp;gt;, assuming the build finished successfully. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Section 2 ==&lt;br /&gt;
&lt;br /&gt;
[[Category:Sysadmin]]&lt;/div&gt;</summary>
		<author><name>Chris</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=799</id>
		<title>Generating docs</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=799"/>
		<updated>2021-06-03T23:12:57Z</updated>

		<summary type="html">&lt;p&gt;Chris: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MVAPACK&#039;s uses [https://www.gnu.org/software/texinfo/ GNU Texinfo] for documentation. The end goal is to generate a .pdf file that contains all of the information for each function as well as general usage, pipelines and examples. This guide is &#039;&#039;&#039;NOT&#039;&#039;&#039; designed to cover all the details of writing GNU Texinfo and its syntax, but just how the documentation for this project works and how to build new pdf&#039;s for future releases.&lt;br /&gt;
&lt;br /&gt;
In general there are two parts to documentation source, being the Texinfo found in each of the files contained within &amp;lt;code&amp;gt; mvapack/inst/ &amp;lt;/code&amp;gt; and the main file found in &amp;lt;code&amp;gt; mvapack/doc/mvapack.tex &amp;lt;/code&amp;gt;. This page covers how to change these types of Texinfo entries as well as making the .pdf itself.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Making the pdf ==&lt;br /&gt;
&lt;br /&gt;
To make the documentation, first &amp;lt;code&amp;gt; cd &amp;lt;/code&amp;gt; into your &amp;lt;code&amp;gt; mvapack/ &amp;lt;/code&amp;gt; directory. Next, you will run the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;gt; bin/doc&lt;br /&gt;
&lt;br /&gt;
This will build the documentation and save it to &amp;lt;code&amp;gt; mvapack/doc/mvapack.pdf &amp;lt;/code&amp;gt;, assuming the build finished successfully. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Section 2 ==&lt;br /&gt;
&lt;br /&gt;
[[Category:Sysadmin]]&lt;/div&gt;</summary>
		<author><name>Chris</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=798</id>
		<title>Generating docs</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=798"/>
		<updated>2021-06-03T23:10:47Z</updated>

		<summary type="html">&lt;p&gt;Chris: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MVAPACK&#039;s uses [https://www.gnu.org/software/texinfo/ GNU Texinfo] for documentation. The end goal is to generate a .pdf file that contains all of the information for each function as well as general usage, pipelines and examples. This guide is &#039;&#039;&#039;NOT&#039;&#039;&#039; designed to cover all the details of writing GNU Texinfo and its syntax, but just how the documentation for this project works and how to build new pdf&#039;s for future releases.&lt;br /&gt;
&lt;br /&gt;
In general there are two parts to documentation source, being the Texinfo found in each of the files contained within &amp;lt;code&amp;gt; mvapack/inst/ &amp;lt;/code&amp;gt; and the main file found in &amp;lt;code&amp;gt; mvapack/doc/mvapack.tex &amp;lt;/code&amp;gt;. This page covers how to change these types of Texinfo entries as well as making the .pdf itself.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Making the pdf ==&lt;br /&gt;
&lt;br /&gt;
To make the documentation, first &amp;lt;code&amp;gt; cd &amp;lt;/code&amp;gt; into your &amp;lt;code&amp;gt; mvapack/ &amp;lt;/code&amp;gt; directory. Next, you will run the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt; &amp;gt; bin/doc &amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This will build the documentation and save it to &amp;lt;code&amp;gt; mvapack/doc/mvapack.pdf &amp;lt;/code&amp;gt;, assuming the build finished successfully. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Section 2 ==&lt;br /&gt;
&lt;br /&gt;
[[Category:Sysadmin]]&lt;/div&gt;</summary>
		<author><name>Chris</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=797</id>
		<title>Generating docs</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=797"/>
		<updated>2021-06-03T23:00:52Z</updated>

		<summary type="html">&lt;p&gt;Chris: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MVAPACK&#039;s uses [https://www.gnu.org/software/texinfo/ GNU Texinfo] for documentation. The end goal is to generate a .pdf file that contains all of the information for each function as well as general usage, pipelines and examples. This guide is &#039;&#039;&#039;NOT&#039;&#039;&#039; designed to cover all the details of writing GNU Texinfo and its syntax, but just how the documentation for this project works and how to build new pdf&#039;s for future releases.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Making the pdf ==&lt;br /&gt;
&lt;br /&gt;
To make the documation, first &amp;lt;code&amp;gt; cd &amp;lt;/code&amp;gt; into your &amp;lt;code&amp;gt; mvapack/ &amp;lt;/code&amp;gt; directory. Next, you will run the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt; &amp;gt; bin/doc &amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Section 2 ==&lt;br /&gt;
&lt;br /&gt;
[[Category:Sysadmin]]&lt;/div&gt;</summary>
		<author><name>Chris</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=796</id>
		<title>Generating docs</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=796"/>
		<updated>2021-06-03T20:43:24Z</updated>

		<summary type="html">&lt;p&gt;Chris: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MVAPACK&#039;s uses [https://www.gnu.org/software/texinfo/ GNU Texinfo] for documentation. The end goal is to generate a .pdf file that contains all of the information for each function as well as general usage, pipelines and examples. This guide is &#039;&#039;&#039;NOT&#039;&#039;&#039; designed to cover all the details of writing GNU Texinfo and its syntax, but just how the documentation for this project works and how to build new pdf&#039;s for future releases.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Section 1 ==&lt;br /&gt;
&lt;br /&gt;
== Section 2 ==&lt;br /&gt;
&lt;br /&gt;
[[Category:Sysadmin]]&lt;/div&gt;</summary>
		<author><name>Chris</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=795</id>
		<title>Generating docs</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=795"/>
		<updated>2021-06-03T20:39:37Z</updated>

		<summary type="html">&lt;p&gt;Chris: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MVAPACK&#039;s uses [https://www.gnu.org/software/texinfo/ GNU Texinfo] for documentation. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Section 1 ==&lt;br /&gt;
&lt;br /&gt;
== Section 2 ==&lt;br /&gt;
&lt;br /&gt;
[[Category:Sysadmin]]&lt;/div&gt;</summary>
		<author><name>Chris</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=794</id>
		<title>Generating docs</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=794"/>
		<updated>2021-06-03T20:37:45Z</updated>

		<summary type="html">&lt;p&gt;Chris: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MVAPACK&#039;s uses [https://www.gnu.org/software/texinfo/ GNU Texinfo] for documentation. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Sysadmin]]&lt;/div&gt;</summary>
		<author><name>Chris</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=793</id>
		<title>Generating docs</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=793"/>
		<updated>2021-06-03T20:33:55Z</updated>

		<summary type="html">&lt;p&gt;Chris: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;TODO: this will be filled in&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Sysadmin]]&lt;/div&gt;</summary>
		<author><name>Chris</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=792</id>
		<title>Generating docs</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Generating_docs&amp;diff=792"/>
		<updated>2021-06-03T20:33:21Z</updated>

		<summary type="html">&lt;p&gt;Chris: Created page with &amp;quot;TODO: this will be filled in&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;TODO: this will be filled in&lt;/div&gt;</summary>
		<author><name>Chris</name></author>
	</entry>
</feed>