<?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=Teklab</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=Teklab"/>
	<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php/Special:Contributions/Teklab"/>
	<updated>2026-05-17T04:43:25Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.38.2</generator>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=One_way_ANOVA_in_R&amp;diff=522</id>
		<title>One way ANOVA in R</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=One_way_ANOVA_in_R&amp;diff=522"/>
		<updated>2015-11-11T23:41:16Z</updated>

		<summary type="html">&lt;p&gt;Teklab: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The one way analysis of variance is used to test if three or more means are equal. One way ANOVA is an extension of two independent samples t-test.&lt;br /&gt;
&lt;br /&gt;
===using R===&lt;br /&gt;
*Open the R console&lt;br /&gt;
*Change the working directory to the directory where your file is&amp;quot;&lt;br /&gt;
&lt;br /&gt;
    setwd(&#039;C:/Users/yourfolder&#039;)&lt;br /&gt;
&lt;br /&gt;
*Read the file: E.g the file used here is smaple.csv. The file has three groups with the following format&lt;br /&gt;
&lt;br /&gt;
   {| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Header 1&lt;br /&gt;
! Header 2&lt;br /&gt;
! Header 3&lt;br /&gt;
|-&lt;br /&gt;
| a&lt;br /&gt;
| b&lt;br /&gt;
| c&lt;br /&gt;
|-&lt;br /&gt;
| d&lt;br /&gt;
| e&lt;br /&gt;
| f&lt;br /&gt;
|}&lt;br /&gt;
* Read the file and name it (e.g metab)&lt;br /&gt;
    metab &amp;lt;- read.csv (&amp;quot;sample.csv, header= T)&lt;br /&gt;
* confirm the file is imported. When you call for metab and press enter you should see the table&lt;br /&gt;
*make box plot&lt;br /&gt;
    boxplot(metab)&lt;br /&gt;
*Then use the following command to conduct one way anova and Tukey&#039;s test &lt;br /&gt;
    smetab &amp;lt;- stack(metab) &amp;lt;br&amp;gt;&lt;br /&gt;
    names(smetab) &amp;lt;- c(&amp;quot;length&amp;quot;, &amp;quot;group&amp;quot;) &amp;lt;br&amp;gt;&lt;br /&gt;
    smetab &amp;lt;br&amp;gt;&lt;br /&gt;
    av1&amp;lt;-aov(length ~ group, data=smetab) &amp;lt;br&amp;gt;&lt;br /&gt;
    summary(av1) &amp;lt;br&amp;gt;&lt;br /&gt;
    tk&amp;lt;- TukeyHSD(av1) &amp;lt;br&amp;gt;&lt;br /&gt;
    tk &amp;lt;br&amp;gt;&lt;br /&gt;
[[Category:Protocols]]&lt;br /&gt;
[[Category:Metabolomics]]&lt;/div&gt;</summary>
		<author><name>Teklab</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=One_way_ANOVA_in_R&amp;diff=521</id>
		<title>One way ANOVA in R</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=One_way_ANOVA_in_R&amp;diff=521"/>
		<updated>2015-11-11T23:40:53Z</updated>

		<summary type="html">&lt;p&gt;Teklab: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The one way analysis of variance is used to test if three or more means are equal. One way ANOVA is an extension of two independent samples t-test.&lt;br /&gt;
&lt;br /&gt;
===using R===&lt;br /&gt;
*Open the R console&lt;br /&gt;
*Change the working directory to the directory where your file is&amp;quot;&lt;br /&gt;
&lt;br /&gt;
    setwd(&#039;C:/Users/yourfolder&#039;)&lt;br /&gt;
&lt;br /&gt;
*Read the file: E.g the file used here is smaple.csv. The file has three groups with the following format&lt;br /&gt;
&lt;br /&gt;
   {| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Header 1&lt;br /&gt;
! Header 2&lt;br /&gt;
! Header 3&lt;br /&gt;
|-&lt;br /&gt;
| a&lt;br /&gt;
| b&lt;br /&gt;
| c&lt;br /&gt;
|-&lt;br /&gt;
| d&lt;br /&gt;
| e&lt;br /&gt;
| f&lt;br /&gt;
|}&lt;br /&gt;
* Read the file and name it (e.g metab)&lt;br /&gt;
    metab &amp;lt;- read.csv (&amp;quot;sample.csv, header= T)&lt;br /&gt;
* confirm the file is imported. When you call for metab and press enter you should see the table&lt;br /&gt;
*make box plot&lt;br /&gt;
    boxplot(metab)&lt;br /&gt;
*Then use the following command to conduct one way anova and Tukey&#039;s test &lt;br /&gt;
    smetab &amp;lt;- stack(metab) &amp;lt;br&amp;gt;&lt;br /&gt;
    names(smetab) &amp;lt;- c(&amp;quot;length&amp;quot;, &amp;quot;group&amp;quot;) &amp;lt;br&amp;gt;&lt;br /&gt;
    smetab &amp;lt;br&amp;gt;&lt;br /&gt;
    av1&amp;lt;-aov(length ~ group, data=smetab) &amp;lt;br&amp;gt;&lt;br /&gt;
    summary(av1) &amp;lt;br&amp;gt;&lt;br /&gt;
tk&amp;lt;- TukeyHSD(av1) &amp;lt;br&amp;gt;&lt;br /&gt;
tk &amp;lt;br&amp;gt;&lt;br /&gt;
[[Category:Protocols]]&lt;br /&gt;
[[Category:Metabolomics]]&lt;/div&gt;</summary>
		<author><name>Teklab</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=One_way_ANOVA_in_R&amp;diff=520</id>
		<title>One way ANOVA in R</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=One_way_ANOVA_in_R&amp;diff=520"/>
		<updated>2015-11-11T23:40:12Z</updated>

		<summary type="html">&lt;p&gt;Teklab: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The one way analysis of variance is used to test if three or more means are equal. One way ANOVA is an extension of two independent samples t-test.&lt;br /&gt;
&lt;br /&gt;
===using R===&lt;br /&gt;
*Open the R console&lt;br /&gt;
*Change the working directory to the directory where your file is&amp;quot;&lt;br /&gt;
&lt;br /&gt;
    setwd(&#039;C:/Users/yourfolder&#039;)&lt;br /&gt;
&lt;br /&gt;
*Read the file: E.g the file used here is smaple.csv. The file has three groups with the following format&lt;br /&gt;
&lt;br /&gt;
   {| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Header 1&lt;br /&gt;
! Header 2&lt;br /&gt;
! Header 3&lt;br /&gt;
|-&lt;br /&gt;
| a&lt;br /&gt;
| b&lt;br /&gt;
| c&lt;br /&gt;
|-&lt;br /&gt;
| d&lt;br /&gt;
| e&lt;br /&gt;
| f&lt;br /&gt;
|}&lt;br /&gt;
* Read the file and name it (e.g metab)&lt;br /&gt;
metab &amp;lt;- read.csv (&amp;quot;sample.csv, header= T)&lt;br /&gt;
* confirm the file is imported. When you call for metab and press enter you should see the table&lt;br /&gt;
*make box plot&lt;br /&gt;
boxplot(metab)&lt;br /&gt;
*Then use the following command to conduct one way anova and Tukey&#039;s test &lt;br /&gt;
smetab &amp;lt;- stack(metab) &amp;lt;br&amp;gt;&lt;br /&gt;
names(smetab) &amp;lt;- c(&amp;quot;length&amp;quot;, &amp;quot;group&amp;quot;) &amp;lt;br&amp;gt;&lt;br /&gt;
smetab &amp;lt;br&amp;gt;&lt;br /&gt;
av1&amp;lt;-aov(length ~ group, data=smetab) &amp;lt;br&amp;gt;&lt;br /&gt;
summary(av1) &amp;lt;br&amp;gt;&lt;br /&gt;
tk&amp;lt;- TukeyHSD(av1) &amp;lt;br&amp;gt;&lt;br /&gt;
tk &amp;lt;br&amp;gt;&lt;br /&gt;
[[Category:Protocols]]&lt;br /&gt;
[[Category:Metabolomics]]&lt;/div&gt;</summary>
		<author><name>Teklab</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=MetPa_for_metabolomics&amp;diff=515</id>
		<title>MetPa for metabolomics</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=MetPa_for_metabolomics&amp;diff=515"/>
		<updated>2015-11-11T19:20:44Z</updated>

		<summary type="html">&lt;p&gt;Teklab: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*To use metpa for metabolomics pathway analysis go to http://metpa.metabolomics.ca/MetPA/faces/Home.jsp&lt;br /&gt;
*enter the list of metabolites using Keeg or HMDB id (using metabolite names is sometime confusing)&lt;br /&gt;
*select the pathway library according to the organism of interest&lt;br /&gt;
*select the overepresentation and topology analysis &lt;br /&gt;
*submit the data&lt;br /&gt;
[[Category:Protocols]]&lt;br /&gt;
[[Category:Metabolomics]]&lt;/div&gt;</summary>
		<author><name>Teklab</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=MetPa_for_metabolomics&amp;diff=514</id>
		<title>MetPa for metabolomics</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=MetPa_for_metabolomics&amp;diff=514"/>
		<updated>2015-11-11T19:18:56Z</updated>

		<summary type="html">&lt;p&gt;Teklab: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*To use metpa for metabolomics pathway analysis go to http://metpa.metabolomics.ca/MetPA/faces/Home.jsp&lt;br /&gt;
*enter the list of metabolites using Keeg or HMDB id (using metabolite names is sometime confusing)&lt;br /&gt;
*select the pathway library according to the organism of interest&lt;br /&gt;
*select the overepresentation and topology analysis &lt;br /&gt;
*submit the data&lt;/div&gt;</summary>
		<author><name>Teklab</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=MetPa_for_metabolomics&amp;diff=513</id>
		<title>MetPa for metabolomics</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=MetPa_for_metabolomics&amp;diff=513"/>
		<updated>2015-11-11T19:17:46Z</updated>

		<summary type="html">&lt;p&gt;Teklab: Created page with &amp;quot;*To use metapa for metabolomics pathway analysis go to http://metpa.metabolomics.ca/MetPA/faces/Home.jsp *enter the list of metabolites using Keeg or HMDB id (using metabolite...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*To use metapa for metabolomics pathway analysis go to http://metpa.metabolomics.ca/MetPA/faces/Home.jsp&lt;br /&gt;
*enter the list of metabolites using Keeg or HMDB id (using metabolite names is sometime confusing)&lt;br /&gt;
*select the pathway library accoridn to the organism of interest&lt;br /&gt;
*select the overrepresentation and topology analysis &lt;br /&gt;
*submit the data&lt;/div&gt;</summary>
		<author><name>Teklab</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=One_way_ANOVA_in_R&amp;diff=508</id>
		<title>One way ANOVA in R</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=One_way_ANOVA_in_R&amp;diff=508"/>
		<updated>2015-11-11T18:58:20Z</updated>

		<summary type="html">&lt;p&gt;Teklab: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The one way analysis of variance is used to test if three or more means are equal. One way ANOVA is an extension of two independent samples t-test.&lt;br /&gt;
&lt;br /&gt;
===using R===&lt;br /&gt;
*Open the R console&lt;br /&gt;
*Change the working directory to the directory where your file is&amp;quot;&lt;br /&gt;
&lt;br /&gt;
setwd(&#039;C:/Users/yourfolder&#039;)&lt;br /&gt;
&lt;br /&gt;
*Read the file: E.g the file used here is smaple.csv. The file has three groups with the following format&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Header 1&lt;br /&gt;
! Header 2&lt;br /&gt;
! Header 3&lt;br /&gt;
|-&lt;br /&gt;
| a&lt;br /&gt;
| b&lt;br /&gt;
| c&lt;br /&gt;
|-&lt;br /&gt;
| d&lt;br /&gt;
| e&lt;br /&gt;
| f&lt;br /&gt;
|}&lt;br /&gt;
* Read the file and name it (e.g metab)&lt;br /&gt;
metab &amp;lt;- read.csv (&amp;quot;sample.csv, header= T)&lt;br /&gt;
* confirm the file is imported. When you call for metab and press enter you should see the table&lt;br /&gt;
*make box plot&lt;br /&gt;
boxplot(metab)&lt;br /&gt;
*Then use the following command to conduct one way anova and Tukey&#039;s test &lt;br /&gt;
smetab &amp;lt;- stack(metab) &amp;lt;br&amp;gt;&lt;br /&gt;
names(smetab) &amp;lt;- c(&amp;quot;length&amp;quot;, &amp;quot;group&amp;quot;) &amp;lt;br&amp;gt;&lt;br /&gt;
smetab &amp;lt;br&amp;gt;&lt;br /&gt;
av1&amp;lt;-aov(length ~ group, data=smetab) &amp;lt;br&amp;gt;&lt;br /&gt;
summary(av1) &amp;lt;br&amp;gt;&lt;br /&gt;
tk&amp;lt;- TukeyHSD(av1) &amp;lt;br&amp;gt;&lt;br /&gt;
tk &amp;lt;br&amp;gt;&lt;br /&gt;
[[Category:Protocols]]&lt;br /&gt;
[[Category:Metabolomics]]&lt;/div&gt;</summary>
		<author><name>Teklab</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=One_way_ANOVA_in_R&amp;diff=507</id>
		<title>One way ANOVA in R</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=One_way_ANOVA_in_R&amp;diff=507"/>
		<updated>2015-11-11T18:56:57Z</updated>

		<summary type="html">&lt;p&gt;Teklab: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The one way analysis of variance is used to test if three or more means are equal. One way ANOVA is an extension of two independent samples t-test.&lt;br /&gt;
&lt;br /&gt;
===using R===&lt;br /&gt;
*Open the R console&lt;br /&gt;
*Change the working directory to the directory where your file is&amp;quot;&lt;br /&gt;
&lt;br /&gt;
setwd(&#039;C:/Users/yourfolder&#039;)&lt;br /&gt;
&lt;br /&gt;
*Read the file: E.g the file used here is smaple.csv. The file has three groups with the following format&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Header 1&lt;br /&gt;
! Header 2&lt;br /&gt;
! Header 3&lt;br /&gt;
|-&lt;br /&gt;
| a&lt;br /&gt;
| b&lt;br /&gt;
| c&lt;br /&gt;
|-&lt;br /&gt;
| d&lt;br /&gt;
| e&lt;br /&gt;
| f&lt;br /&gt;
|}&lt;br /&gt;
* Read the file and name it (e.g metab)&lt;br /&gt;
metab &amp;lt;- read.csv (&amp;quot;sample.csv, header= T)&lt;br /&gt;
* confirm the file is imported. When you call for metab and press enter you should see the table&lt;br /&gt;
*make box plot&lt;br /&gt;
boxplot(metab)&lt;br /&gt;
*Then use the following command to conduct one way anova and Tukey&#039;s test &lt;br /&gt;
smetab &amp;lt;- stack(metab) &amp;lt;br&amp;gt;&lt;br /&gt;
names(smetab) &amp;lt;- c(&amp;quot;length&amp;quot;, &amp;quot;group&amp;quot;) &amp;lt;br&amp;gt;&lt;br /&gt;
smetab &amp;lt;br&amp;gt;&lt;br /&gt;
av1&amp;lt;-aov(length ~ group, data=smetab) &amp;lt;br&amp;gt;&lt;br /&gt;
summary(av1) &amp;lt;br&amp;gt;&lt;br /&gt;
tk&amp;lt;- TukeyHSD(av1) &amp;lt;br&amp;gt;&lt;br /&gt;
tk &amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Teklab</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=One_way_ANOVA_in_R&amp;diff=506</id>
		<title>One way ANOVA in R</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=One_way_ANOVA_in_R&amp;diff=506"/>
		<updated>2015-11-11T18:56:07Z</updated>

		<summary type="html">&lt;p&gt;Teklab: Created page with &amp;quot;The one way analysis of variance is used to test if three or more means are equal. One way ANOVA is an extension of two independent samples t-test.  ===using R=== *Open the R ...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The one way analysis of variance is used to test if three or more means are equal. One way ANOVA is an extension of two independent samples t-test.&lt;br /&gt;
&lt;br /&gt;
===using R===&lt;br /&gt;
*Open the R console&lt;br /&gt;
*Change the working directory to the directory where your file presents using the following command&amp;quot;&lt;br /&gt;
&lt;br /&gt;
setwd(&#039;C:/Users/yourfolder&#039;)&lt;br /&gt;
&lt;br /&gt;
*Read the file: E.g the file used here is smaple.csv. The file has three groups with the following format&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Header 1&lt;br /&gt;
! Header 2&lt;br /&gt;
! Header 3&lt;br /&gt;
|-&lt;br /&gt;
| a&lt;br /&gt;
| b&lt;br /&gt;
| c&lt;br /&gt;
|-&lt;br /&gt;
| d&lt;br /&gt;
| e&lt;br /&gt;
| f&lt;br /&gt;
|}&lt;br /&gt;
* Read the file and name it (e.g metab)&lt;br /&gt;
metab &amp;lt;- read.csv (&amp;quot;sample.csv, header= T)&lt;br /&gt;
* confirm the file is imported. When you call for metab and press enter you should see the table&lt;br /&gt;
*make box plot&lt;br /&gt;
boxplot(metab)&lt;br /&gt;
*Then use the following command to conduct one way anova and Tukey&#039;s test &lt;br /&gt;
smetab &amp;lt;- stack(metab) &amp;lt;br&amp;gt;&lt;br /&gt;
names(smetab) &amp;lt;- c(&amp;quot;length&amp;quot;, &amp;quot;group&amp;quot;) &amp;lt;br&amp;gt;&lt;br /&gt;
smetab &amp;lt;br&amp;gt;&lt;br /&gt;
av1&amp;lt;-aov(length ~ group, data=smetab) &amp;lt;br&amp;gt;&lt;br /&gt;
summary(av1) &amp;lt;br&amp;gt;&lt;br /&gt;
tk&amp;lt;- TukeyHSD(av1) &amp;lt;br&amp;gt;&lt;br /&gt;
tk &amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Teklab</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Main_Page&amp;diff=442</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Main_Page&amp;diff=442"/>
		<updated>2014-06-17T22:00:30Z</updated>

		<summary type="html">&lt;p&gt;Teklab: /* Wiki Categories */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Welcome to the BioNMR Wiki Page.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
This wiki exists to provide better access to lab protocols for the Powers lab. It is not a replacement for lab notebooks. Feel free to begin documenting new lab protocols or procedures here, or even moving old protocols onto this wiki.&lt;br /&gt;
&lt;br /&gt;
== Getting started ==&lt;br /&gt;
For those who need a quick and dirty introduction to MediaWiki formatting, try this reference card:&lt;br /&gt;
* [http://bionmr.unl.edu/w/MediaWikiRefCard.pdf MediaWiki Reference Card]&lt;br /&gt;
&lt;br /&gt;
Other general MediaWiki information pages:&lt;br /&gt;
* [http://www.mediawiki.org/wiki/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
&lt;br /&gt;
=== Wiki Categories ===&lt;br /&gt;
&lt;br /&gt;
[[Special:Categories|View All Categories]]&lt;br /&gt;
&lt;br /&gt;
Commonly used Categories:&lt;br /&gt;
&lt;br /&gt;
* [[:Category:Protocols|Protocols]]&lt;br /&gt;
* [[:Category:Bioscreen|Bioscreen]]&lt;br /&gt;
* [[:Category:FAST-NMR|FAST-NMR]]&lt;br /&gt;
* [[:Category:Molecular Docking|Molecular Docking]]&lt;br /&gt;
* [[:Category:Metabolomics|Metabolomics]]&lt;br /&gt;
* [[:Category:Maxey Demos|Maxey Demos]]&lt;br /&gt;
* [[:Category:Protein expression|Protein expression]]&lt;br /&gt;
* [[:Category:SMACMS|SMACMS]]&lt;br /&gt;
* [[:Category:Lab Safty | Lab Safty]]&lt;/div&gt;</summary>
		<author><name>Teklab</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Agarose_Gel&amp;diff=441</id>
		<title>Agarose Gel</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Agarose_Gel&amp;diff=441"/>
		<updated>2014-02-17T22:10:30Z</updated>

		<summary type="html">&lt;p&gt;Teklab: /* Preparing 1% Agarose Gel */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Protocols]]&lt;br /&gt;
[[Category:Protein expression]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Preparing 1% Agarose Gel==&lt;br /&gt;
&lt;br /&gt;
#Measure 0.6 g of agarose&lt;br /&gt;
# Pour the agarose powder into microwavable flask with 60 mL of 1XTAE buffer&lt;br /&gt;
#Microwave for 1- 3 min (until the agarose is completely dissolved)&lt;br /&gt;
#Cool down the agarose and add ethidium bromide to a final concentration of approximately 0.2 to 0.5 ug/mL&lt;br /&gt;
# Pour the agarose into a gel try with the well comb in place&lt;br /&gt;
#Let sit at room temperature for about half an hour&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;N.B&#039;&#039;&#039; Ethidium bromide is a known mutagen.&lt;br /&gt;
&lt;br /&gt;
==Running Agarose Gel==&lt;br /&gt;
&lt;br /&gt;
# add running buffer to the gel apparatus&lt;br /&gt;
# carefully load samples in to the well&lt;br /&gt;
# load marker &lt;br /&gt;
#&lt;/div&gt;</summary>
		<author><name>Teklab</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Agarose_Gel&amp;diff=440</id>
		<title>Agarose Gel</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Agarose_Gel&amp;diff=440"/>
		<updated>2014-02-17T19:58:59Z</updated>

		<summary type="html">&lt;p&gt;Teklab: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Protocols]]&lt;br /&gt;
[[Category:Protein expression]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Preparing 1% Agarose Gel==&lt;br /&gt;
&lt;br /&gt;
#Measure 0.6 g of agarose&lt;br /&gt;
# Pour the agarose powder into microwavable flask with 60 mL of 1XTAE buffer&lt;br /&gt;
#Microwave for 1- 3 min (until the agarose is completely dissolved)&lt;br /&gt;
#Cool down the agarose and add ethidium bromide to a final concentration of approximately 0.2 to 0.5 ug/mL&lt;br /&gt;
# Pour the agarose into a gel try with the well comb in place&lt;br /&gt;
#Let sit at room temperature for about half an hour&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;N.B&#039;&#039;&#039; Ethidium bromide is a known mutagen.&lt;/div&gt;</summary>
		<author><name>Teklab</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Agarose_Gel&amp;diff=439</id>
		<title>Agarose Gel</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Agarose_Gel&amp;diff=439"/>
		<updated>2014-02-17T19:58:04Z</updated>

		<summary type="html">&lt;p&gt;Teklab: Created page with &amp;quot;==Preparing 1% Agarose Gel==  #Measure 0.6 g of agarose # Pour the agarose powder into microwavable flask with 60 mL of 1XTAE buffer #Microwave for 1- 3 min (until the agarose...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Preparing 1% Agarose Gel==&lt;br /&gt;
&lt;br /&gt;
#Measure 0.6 g of agarose&lt;br /&gt;
# Pour the agarose powder into microwavable flask with 60 mL of 1XTAE buffer&lt;br /&gt;
#Microwave for 1- 3 min (until the agarose is completely dissolved)&lt;br /&gt;
#Cool down the agarose and add ethidium bromide to a final concentration of approximately 0.2 to 0.5 ug/mL&lt;br /&gt;
# Pour the agarose into a gel try with the well comb in place&lt;br /&gt;
#Let sit at room temperature for about half an hour&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;N.B&#039;&#039;&#039; Ethidium bromide is a known mutagen.&lt;/div&gt;</summary>
		<author><name>Teklab</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Ligation&amp;diff=438</id>
		<title>Ligation</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Ligation&amp;diff=438"/>
		<updated>2014-02-17T19:50:01Z</updated>

		<summary type="html">&lt;p&gt;Teklab: /* Ligation Protocol with T4 DNA Ligase */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Protocols]]&lt;br /&gt;
[[Category:Protein expression]]&lt;br /&gt;
&lt;br /&gt;
==Ligation Protocol with T4 DNA Ligase==&lt;br /&gt;
&lt;br /&gt;
#Set up the following reaction in a microcentrifuge tube on ice.&lt;br /&gt;
## 2uL of 10X T4 DNA ligase Buffer&lt;br /&gt;
## 50 ng 50 ng (0.025 pmol) vector DNA (3 kb)&lt;br /&gt;
## 50 ng (0.076 pmol) insert DNA (1 kb)&lt;br /&gt;
## 1 uL of T4 DNA Ligase&lt;br /&gt;
## add nuclease-free water to make the total volume 20 uL&lt;br /&gt;
#Gently mix the reaction by pipetting up and down and microfuge briefly.&lt;br /&gt;
#For cohesive (sticky) ends, incubate at 16°C overnight or room temperature for 10 minutes.&lt;br /&gt;
#For blunt ends or single base overhangs, incubate at 16°C overnight or room temperature for 2 hours(alternatively, high concentration T4 DNA Ligase can be used in a 10 minute ligation).&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;N.B&#039;&#039;&#039; (T4 DNA Ligase should be added last. Note that the table shows a ligation using a molar ratio of 1:3 vector to insert.)&lt;br /&gt;
&lt;br /&gt;
==troubleshooting==&lt;br /&gt;
&lt;br /&gt;
#to avoid frequent thawing and freezing of the ligase buffer, prepare working stock of ligation buffer&lt;/div&gt;</summary>
		<author><name>Teklab</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Ligation&amp;diff=437</id>
		<title>Ligation</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Ligation&amp;diff=437"/>
		<updated>2014-02-17T19:44:42Z</updated>

		<summary type="html">&lt;p&gt;Teklab: Created page with &amp;quot;==Ligation Protocol with T4 DNA Ligase==  #Set up the following reaction in a microcentrifuge tube on ice. ## 2uL of 10X T4 DNA ligase Buffer ## 50 ng 50 ng (0.025 pmol) vecto...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Ligation Protocol with T4 DNA Ligase==&lt;br /&gt;
&lt;br /&gt;
#Set up the following reaction in a microcentrifuge tube on ice.&lt;br /&gt;
## 2uL of 10X T4 DNA ligase Buffer&lt;br /&gt;
## 50 ng 50 ng (0.025 pmol) vector DNA (3 kb)&lt;br /&gt;
## 50 ng (0.076 pmol) insert DNA (1 kb)&lt;br /&gt;
## 1 uL of T4 DNA Ligase&lt;br /&gt;
## add nuclease-free water to make the total volume 20 uL&lt;br /&gt;
#Gently mix the reaction by pipetting up and down and microfuge briefly.&lt;br /&gt;
#For cohesive (sticky) ends, incubate at 16°C overnight or room temperature for 10 minutes.&lt;br /&gt;
#For blunt ends or single base overhangs, incubate at 16°C overnight or room temperature for 2 hours(alternatively, high concentration T4 DNA Ligase can be used in a 10 minute ligation).&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;N.B&#039;&#039;&#039; (T4 DNA Ligase should be added last. Note that the table shows a ligation using a molar ratio of 1:3 vector to insert.)&lt;br /&gt;
&lt;br /&gt;
==troubleshooting==&lt;br /&gt;
&lt;br /&gt;
#to avoid frequent thawing and freezing of the ligase buffer, prepare working stock of ligation buffer&lt;/div&gt;</summary>
		<author><name>Teklab</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Running_SDS-PAGE&amp;diff=436</id>
		<title>Running SDS-PAGE</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Running_SDS-PAGE&amp;diff=436"/>
		<updated>2014-02-17T15:31:16Z</updated>

		<summary type="html">&lt;p&gt;Teklab: /* Running SDS-PAGE */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Protocols]]&lt;br /&gt;
[[Category:Protein expression]]&lt;br /&gt;
&lt;br /&gt;
==Running SDS-PAGE==&lt;br /&gt;
&lt;br /&gt;
#Make ready the samples to run&lt;br /&gt;
#Make ready the sample running buffer&lt;br /&gt;
#Make ready the gel&lt;br /&gt;
#Have the SDS-PAGE apparatus&lt;br /&gt;
#Place the the gel in the SDS-PAGE stand&lt;br /&gt;
#Place the stand with the gel in the SDS-PAGE apparatus bath&lt;br /&gt;
#fill the space between the gels with running buffer&lt;br /&gt;
#Take off the combs of the gel (take it out gently)&lt;br /&gt;
#Load the sample to each well&lt;br /&gt;
#Do not use the wells at the left and right end of the gel &lt;br /&gt;
#fill the SDS-PAGE apparatus bath with running buffer to the bottom of the gel&lt;br /&gt;
#Place the cover of the SDS-PAGE &lt;br /&gt;
## &#039;&#039;&#039;N.B&#039;&#039;&#039; Make sure the correct plug is connected to the correct electrode (red goes to red and black goes to black)&lt;br /&gt;
#Plug the cables to the SDS-PAGE apparatus power source&lt;br /&gt;
#Turn of the SDS-PAGE power source&lt;br /&gt;
#Set to constant voltage&lt;br /&gt;
#Use 200 V &lt;br /&gt;
#Press the Run button to start the electrophoresis&lt;br /&gt;
## The voltage increases to 200 V from 0 V&lt;br /&gt;
##For 4% staking gel and 12.5 % separating gel the current reaches 50-60 mA and the power 10 -12 W&lt;br /&gt;
##The current the the power decreases in time but not reach zero (if it reaches zero see the troubleshoot)&lt;br /&gt;
##For the state type of gel it takes 35 - 40 min&lt;br /&gt;
&lt;br /&gt;
===Troubleshoot===&lt;br /&gt;
#The power drops to zero&lt;br /&gt;
* really old buffer&lt;br /&gt;
* the space in between the gels is not filled with  buffer to the top&lt;/div&gt;</summary>
		<author><name>Teklab</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Running_SDS-PAGE&amp;diff=435</id>
		<title>Running SDS-PAGE</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Running_SDS-PAGE&amp;diff=435"/>
		<updated>2014-02-17T15:04:39Z</updated>

		<summary type="html">&lt;p&gt;Teklab: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Protocols]]&lt;br /&gt;
[[Category:Protein expression]]&lt;br /&gt;
&lt;br /&gt;
==Running SDS-PAGE==&lt;br /&gt;
&lt;br /&gt;
#Make ready the samples to run&lt;br /&gt;
#Make ready the sample running buffer&lt;br /&gt;
#Make ready the gel&lt;br /&gt;
#Have the SDS-PAGE apparatus&lt;br /&gt;
#Place the the gel in the SDS-PAGE stand&lt;br /&gt;
#Place the stand with the gel in the SDS-PAGE apparatus bath&lt;br /&gt;
#fill the space between the gels with running buffer&lt;br /&gt;
#Take off the combs of the gel (take it out gently)&lt;br /&gt;
#Load the sample to each well&lt;br /&gt;
#Do not use the wells at the left and right end of the gel &lt;br /&gt;
#fill the SDS-PAGE apparatus bath with running buffer to the bottom of the gel&lt;br /&gt;
#Place the cover of the SDS-PAGE &lt;br /&gt;
## &#039;&#039;&#039;N.B&#039;&#039;&#039; Make sure the correct plug is connected to the correct electrode (red goes to red and black goes to black)&lt;br /&gt;
#Plug the cables to the SDS-PAGE apparatus power source&lt;br /&gt;
#Turn of the SDS-PAGE power source&lt;br /&gt;
#Set to constant voltage&lt;br /&gt;
#Use 200 V &lt;br /&gt;
#Press the Run button to start the electrophoresis&lt;br /&gt;
## The voltage increases to 200 V from 0 V&lt;br /&gt;
##For 4% staking gel and 12.5 % separating gel the current reaches 50-60 mA and the power 10 -12 W&lt;br /&gt;
##The current the the power decreases in time but not reach zero (if it reaches zero see the troubleshoot)&lt;br /&gt;
##For the state type of gel it takes 35 - 40 min&lt;br /&gt;
&lt;br /&gt;
===Troubleshoot===&lt;br /&gt;
#The power drops to zero&lt;br /&gt;
* really old buffer&lt;br /&gt;
* the space in between the gels is not full of buffer&lt;/div&gt;</summary>
		<author><name>Teklab</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Running_SDS-PAGE&amp;diff=434</id>
		<title>Running SDS-PAGE</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Running_SDS-PAGE&amp;diff=434"/>
		<updated>2014-02-17T14:57:16Z</updated>

		<summary type="html">&lt;p&gt;Teklab: Created page with &amp;quot;Category:Protocols Category:Protein expression  ==Running SDS-PAGE==  #Make ready the samples to run #Make ready the sample running buffer #Make ready the gel #Have th...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Protocols]]&lt;br /&gt;
[[Category:Protein expression]]&lt;br /&gt;
&lt;br /&gt;
==Running SDS-PAGE==&lt;br /&gt;
&lt;br /&gt;
#Make ready the samples to run&lt;br /&gt;
#Make ready the sample running buffer&lt;br /&gt;
#Make ready the gel&lt;br /&gt;
#Have the SDS-PAGE apparatus&lt;br /&gt;
#Place the the gel in the SDS-PAGE stand&lt;br /&gt;
#Place the stand with the gel in the SDS-PAGE apparatus bath&lt;br /&gt;
#fill the space between the gels with running buffer&lt;br /&gt;
#Take off the cumbs of the gel (take it out gently)&lt;br /&gt;
#Load the sample to each well&lt;br /&gt;
#Do not use the wells at the left and right end of the gel &lt;br /&gt;
#fill the SDS-PAGE apparatus bath with running buffer to the bottom of the gel&lt;br /&gt;
#Place the cover of the SDS-PAGE &lt;br /&gt;
## &#039;&#039;&#039;N.B&#039;&#039;&#039; Make sure the correct plug is connected to the correct electrode (red goes to red and black goes to black)&lt;br /&gt;
#Plug the cables to the SDS-PAGE apparatus power source&lt;br /&gt;
#Turn of the SDS-PAGE power source&lt;br /&gt;
#Set to constant voltage&lt;br /&gt;
#Use 200 V &lt;br /&gt;
#Press the Run button to start the electrophoresis&lt;br /&gt;
## The voltage increases to 200 V from 0 V&lt;br /&gt;
##For 4% staking gel and 12.5 % separating gel the current reaches 50-60 mA and the power 10 -12 W&lt;br /&gt;
##The current the the power decreases in time but not reach zero (if it reaches zero see the troubleshoot)&lt;br /&gt;
##For the state type of gel it takes 35 - 40 min&lt;/div&gt;</summary>
		<author><name>Teklab</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Category:Protein_expression&amp;diff=433</id>
		<title>Category:Protein expression</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Category:Protein_expression&amp;diff=433"/>
		<updated>2014-02-17T14:48:47Z</updated>

		<summary type="html">&lt;p&gt;Teklab: Blanked the page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Teklab</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Category:Protein_expression&amp;diff=432</id>
		<title>Category:Protein expression</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Category:Protein_expression&amp;diff=432"/>
		<updated>2014-02-17T14:45:10Z</updated>

		<summary type="html">&lt;p&gt;Teklab: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Protocols]]&lt;br /&gt;
[[Category:Protein expression]]&lt;br /&gt;
&lt;br /&gt;
==Running SDS-PAGE==&lt;br /&gt;
&lt;br /&gt;
#Make ready the samples to run&lt;br /&gt;
#Make ready the sample running buffer&lt;br /&gt;
#Make ready the gel&lt;br /&gt;
#Have the SDS-PAGE apparatus&lt;br /&gt;
#Place the the gel in the SDS-PAGE stand&lt;br /&gt;
#Place the stand with the gel in the SDS-PAGE apparatus bath&lt;br /&gt;
#fill the space between the gels with running buffer&lt;br /&gt;
#Take off the cumbs of the gel (take it out gently)&lt;br /&gt;
#Load the sample to each well&lt;br /&gt;
#Do not use the wells at the left and right end of the gel &lt;br /&gt;
#fill the SDS-PAGE apparatus bath with running buffer to the bottom of the gel&lt;br /&gt;
#Place the cover of the SDS-PAGE &lt;br /&gt;
## &#039;&#039;&#039;N.B&#039;&#039;&#039; Make sure the correct plug is connected to the correct electrode (red goes to red and black goes to black)&lt;br /&gt;
#Plug the cables to the SDS-PAGE apparatus power source&lt;br /&gt;
#Turn of the SDS-PAGE power source&lt;br /&gt;
#Set to constant voltage&lt;br /&gt;
#Use 200 V &lt;br /&gt;
#Press the Run button to start the electrophoresis&lt;br /&gt;
## The voltage increases to 200 V from 0 V&lt;br /&gt;
##For 4% staking gel and 12.5 % separating gel the current reaches 50-60 mA and the power 10 -12 W&lt;br /&gt;
##The current the the power decreases in time but not reach zero (if it reaches zero see the troubleshoot)&lt;br /&gt;
##For the state type of gel it takes 35 - 40 min&lt;/div&gt;</summary>
		<author><name>Teklab</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Category:Protein_expression&amp;diff=431</id>
		<title>Category:Protein expression</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Category:Protein_expression&amp;diff=431"/>
		<updated>2014-02-17T14:44:17Z</updated>

		<summary type="html">&lt;p&gt;Teklab: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Running SDS-PAGE==&lt;br /&gt;
&lt;br /&gt;
#Make ready the samples to run&lt;br /&gt;
#Make ready the sample running buffer&lt;br /&gt;
#Make ready the gel&lt;br /&gt;
#Have the SDS-PAGE apparatus&lt;br /&gt;
#Place the the gel in the SDS-PAGE stand&lt;br /&gt;
#Place the stand with the gel in the SDS-PAGE apparatus bath&lt;br /&gt;
#fill the space between the gels with running buffer&lt;br /&gt;
#Take off the cumbs of the gel (take it out gently)&lt;br /&gt;
#Load the sample to each well&lt;br /&gt;
#Do not use the wells at the left and right end of the gel &lt;br /&gt;
#fill the SDS-PAGE apparatus bath with running buffer to the bottom of the gel&lt;br /&gt;
#Place the cover of the SDS-PAGE &lt;br /&gt;
## &#039;&#039;&#039;N.B&#039;&#039;&#039; Make sure the correct plug is connected to the correct electrode (red goes to red and black goes to black)&lt;br /&gt;
#Plug the cables to the SDS-PAGE apparatus power source&lt;br /&gt;
#Turn of the SDS-PAGE power source&lt;br /&gt;
#Set to constant voltage&lt;br /&gt;
#Use 200 V &lt;br /&gt;
#Press the Run button to start the electrophoresis&lt;br /&gt;
## The voltage increases to 200 V from 0 V&lt;br /&gt;
##For 4% staking gel and 12.5 % separating gel the current reaches 50-60 mA and the power 10 -12 W&lt;br /&gt;
##The current the the power decreases in time but not reach zero (if it reaches zero see the troubleshoot)&lt;br /&gt;
##For the state type of gel it takes 35 - 40 min&lt;/div&gt;</summary>
		<author><name>Teklab</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Category:Protein_expression&amp;diff=430</id>
		<title>Category:Protein expression</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Category:Protein_expression&amp;diff=430"/>
		<updated>2014-02-17T14:42:00Z</updated>

		<summary type="html">&lt;p&gt;Teklab: Blanked the page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Teklab</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Category:Protein_expression&amp;diff=429</id>
		<title>Category:Protein expression</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Category:Protein_expression&amp;diff=429"/>
		<updated>2014-02-17T14:41:39Z</updated>

		<summary type="html">&lt;p&gt;Teklab: /* Running SDS-PAGE */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Protocols]]&lt;br /&gt;
[[Category:Protein expression]]&lt;/div&gt;</summary>
		<author><name>Teklab</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Category:Protein_expression&amp;diff=428</id>
		<title>Category:Protein expression</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Category:Protein_expression&amp;diff=428"/>
		<updated>2014-02-17T14:40:59Z</updated>

		<summary type="html">&lt;p&gt;Teklab: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Protocols]]&lt;br /&gt;
[[Category:Protein expression]]&lt;br /&gt;
&lt;br /&gt;
==Running SDS-PAGE==&lt;br /&gt;
&lt;br /&gt;
#Make ready the samples to run&lt;br /&gt;
#Make ready the sample running buffer&lt;br /&gt;
#Make ready the gel&lt;br /&gt;
#Have the SDS-PAGE apparatus&lt;br /&gt;
#Place the the gel in the SDS-PAGE stand&lt;br /&gt;
#Place the stand with the gel in the SDS-PAGE apparatus bath&lt;br /&gt;
#fill the space between the gels with running buffer&lt;br /&gt;
#Take off the cumbs of the gel (take it out gently)&lt;br /&gt;
#Load the sample to each well&lt;br /&gt;
#Do not use the wells at the left and right end of the gel &lt;br /&gt;
#fill the SDS-PAGE apparatus bath with running buffer to the bottom of the gel&lt;br /&gt;
#Place the cover of the SDS-PAGE &lt;br /&gt;
## &#039;&#039;&#039;N.B&#039;&#039;&#039; Make sure the correct plug is connected to the correct electrode (red goes to red and black goes to black)&lt;br /&gt;
#Plug the cables to the SDS-PAGE apparatus power source&lt;br /&gt;
#Turn of the SDS-PAGE power source&lt;br /&gt;
#Set to constant voltage&lt;br /&gt;
#Use 200 V &lt;br /&gt;
#Press the Run button to start the electrophoresis&lt;br /&gt;
## The voltage increases to 200 V from 0 V&lt;br /&gt;
##For 4% staking gel and 12.5 % separating gel the current reaches 50-60 mA and the power 10 -12 W&lt;br /&gt;
##The current the the power decreases in time but not reach zero (if it reaches zero see the troubleshoot)&lt;br /&gt;
##For the state type of gel it takes 35 - 40 min&lt;/div&gt;</summary>
		<author><name>Teklab</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Category:Protein_expression&amp;diff=427</id>
		<title>Category:Protein expression</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Category:Protein_expression&amp;diff=427"/>
		<updated>2014-02-17T14:36:08Z</updated>

		<summary type="html">&lt;p&gt;Teklab: Blanked the page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Teklab</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Category:Protein_expression&amp;diff=426</id>
		<title>Category:Protein expression</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Category:Protein_expression&amp;diff=426"/>
		<updated>2014-02-17T14:35:09Z</updated>

		<summary type="html">&lt;p&gt;Teklab: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[http://www.example.com Running SDS-PAGE]&lt;br /&gt;
&lt;br /&gt;
#Make ready the samples to run&lt;br /&gt;
#Make ready the sample running buffer&lt;br /&gt;
#Make ready the gel&lt;br /&gt;
#Have the SDS-PAGE apparatus&lt;br /&gt;
#Place the the gel in the SDS-PAGE stand&lt;br /&gt;
#Place the stand with the gel in the SDS-PAGE apparatus bath&lt;br /&gt;
#fill the space between the gels with running buffer&lt;br /&gt;
#Take off the cumbs of the gel (take it out gently)&lt;br /&gt;
#Load the sample to each well&lt;br /&gt;
#Do not use the wells at the left and right end of the gel &lt;br /&gt;
#fill the SDS-PAGE apparatus bath with running buffer to the bottom of the gel&lt;br /&gt;
#Place the cover of the SDS-PAGE &lt;br /&gt;
## &#039;&#039;&#039;N.B&#039;&#039;&#039; Make sure the correct plug is connected to the correct electrode (red goes to red and black goes to black)&lt;br /&gt;
#Plug the cables to the SDS-PAGE apparatus power source&lt;br /&gt;
#Turn of the SDS-PAGE power source&lt;br /&gt;
#Set to constant voltage&lt;br /&gt;
#Use 200 V &lt;br /&gt;
#Press the Run button to start the electrophoresis&lt;br /&gt;
## The voltage increases to 200 V from 0 V&lt;br /&gt;
##For 4% staking gel and 12.5 % separating gel the current reaches 50-60 mA and the power 10 -12 W&lt;br /&gt;
##The current the the power decreases in time but not reach zero (if it reaches zero see the troubleshoot)&lt;br /&gt;
##For the state type of gel it takes 35 - 40 min&lt;/div&gt;</summary>
		<author><name>Teklab</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Category:Protein_expression&amp;diff=425</id>
		<title>Category:Protein expression</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Category:Protein_expression&amp;diff=425"/>
		<updated>2014-02-17T14:26:15Z</updated>

		<summary type="html">&lt;p&gt;Teklab: Blanked the page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Teklab</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Category:Protein_expression&amp;diff=424</id>
		<title>Category:Protein expression</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Category:Protein_expression&amp;diff=424"/>
		<updated>2014-02-17T14:25:00Z</updated>

		<summary type="html">&lt;p&gt;Teklab: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Running SDS-PAGE==&lt;br /&gt;
&lt;br /&gt;
#Make ready the samples to run&lt;br /&gt;
#Make ready the sample running buffer&lt;br /&gt;
#Make ready the gel&lt;br /&gt;
#Have the SDS-PAGE apparatus&lt;br /&gt;
#Place the the gel in the SDS-PAGE stand&lt;br /&gt;
#Place the stand with the gel in the SDS-PAGE apparatus bath&lt;br /&gt;
#Fill the space between the gels with running buffer&lt;br /&gt;
#Take off the combs of the gel (take it out gently)&lt;br /&gt;
#Load the sample to each well&lt;br /&gt;
#Do not use the wells at the left and right end of the gel &lt;br /&gt;
#Fill the SDS-PAGE apparatus bath with running buffer to the bottom of the gel&lt;br /&gt;
#Place the cover of the SDS-PAGE &lt;br /&gt;
##&#039;&#039;&#039;N.B&#039;&#039;&#039;  Make sure the correct plug is connected to the correct electrode (red goes to red and black goes to black)&lt;br /&gt;
#Plug the cables to the SDS-PAGE apparatus power source&lt;br /&gt;
&lt;br /&gt;
#Turn of the SDS-PAGE power source&lt;br /&gt;
#Set to constant voltage&lt;br /&gt;
#Use 200 V &lt;br /&gt;
#Press the Run button to start the electrophoresis&lt;br /&gt;
##The voltage increases to 200 V from 0 V&lt;br /&gt;
##For 4% staking gel and 12.5 % separating gel the current reaches 50-60 mA and the power 10 -12 W&lt;br /&gt;
##The current and the power decreases in time but not reach zero (if it reaches zero see the troubleshoot)&lt;br /&gt;
##For the state type of gel it takes 35 - 40 min&lt;/div&gt;</summary>
		<author><name>Teklab</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Making_Heatmaps&amp;diff=352</id>
		<title>Making Heatmaps</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Making_Heatmaps&amp;diff=352"/>
		<updated>2012-12-04T05:20:40Z</updated>

		<summary type="html">&lt;p&gt;Teklab: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Load the data==&lt;br /&gt;
The data can be prepared in csv or text file to load the data in to R. For example, to load &#039;&#039;list.csv&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
 heatmapname &amp;lt;- read.csv (“list.csv”)&lt;br /&gt;
&lt;br /&gt;
==Name the rows==&lt;br /&gt;
You can then name the rows of the heatmap like so:&lt;br /&gt;
&lt;br /&gt;
 row.names(heatmapname) &amp;lt;- data$Name&lt;br /&gt;
&lt;br /&gt;
To exclude the first column from the heat map, use a command of similar form to the following:&lt;br /&gt;
&lt;br /&gt;
 heatmapname &amp;lt;- heatmapname [,2: n]&lt;br /&gt;
&lt;br /&gt;
In the above command, &#039;&#039;&#039;n&#039;&#039;&#039; is the number of columns to be included in the heat map.&lt;br /&gt;
&lt;br /&gt;
==Build a data matrix==&lt;br /&gt;
Use the following command to build a data matrix for making the heat map:&lt;br /&gt;
&lt;br /&gt;
 heatmapname_matrix &amp;lt;- data.matrix (heatmapname)&lt;br /&gt;
&lt;br /&gt;
==Plot the heat map==&lt;br /&gt;
&#039;&#039;&#039;Note: Gnuplot package must be installed in R before heat maps may be displayed!&#039;&#039;&#039; Run the following command to load in the &#039;&#039;gplots&#039;&#039; library.&lt;br /&gt;
&lt;br /&gt;
 library(&amp;quot;gplots&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
To make heat map, run the following command:&lt;br /&gt;
&lt;br /&gt;
 heatmap.2 (heatmapname_matrix, dendrogram=&amp;quot;row&amp;quot;, col= redgreen (75), scale=&amp;quot;none&amp;quot;,&lt;br /&gt;
 key = TRUE, keysize = 1.0, margins = c(4,30),&lt;br /&gt;
 density.info=&amp;quot;none&amp;quot;, trace=&amp;quot;none&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note: To rescale the color key, add break function to the heatmap.2. &#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;breaks=c(seq(-1,0.8,length=10),seq(0.8,1.2,length=10),seq(1.2,3,length=10),&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
This will define the color range:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;red=[-1,0.8]&lt;br /&gt;
&lt;br /&gt;
black=[0.8,1.2]&lt;br /&gt;
&lt;br /&gt;
green=[1.2,3]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
[[Category:Protocols]]&lt;br /&gt;
[[Category:Metabolomics]]&lt;br /&gt;
&lt;br /&gt;
==Run from text file==&lt;br /&gt;
&#039;&#039;&#039;Note: It is also possible to write all the steps in txt file as a single script.&#039;&#039;&#039; &lt;br /&gt;
===Open the script ===&lt;br /&gt;
* In the file menu click open script&lt;br /&gt;
** Choose the proper directory and script file name&lt;br /&gt;
** The script file will be opened in the R Editor window&lt;br /&gt;
** If necessary changes can be made on the R Editor window &lt;br /&gt;
&lt;br /&gt;
===Run the script ===&lt;br /&gt;
* Click Run all or Run line or selection form the Edit menu&lt;/div&gt;</summary>
		<author><name>Teklab</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Making_Heatmaps&amp;diff=351</id>
		<title>Making Heatmaps</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Making_Heatmaps&amp;diff=351"/>
		<updated>2012-12-04T05:20:09Z</updated>

		<summary type="html">&lt;p&gt;Teklab: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Load the data==&lt;br /&gt;
The data can be prepared in csv or text file to load the data in to R. For example, to load &#039;&#039;list.csv&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
 heatmapname &amp;lt;- read.csv (“list.csv”)&lt;br /&gt;
&lt;br /&gt;
==Name the rows==&lt;br /&gt;
You can then name the rows of the heatmap like so:&lt;br /&gt;
&lt;br /&gt;
 row.names(heatmapname) &amp;lt;- data$Name&lt;br /&gt;
&lt;br /&gt;
To exclude the first column from the heat map, use a command of similar form to the following:&lt;br /&gt;
&lt;br /&gt;
 heatmapname &amp;lt;- heatmapname [,2: n]&lt;br /&gt;
&lt;br /&gt;
In the above command, &#039;&#039;&#039;n&#039;&#039;&#039; is the number of columns to be included in the heat map.&lt;br /&gt;
&lt;br /&gt;
==Build a data matrix==&lt;br /&gt;
Use the following command to build a data matrix for making the heat map:&lt;br /&gt;
&lt;br /&gt;
 heatmapname_matrix &amp;lt;- data.matrix (heatmapname)&lt;br /&gt;
&lt;br /&gt;
==Plot the heat map==&lt;br /&gt;
&#039;&#039;&#039;Note: Gnuplot package must be installed in R before heat maps may be displayed!&#039;&#039;&#039; Run the following command to load in the &#039;&#039;gplots&#039;&#039; library.&lt;br /&gt;
&lt;br /&gt;
 library(&amp;quot;gplots&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
To make heat map, run the following command:&lt;br /&gt;
&lt;br /&gt;
 heatmap.2 (heatmapname_matrix, dendrogram=&amp;quot;row&amp;quot;, col= redgreen (75), scale=&amp;quot;none&amp;quot;,&lt;br /&gt;
 key = TRUE, keysize = 1.0, margins = c(4,30),&lt;br /&gt;
 density.info=&amp;quot;none&amp;quot;, trace=&amp;quot;none&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note: To rescale the color key, add break function to the heatmap.2. &#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;breaks=c(seq(-1,0.8,length=10),seq(0.8,1.2,length=10),seq(1.2,3,length=10),&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
This will define the color range:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;red=[-1,0.8]&lt;br /&gt;
&lt;br /&gt;
black=[0.8,1.2]&lt;br /&gt;
&lt;br /&gt;
green=[1.2,3]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
[[Category:Protocols]]&lt;br /&gt;
[[Category:Metabolomics]]&lt;br /&gt;
&lt;br /&gt;
==Run from text file==&lt;br /&gt;
&#039;&#039;&#039;Note: It is also possible to write all the steps in txt file as a single script.&#039;&#039;&#039; &lt;br /&gt;
===open the script ===&lt;br /&gt;
* In the file menu click open script&lt;br /&gt;
** Choose the proper directory and script file name&lt;br /&gt;
** The script file will be opened in the R Editor window&lt;br /&gt;
** If necessary changes can be made on the R Editor window &lt;br /&gt;
&lt;br /&gt;
===run the script ===&lt;br /&gt;
* Click Run all or Run line or selection form the Edit menu&lt;/div&gt;</summary>
		<author><name>Teklab</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Making_Heatmaps&amp;diff=350</id>
		<title>Making Heatmaps</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Making_Heatmaps&amp;diff=350"/>
		<updated>2012-12-04T05:05:22Z</updated>

		<summary type="html">&lt;p&gt;Teklab: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Load the data==&lt;br /&gt;
The data can be prepared in csv or text file to load the data in to R. For example, to load &#039;&#039;list.csv&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
 heatmapname &amp;lt;- read.csv (“list.csv”)&lt;br /&gt;
&lt;br /&gt;
==Name the rows==&lt;br /&gt;
You can then name the rows of the heatmap like so:&lt;br /&gt;
&lt;br /&gt;
 row.names(heatmapname) &amp;lt;- data$Name&lt;br /&gt;
&lt;br /&gt;
To exclude the first column from the heat map, use a command of similar form to the following:&lt;br /&gt;
&lt;br /&gt;
 heatmapname &amp;lt;- heatmapname [,2: n]&lt;br /&gt;
&lt;br /&gt;
In the above command, &#039;&#039;&#039;n&#039;&#039;&#039; is the number of columns to be included in the heat map.&lt;br /&gt;
&lt;br /&gt;
==Build a data matrix==&lt;br /&gt;
Use the following command to build a data matrix for making the heat map:&lt;br /&gt;
&lt;br /&gt;
 heatmapname_matrix &amp;lt;- data.matrix (heatmapname)&lt;br /&gt;
&lt;br /&gt;
==Plot the heat map==&lt;br /&gt;
&#039;&#039;&#039;Note: Gnuplot package must be installed in R before heat maps may be displayed!&#039;&#039;&#039; Run the following command to load in the &#039;&#039;gplots&#039;&#039; library.&lt;br /&gt;
&lt;br /&gt;
 library(&amp;quot;gplots&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
To make heat map, run the following command:&lt;br /&gt;
&lt;br /&gt;
 heatmap.2 (heatmapname_matrix, dendrogram=&amp;quot;row&amp;quot;, col= redgreen (75), scale=&amp;quot;none&amp;quot;,&lt;br /&gt;
 key = TRUE, keysize = 1.0, margins = c(4,30),&lt;br /&gt;
 density.info=&amp;quot;none&amp;quot;, trace=&amp;quot;none&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note: To rescale the color key, add break function to the heatmap.2. &#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;breaks=c(seq(-1,0.8,length=10),seq(0.8,1.2,length=10),seq(1.2,3,length=10),&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
This will define the color range:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;red=[-1,0.8]&lt;br /&gt;
&lt;br /&gt;
black=[0.8,1.2]&lt;br /&gt;
&lt;br /&gt;
green=[1.2,3]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
[[Category:Protocols]]&lt;br /&gt;
[[Category:Metabolomics]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;It is also possible to write all the steps in txt file as a single script.&#039;&#039;&#039; &lt;br /&gt;
===open the script ===&lt;br /&gt;
 *In the file menu click open script&lt;br /&gt;
 **choose the proper directory and script file name&lt;br /&gt;
 **the script file will be opened in the R Editor window&lt;br /&gt;
 ***If necessary changes can be made on the R Editor window &lt;br /&gt;
&lt;br /&gt;
 ===To run the script===&lt;br /&gt;
* click Run all or Run line or selection form the Edit menu&lt;/div&gt;</summary>
		<author><name>Teklab</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Making_Heatmaps&amp;diff=349</id>
		<title>Making Heatmaps</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Making_Heatmaps&amp;diff=349"/>
		<updated>2012-12-04T05:04:18Z</updated>

		<summary type="html">&lt;p&gt;Teklab: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Load the data==&lt;br /&gt;
The data can be prepared in csv or text file to load the data in to R. For example, to load &#039;&#039;list.csv&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
 heatmapname &amp;lt;- read.csv (“list.csv”)&lt;br /&gt;
&lt;br /&gt;
==Name the rows==&lt;br /&gt;
You can then name the rows of the heatmap like so:&lt;br /&gt;
&lt;br /&gt;
 row.names(heatmapname) &amp;lt;- data$Name&lt;br /&gt;
&lt;br /&gt;
To exclude the first column from the heat map, use a command of similar form to the following:&lt;br /&gt;
&lt;br /&gt;
 heatmapname &amp;lt;- heatmapname [,2: n]&lt;br /&gt;
&lt;br /&gt;
In the above command, &#039;&#039;&#039;n&#039;&#039;&#039; is the number of columns to be included in the heat map.&lt;br /&gt;
&lt;br /&gt;
==Build a data matrix==&lt;br /&gt;
Use the following command to build a data matrix for making the heat map:&lt;br /&gt;
&lt;br /&gt;
 heatmapname_matrix &amp;lt;- data.matrix (heatmapname)&lt;br /&gt;
&lt;br /&gt;
==Plot the heat map==&lt;br /&gt;
&#039;&#039;&#039;Note: Gnuplot package must be installed in R before heat maps may be displayed!&#039;&#039;&#039; Run the following command to load in the &#039;&#039;gplots&#039;&#039; library.&lt;br /&gt;
&lt;br /&gt;
 library(&amp;quot;gplots&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
To make heat map, run the following command:&lt;br /&gt;
&lt;br /&gt;
 heatmap.2 (heatmapname_matrix, dendrogram=&amp;quot;row&amp;quot;, col= redgreen (75), scale=&amp;quot;none&amp;quot;,&lt;br /&gt;
 key = TRUE, keysize = 1.0, margins = c(4,30),&lt;br /&gt;
 density.info=&amp;quot;none&amp;quot;, trace=&amp;quot;none&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note: To rescale the color key, add break function to the heatmap.2. &#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;breaks=c(seq(-1,0.8,length=10),seq(0.8,1.2,length=10),seq(1.2,3,length=10),&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
This will define the color range:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;red=[-1,0.8]&lt;br /&gt;
&lt;br /&gt;
black=[0.8,1.2]&lt;br /&gt;
&lt;br /&gt;
green=[1.2,3]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
[[Category:Protocols]]&lt;br /&gt;
[[Category:Metabolomics]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;It is also possible to write all the steps in txt file as a single script.&#039;&#039;&#039; &lt;br /&gt;
===open the script ===&lt;br /&gt;
 *In the file menu click open script&lt;br /&gt;
 **choose the proper directory and script file name&lt;br /&gt;
 **the script file will be opened in the R Editor window&lt;br /&gt;
 ***If necessary changes can be made on the R Editor window &lt;br /&gt;
 ===To run the script===&lt;br /&gt;
* click Run all or Run line or selection form the Edit menu&lt;/div&gt;</summary>
		<author><name>Teklab</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Making_Heatmaps&amp;diff=348</id>
		<title>Making Heatmaps</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Making_Heatmaps&amp;diff=348"/>
		<updated>2012-12-04T05:01:50Z</updated>

		<summary type="html">&lt;p&gt;Teklab: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Load the data==&lt;br /&gt;
The data can be prepared in csv or text file to load the data in to R. For example, to load &#039;&#039;list.csv&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
 heatmapname &amp;lt;- read.csv (“list.csv”)&lt;br /&gt;
&lt;br /&gt;
==Name the rows==&lt;br /&gt;
You can then name the rows of the heatmap like so:&lt;br /&gt;
&lt;br /&gt;
 row.names(heatmapname) &amp;lt;- data$Name&lt;br /&gt;
&lt;br /&gt;
To exclude the first column from the heat map, use a command of similar form to the following:&lt;br /&gt;
&lt;br /&gt;
 heatmapname &amp;lt;- heatmapname [,2: n]&lt;br /&gt;
&lt;br /&gt;
In the above command, &#039;&#039;&#039;n&#039;&#039;&#039; is the number of columns to be included in the heat map.&lt;br /&gt;
&lt;br /&gt;
==Build a data matrix==&lt;br /&gt;
Use the following command to build a data matrix for making the heat map:&lt;br /&gt;
&lt;br /&gt;
 heatmapname_matrix &amp;lt;- data.matrix (heatmapname)&lt;br /&gt;
&lt;br /&gt;
==Plot the heat map==&lt;br /&gt;
&#039;&#039;&#039;Note: Gnuplot package must be installed in R before heat maps may be displayed!&#039;&#039;&#039; Run the following command to load in the &#039;&#039;gplots&#039;&#039; library.&lt;br /&gt;
&lt;br /&gt;
 library(&amp;quot;gplots&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
To make heat map, run the following command:&lt;br /&gt;
&lt;br /&gt;
 heatmap.2 (heatmapname_matrix, dendrogram=&amp;quot;row&amp;quot;, col= redgreen (75), scale=&amp;quot;none&amp;quot;,&lt;br /&gt;
 key = TRUE, keysize = 1.0, margins = c(4,30),&lt;br /&gt;
 density.info=&amp;quot;none&amp;quot;, trace=&amp;quot;none&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note: To rescale the color key, add break function to the heatmap.2. &#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;breaks=c(seq(-1,0.8,length=10),seq(0.8,1.2,length=10),seq(1.2,3,length=10),&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
This will define the color range:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;red=[-1,0.8]&lt;br /&gt;
&lt;br /&gt;
black=[0.8,1.2]&lt;br /&gt;
&lt;br /&gt;
green=[1.2,3]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
[[Category:Protocols]]&lt;br /&gt;
[[Category:Metabolomics]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;It is also possible to write all the steps in txt file as a single script.&#039;&#039;&#039; &lt;br /&gt;
===open the script ===&lt;br /&gt;
 = In the file menu click open script&lt;br /&gt;
 =choose the proper directory and script file name&lt;br /&gt;
 = the script file will be opened in the R Editor window&lt;br /&gt;
 = If necessary changes can be made &lt;br /&gt;
 =To run the script click Run all or Run line or selection form the Edit menu&lt;/div&gt;</summary>
		<author><name>Teklab</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Making_Heatmaps&amp;diff=347</id>
		<title>Making Heatmaps</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Making_Heatmaps&amp;diff=347"/>
		<updated>2012-12-04T05:01:22Z</updated>

		<summary type="html">&lt;p&gt;Teklab: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Load the data==&lt;br /&gt;
The data can be prepared in csv or text file to load the data in to R. For example, to load &#039;&#039;list.csv&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
 heatmapname &amp;lt;- read.csv (“list.csv”)&lt;br /&gt;
&lt;br /&gt;
==Name the rows==&lt;br /&gt;
You can then name the rows of the heatmap like so:&lt;br /&gt;
&lt;br /&gt;
 row.names(heatmapname) &amp;lt;- data$Name&lt;br /&gt;
&lt;br /&gt;
To exclude the first column from the heat map, use a command of similar form to the following:&lt;br /&gt;
&lt;br /&gt;
 heatmapname &amp;lt;- heatmapname [,2: n]&lt;br /&gt;
&lt;br /&gt;
In the above command, &#039;&#039;&#039;n&#039;&#039;&#039; is the number of columns to be included in the heat map.&lt;br /&gt;
&lt;br /&gt;
==Build a data matrix==&lt;br /&gt;
Use the following command to build a data matrix for making the heat map:&lt;br /&gt;
&lt;br /&gt;
 heatmapname_matrix &amp;lt;- data.matrix (heatmapname)&lt;br /&gt;
&lt;br /&gt;
==Plot the heat map==&lt;br /&gt;
&#039;&#039;&#039;Note: Gnuplot package must be installed in R before heat maps may be displayed!&#039;&#039;&#039; Run the following command to load in the &#039;&#039;gplots&#039;&#039; library.&lt;br /&gt;
&lt;br /&gt;
 library(&amp;quot;gplots&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
To make heat map, run the following command:&lt;br /&gt;
&lt;br /&gt;
 heatmap.2 (heatmapname_matrix, dendrogram=&amp;quot;row&amp;quot;, col= redgreen (75), scale=&amp;quot;none&amp;quot;,&lt;br /&gt;
 key = TRUE, keysize = 1.0, margins = c(4,30),&lt;br /&gt;
 density.info=&amp;quot;none&amp;quot;, trace=&amp;quot;none&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note: To rescale the color key, add break function to the heatmap.2. &#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;breaks=c(seq(-1,0.8,length=10),seq(0.8,1.2,length=10),seq(1.2,3,length=10),&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
This will define the color range:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;red=[-1,0.8]&lt;br /&gt;
&lt;br /&gt;
black=[0.8,1.2]&lt;br /&gt;
&lt;br /&gt;
green=[1.2,3]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
[[Category:Protocols]]&lt;br /&gt;
[[Category:Metabolomics]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;It is also possible to write all the steps in txt file as a single script.&#039;&#039;&#039; &lt;br /&gt;
= = =open the script = = =&lt;br /&gt;
 = In the file menu click open script&lt;br /&gt;
 =choose the proper directory and script file name&lt;br /&gt;
 = the script file will be opened in the R Editor window&lt;br /&gt;
 = If necessary changes can be made &lt;br /&gt;
 =To run the script click Run all or Run line or selection form the Edit menu&lt;/div&gt;</summary>
		<author><name>Teklab</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Making_Heatmaps&amp;diff=346</id>
		<title>Making Heatmaps</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Making_Heatmaps&amp;diff=346"/>
		<updated>2012-12-04T05:01:07Z</updated>

		<summary type="html">&lt;p&gt;Teklab: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Load the data==&lt;br /&gt;
The data can be prepared in csv or text file to load the data in to R. For example, to load &#039;&#039;list.csv&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
 heatmapname &amp;lt;- read.csv (“list.csv”)&lt;br /&gt;
&lt;br /&gt;
==Name the rows==&lt;br /&gt;
You can then name the rows of the heatmap like so:&lt;br /&gt;
&lt;br /&gt;
 row.names(heatmapname) &amp;lt;- data$Name&lt;br /&gt;
&lt;br /&gt;
To exclude the first column from the heat map, use a command of similar form to the following:&lt;br /&gt;
&lt;br /&gt;
 heatmapname &amp;lt;- heatmapname [,2: n]&lt;br /&gt;
&lt;br /&gt;
In the above command, &#039;&#039;&#039;n&#039;&#039;&#039; is the number of columns to be included in the heat map.&lt;br /&gt;
&lt;br /&gt;
==Build a data matrix==&lt;br /&gt;
Use the following command to build a data matrix for making the heat map:&lt;br /&gt;
&lt;br /&gt;
 heatmapname_matrix &amp;lt;- data.matrix (heatmapname)&lt;br /&gt;
&lt;br /&gt;
==Plot the heat map==&lt;br /&gt;
&#039;&#039;&#039;Note: Gnuplot package must be installed in R before heat maps may be displayed!&#039;&#039;&#039; Run the following command to load in the &#039;&#039;gplots&#039;&#039; library.&lt;br /&gt;
&lt;br /&gt;
 library(&amp;quot;gplots&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
To make heat map, run the following command:&lt;br /&gt;
&lt;br /&gt;
 heatmap.2 (heatmapname_matrix, dendrogram=&amp;quot;row&amp;quot;, col= redgreen (75), scale=&amp;quot;none&amp;quot;,&lt;br /&gt;
 key = TRUE, keysize = 1.0, margins = c(4,30),&lt;br /&gt;
 density.info=&amp;quot;none&amp;quot;, trace=&amp;quot;none&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note: To rescale the color key, add break function to the heatmap.2. &#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;breaks=c(seq(-1,0.8,length=10),seq(0.8,1.2,length=10),seq(1.2,3,length=10),&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
This will define the color range:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;red=[-1,0.8]&lt;br /&gt;
&lt;br /&gt;
black=[0.8,1.2]&lt;br /&gt;
&lt;br /&gt;
green=[1.2,3]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
[[Category:Protocols]]&lt;br /&gt;
[[Category:Metabolomics]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;It is also possible to write all the steps in txt file as a single script.&#039;&#039;&#039; &lt;br /&gt;
= =open the script = = &lt;br /&gt;
 = In the file menu click open script&lt;br /&gt;
 =choose the proper directory and script file name&lt;br /&gt;
 = the script file will be opened in the R Editor window&lt;br /&gt;
 = If necessary changes can be made &lt;br /&gt;
 =To run the script click Run all or Run line or selection form the Edit menu&lt;/div&gt;</summary>
		<author><name>Teklab</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Vitamin_C_in_Juices&amp;diff=220</id>
		<title>Vitamin C in Juices</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Vitamin_C_in_Juices&amp;diff=220"/>
		<updated>2012-08-16T02:53:36Z</updated>

		<summary type="html">&lt;p&gt;Teklab: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Maxey Demos]]&lt;br /&gt;
&lt;br /&gt;
==Experimentation with Vitamin C==&lt;br /&gt;
Determine the Vitamin C content in various freshly squeezed fruit juices. Compare kiwis and oranges (really high) to peaches or apples (really low). Or, blend a vegetable in water to create a solution that can be tested. You will want to use cheesecloth to remove the fiber from the solution. Fiber is a good for you too by the way. Bell peppers are particularly high in Vitamin C but the green ones are supposed to have higher content than the red or orange ones. The Natural Hub has we page that lists the Vitamin C content of many fruits at: http://www.naturalhub.com/natural_food_guide_fruit_vitamin_c.htm&lt;br /&gt;
&lt;br /&gt;
===Materials===&lt;br /&gt;
&lt;br /&gt;
#Fruit juices and fruit drinks containing vitamin C (use 1.00 mL per experiment)&lt;br /&gt;
#Vitamin C Standard solution (1 mg/mL)(use 1.00 mL per experiment)&lt;br /&gt;
#Starch solution (sue 1.00 mL per experiment and control for 2.00 mL total)&lt;br /&gt;
#Iodine solution (we actually make I3 - ; need up to 1.00 mL per experiment, so need 2.00 L)&lt;br /&gt;
&lt;br /&gt;
===Procedure for fruit juice or drink===&lt;br /&gt;
&lt;br /&gt;
#Carefully squirt 1.0 mL of fruit juice or drink into a 10-mL graduate cylinder &lt;br /&gt;
#Carefully squirt 1.0 mL of starch solution in to the same 10-mL graduated cylinder&lt;br /&gt;
#Empty the contents of the cylinder into a small Erlenmeyer flask. &lt;br /&gt;
#Use a pipet bulb to add the iodine solution.&lt;br /&gt;
;Count the number of drops it takes to form a purple color. :Swirl the flask to make sure the solution stays purple. If it doesn’t, add one more drop.&lt;br /&gt;
#Report your number of drops to the assistant.&lt;br /&gt;
#Repeat the procedure with the vitamin C standard&lt;br /&gt;
&lt;br /&gt;
===Procedure for vitamin C standard===&lt;br /&gt;
&lt;br /&gt;
#Carefully squirt 1.0 mL of vitamin C standard into a 10-mL graduated cylinder&lt;br /&gt;
#Carefully squirt 1.0 mL of starch solution into the same 10-mL graduated cylinder &lt;br /&gt;
#Empty the contents of the cylinder into a small Erlenmeyer flask.&lt;br /&gt;
#Use a pipet bulb to add the iodine solution.&lt;br /&gt;
;Count the number of drops it takes to form a purple color. :Swirl the flask to make sure the solution stays purple. If it doesn’t, add one more drop.&lt;br /&gt;
#Report your number of drops to the assistant.&lt;br /&gt;
#You can calculate the mg vitamin C from the following equation:&lt;br /&gt;
;(number of drops to fruit juice) / (number of drops to Vitamin C standard), recorded in mg.&lt;br /&gt;
&lt;br /&gt;
The equation above has been simplified from this equation &lt;br /&gt;
Estimated Vitamin C content = (1 mL) x (1mg/mL) x (number of drops to fruit juice) / (number of drops to Vitamin C standard)&lt;/div&gt;</summary>
		<author><name>Teklab</name></author>
	</entry>
</feed>