<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://wiki.c2b2.columbia.edu/workbench/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Hall</id>
		<title>geWorkbench - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://wiki.c2b2.columbia.edu/workbench/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Hall"/>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php/Special:Contributions/Hall"/>
		<updated>2026-04-30T17:04:13Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.27.7</generator>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=Properties&amp;diff=3821</id>
		<title>Properties</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=Properties&amp;diff=3821"/>
				<updated>2006-11-28T17:41:19Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Components often want to store and retrieve configuration settings between invocations. An API is provided for this purpose.&lt;br /&gt;
&lt;br /&gt;
Configuration is handled by the setting and getting of properties using the [{{SERVER}}/workbench/api/org/geworkbench/engine/properties/PropertiesManager.html &amp;lt;tt&amp;gt;org.geworkbench.engine.properties.PropertiesManager&amp;lt;/tt&amp;gt;] class. A singleton instance is available to process requests.&lt;br /&gt;
&lt;br /&gt;
The two important methods of this class are:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
public void setProperty(Class componentClass, String key, String value) throws IOException;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
and&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
public String getProperty(Class componentClass, String key, String defaultValue) throws IOException;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The first parameter to both methods can be the &amp;lt;code&amp;gt;Class&amp;lt;/code&amp;gt; object of any class in your component. This is used to determine where the configuration will be stored. This class is mapped back to the component that it is associated with. The &amp;lt;code&amp;gt;defaultValue&amp;lt;/code&amp;gt; parameter of &amp;lt;code&amp;gt;getProperty&amp;lt;/code&amp;gt; will be the returned result if there is no known value for the specified key.&lt;br /&gt;
&lt;br /&gt;
Here is an example use of the properties manager:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
PropertiesManager.getInstance().setProperty(getClass(), &amp;quot;test&amp;quot;, &amp;quot;value&amp;quot;);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
and later...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
String value = PropertiesManager.getInstance().getProperty(getClass(), &amp;quot;test&amp;quot;, &amp;quot;Default Value&amp;quot;);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Setting the property will automatically cause the value to be saved to disk. The configuration file is an XML file stored in a &amp;lt;code&amp;gt;conf&amp;lt;/code&amp;gt; subdirectory of the component's working directory.&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=Plugins&amp;diff=3287</id>
		<title>Plugins</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=Plugins&amp;diff=3287"/>
				<updated>2006-07-07T17:41:41Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: /* Normalizers */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The geWorkbench platform employs a component repository infrastructure to manage a large collection of pluggable components that can be used to customize the application's graphical user interface. This (ever growing) list of plug-in components covers a wide range of fucntionality for a number of different genomic data modalities.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
==Microarray Visualization==&lt;br /&gt;
{|style=&amp;quot;border: 1px solid lightGray&amp;quot;&lt;br /&gt;
!Plugin||Description&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Color Mosaic||Heat maps for microarray expression data, organized by phenotypic or gene groupings ([[media:Color-mosaic.png|screenshot]]).&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Dendrogram||Tree-structured diagrams reflecting the results of hierarchical clustering analysis ([[media:Dendrogram.png|screenshot]]).&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Expression Profiles||Line graph of genes expression profiles across several arrays/ hybridizations ([[media:Expression-profile.png|screenshot]]).&lt;br /&gt;
|-	&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Expression Value Distribution||Distribution plot of marker expression values across one or more microarrays.&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Microarray Viewer||Color-gradient representation of gene expression values ([[media:Microarray-panel.png|screenshot]]).&lt;br /&gt;
|-	&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Scatter Plot	|| Pairwise (array vs. array and marker vs. marker) comparison and plotting of expression values ([[media:Scatterplot.png|screenshot]]).&lt;br /&gt;
|-	&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|SOM Clusters Viewer	||Visualization of gene clusters produced by the self-organizing maps analysis ([[media:Somcluster.png|screenshot]]).  &lt;br /&gt;
|-	&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Tabular Microarray Viewer|| Spreadsheet view of all expression measurement in an experiment, one row per individual marker/probe and one column per microarray ([[media:Tabular.png|screenshot]]).&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Data Management==&lt;br /&gt;
{|style=&amp;quot;border: 1px solid lightGray&amp;quot;&lt;br /&gt;
!Plugin||Description&lt;br /&gt;
|-	&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Marker Component	||Definition of data views consisting of marker subgroups. The views control the amount of data displayed.&lt;br /&gt;
|-	&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Phenotype/Array Component	||Definition of data views consisting of microarray subgroups. The views control the amount of data displayed.&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Normalizers==&lt;br /&gt;
{|style=&amp;quot;border: 1px solid lightGray&amp;quot;&lt;br /&gt;
!Plugin||Description&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Array-Based Centering||Subtraction of the mean or median measurement of a microarray from every measurement in that microarray.&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Marker-Based Centering||Subtraction of the mean or median measurement of a marker profile from every measurement in the profile.&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Mean-Variance Normalizer||Transformation of expression measurements to standard units: for every marker, the mean measurement of the marker profile (across all microarrays in an experiment) is subtracted from each measurement in the profile and the resulting value is divided by the standard deviation of the profile.&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Missing Value Calculation||Replacement of missing values with consensus values.&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Threshold Normalizer	||Adjustment of values that fall outside a user-specified threshold.&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Quantile	|| Expression measurements in each microarray are adjusted so that  the distribution of values is the same across all microarrays in an experiment.&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Housekeeping	|| Normalization of all measurements in a microarray through division by the average expression value of a (user defined) set of housekeeping genes.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Filters==&lt;br /&gt;
&lt;br /&gt;
{|style=&amp;quot;border: 1px solid lightGray&amp;quot;&lt;br /&gt;
!Plugin||Description&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Affy Detection Call||(''Affymetrix data only)'' Filtering of measurements based on the value of their &amp;quot;detection call&amp;quot; attribute.&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Deviation|| Filtering of markers with low dynamic range.&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Expression Threshold|| Elimination of measurements that fall outside a range of explression values.&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|2-channel Threshold||(''Genepix data only)'' Same as &amp;quot;Expression Threshold&amp;quot; filter but different threshold ranges can be specified for each channel.&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Genepix Flag Filter|| ''(Genepix data only)'' Filtering of measurements based on the value of their &amp;quot;Flags&amp;quot; attribute.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Annotation==&lt;br /&gt;
&lt;br /&gt;
{|style=&amp;quot;border: 1px solid lightGray&amp;quot;&lt;br /&gt;
!Plugin||Description&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Dataset History||Log of data transformations induced by data-modifying operations.&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Dataset Annotation||Free text format box used to annotate data, images and results. Such annotations persist application invocations and can be used as an online &amp;quot;lab notebook&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Experiment Information||Microarray machine parameters used in an experiment run. If available, high-level experiment information (e.g., purpose of of experiment) are also displayed.&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Marker Annotations||Retrieval of gene and pathway information for markers on a microarray.&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|caBIO Pathway Listing||Visualization of BioCarta pathway diagrams ([[media:Cabiopathway.png|screenshot]]).&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Gene Ontology||Enrichment analysis of selected groups of genes against Gene Ontology (http://www.geneontology.org) annotations ([[media:Go_Terms_Panel.png|screenshot]]).&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Network Generation==&lt;br /&gt;
&lt;br /&gt;
{|style=&amp;quot;border: 1px solid lightGray&amp;quot;&lt;br /&gt;
!Plugin||Description&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|ARACNE Reverse Engineering|| Analysis of large amount of microarray data (typically 100-500 microarrays) to reverse engineer underlying gene regulatory networks ([[media:Reverseengineering.png|screenshot]]).&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Cytoscape||Visualization of gene regulatory network created in Reverse Engineering using [http://www.cytoscape.org/ Cytoscape 2.0]([[media:Cytoscape.png|screenshot]]).&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Analysis==&lt;br /&gt;
&lt;br /&gt;
{|style=&amp;quot;border: 1px solid lightGray&amp;quot;&lt;br /&gt;
!Plugin||Description&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Hierarchical Clustering||Clustering of markers and microarrays into hierarchical binary trees. The resulting structures can be visualized in the Dendrogram plugin.&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Self Organizing Map (SOM)|| Clustering of markers using self organizing maps. The resulting clusters can be visualized in the SOM Clusters Viewer plugin.&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|T Test||Identification of markers with statistically significant differential expression between sets of microarrays. T-testing is used for the determination of significance ([[media:Volcanoplot.png|screenshot]]).&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Sequence Analysis &amp;amp; Visualization ==&lt;br /&gt;
{|style=&amp;quot;border: 1px solid lightGray&amp;quot;&lt;br /&gt;
!Plugin||Description&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Sequence Alignment||Server-based versions of BLAST and Smith-Waterman alignment ([[media:Synteny Blastresults.png|screenshot]]). &lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Synteny|| Comparison of sequence similarity between two genomic regions. The comparison results are represented as a dot matrix augmented with detailed annotation for both regions ([[media:Synteny Dotmatrix.png|screenshot]]).&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Promoter Analysis||Identification of putative transcription factor binding sites in DNA sequences ([[media:Promoterpanel.png|screenshot]]). The analysis use the profiles in the [http://jaspar.cgb.ki.se/cgi-bin/jaspar_db.pl JASPAR Transcription Factor Binding Profile Database.]&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Pattern  Discovery|| Discovery of sequence motifs in sets of DNA and protein sequences.&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Position Histogram || Visualization of results from the Pattern Discovery plugin. Motif/pattern support is plotted against relative sequence position of the motif match ([[media:Histogram.png|screenshot]]). &lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Sequence Panel || Visualization of results from the Pattern Discovery plugin, displaying the motif match location over each sequence from the input data set.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=Plugins&amp;diff=3285</id>
		<title>Plugins</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=Plugins&amp;diff=3285"/>
				<updated>2006-07-07T17:22:17Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: /* Normalizers */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The geWorkbench platform employs a component repository infrastructure to manage a large collection of pluggable components that can be used to customize the application's graphical user interface. This (ever growing) list of plug-in components covers a wide range of fucntionality for a number of different genomic data modalities.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
==Microarray Visualization==&lt;br /&gt;
{|style=&amp;quot;border: 1px solid lightGray&amp;quot;&lt;br /&gt;
!Plugin||Description&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Color Mosaic||Heat maps for microarray expression data, organized by phenotypic or gene groupings ([[media:Color-mosaic.png|screenshot]]).&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Dendrogram||Tree-structured diagrams reflecting the results of hierarchical clustering analysis ([[media:Dendrogram.png|screenshot]]).&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Expression Profiles||Line graph of genes expression profiles across several arrays/ hybridizations ([[media:Expression-profile.png|screenshot]]).&lt;br /&gt;
|-	&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Expression Value Distribution||Distribution plot of marker expression values across one or more microarrays.&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Microarray Viewer||Color-gradient representation of gene expression values ([[media:Microarray-panel.png|screenshot]]).&lt;br /&gt;
|-	&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Scatter Plot	|| Pairwise (array vs. array and marker vs. marker) comparison and plotting of expression values ([[media:Scatterplot.png|screenshot]]).&lt;br /&gt;
|-	&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|SOM Clusters Viewer	||Visualization of gene clusters produced by the self-organizing maps analysis ([[media:Somcluster.png|screenshot]]).  &lt;br /&gt;
|-	&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Tabular Microarray Viewer|| Spreadsheet view of all expression measurement in an experiment, one row per individual marker/probe and one column per microarray ([[media:Tabular.png|screenshot]]).&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Data Management==&lt;br /&gt;
{|style=&amp;quot;border: 1px solid lightGray&amp;quot;&lt;br /&gt;
!Plugin||Description&lt;br /&gt;
|-	&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Marker Component	||Definition of data views consisting of marker subgroups. The views control the amount of data displayed.&lt;br /&gt;
|-	&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Phenotype/Array Component	||Definition of data views consisting of microarray subgroups. The views control the amount of data displayed.&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Normalizers==&lt;br /&gt;
{|style=&amp;quot;border: 1px solid lightGray&amp;quot;&lt;br /&gt;
!Plugin||Description&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Array-Based Centering||Subtraction of the mean or median measurement of a microarray from every measurement in that microarray.&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Marker-Based Centering||Subtraction of the mean or median measurement of a marker profile from every measurement in the profile.&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Mean-Variance Normalizer||Transformation of expression measurements to standard units: for every marker, the mean measurement of the marker profile (across all microarrays in an experiment) is subtracted from each measurement in the profile and the resulting value is divided by the standard deviation of the profile.&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Missing Value Calculation||Replacement of missing values with consensus values.&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Threshold Normalizer	||Adjustment of values that fall outside a user-specified threshold.&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Quantile	|| Expression measurements in each microarray are adjusted so that  the distribution of values is the same across all microarrays in an experiment.&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Housekeeping	|| Normalization of all measurements in a microarray through division by the average expression value of a (user defined) set of housekeeping genes.&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|GCRMA via R	|| Uses R to perform GCRMA on CEL files. See [[Instructions for R Integration]].&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Filters==&lt;br /&gt;
&lt;br /&gt;
{|style=&amp;quot;border: 1px solid lightGray&amp;quot;&lt;br /&gt;
!Plugin||Description&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Affy Detection Call||(''Affymetrix data only)'' Filtering of measurements based on the value of their &amp;quot;detection call&amp;quot; attribute.&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Deviation|| Filtering of markers with low dynamic range.&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Expression Threshold|| Elimination of measurements that fall outside a range of explression values.&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|2-channel Threshold||(''Genepix data only)'' Same as &amp;quot;Expression Threshold&amp;quot; filter but different threshold ranges can be specified for each channel.&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Genepix Flag Filter|| ''(Genepix data only)'' Filtering of measurements based on the value of their &amp;quot;Flags&amp;quot; attribute.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Annotation==&lt;br /&gt;
&lt;br /&gt;
{|style=&amp;quot;border: 1px solid lightGray&amp;quot;&lt;br /&gt;
!Plugin||Description&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Dataset History||Log of data transformations induced by data-modifying operations.&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Dataset Annotation||Free text format box used to annotate data, images and results. Such annotations persist application invocations and can be used as an online &amp;quot;lab notebook&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Experiment Information||Microarray machine parameters used in an experiment run. If available, high-level experiment information (e.g., purpose of of experiment) are also displayed.&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Marker Annotations||Retrieval of gene and pathway information for markers on a microarray.&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|caBIO Pathway Listing||Visualization of BioCarta pathway diagrams ([[media:Cabiopathway.png|screenshot]]).&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Gene Ontology||Enrichment analysis of selected groups of genes against Gene Ontology (http://www.geneontology.org) annotations ([[media:Go_Terms_Panel.png|screenshot]]).&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Network Generation==&lt;br /&gt;
&lt;br /&gt;
{|style=&amp;quot;border: 1px solid lightGray&amp;quot;&lt;br /&gt;
!Plugin||Description&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|ARACNE Reverse Engineering|| Analysis of large amount of microarray data (typically 100-500 microarrays) to reverse engineer underlying gene regulatory networks ([[media:Reverseengineering.png|screenshot]]).&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Cytoscape||Visualization of gene regulatory network created in Reverse Engineering using [http://www.cytoscape.org/ Cytoscape 2.0]([[media:Cytoscape.png|screenshot]]).&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Analysis==&lt;br /&gt;
&lt;br /&gt;
{|style=&amp;quot;border: 1px solid lightGray&amp;quot;&lt;br /&gt;
!Plugin||Description&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Hierarchical Clustering||Clustering of markers and microarrays into hierarchical binary trees. The resulting structures can be visualized in the Dendrogram plugin.&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Self Organizing Map (SOM)|| Clustering of markers using self organizing maps. The resulting clusters can be visualized in the SOM Clusters Viewer plugin.&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|T Test||Identification of markers with statistically significant differential expression between sets of microarrays. T-testing is used for the determination of significance ([[media:Volcanoplot.png|screenshot]]).&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Sequence Analysis &amp;amp; Visualization ==&lt;br /&gt;
{|style=&amp;quot;border: 1px solid lightGray&amp;quot;&lt;br /&gt;
!Plugin||Description&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Sequence Alignment||Server-based versions of BLAST and Smith-Waterman alignment ([[media:Synteny Blastresults.png|screenshot]]). &lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Synteny|| Comparison of sequence similarity between two genomic regions. The comparison results are represented as a dot matrix augmented with detailed annotation for both regions ([[media:Synteny Dotmatrix.png|screenshot]]).&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Promoter Analysis||Identification of putative transcription factor binding sites in DNA sequences ([[media:Promoterpanel.png|screenshot]]). The analysis use the profiles in the [http://jaspar.cgb.ki.se/cgi-bin/jaspar_db.pl JASPAR Transcription Factor Binding Profile Database.]&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Pattern  Discovery|| Discovery of sequence motifs in sets of DNA and protein sequences.&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Position Histogram || Visualization of results from the Pattern Discovery plugin. Motif/pattern support is plotted against relative sequence position of the motif match ([[media:Histogram.png|screenshot]]). &lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;150&amp;quot;|Sequence Panel || Visualization of results from the Pattern Discovery plugin, displaying the motif match location over each sequence from the input data set.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=3281</id>
		<title>Screenshots</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=3281"/>
				<updated>2006-06-26T16:10:17Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== geWorkbench 3.0 screenshots ==&lt;br /&gt;
&lt;br /&gt;
=== Microarray Panel ===&lt;br /&gt;
The Microarray Panel displaying marker values for selected array.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[image:microarray-panel.png]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Color Mosaic ===&lt;br /&gt;
The Color Mosaic component displaying selected arrays, group designation and marker names.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:color-mosaic.png]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Expression Profile ===&lt;br /&gt;
Expression Profile plotting values for selected markers and arrays.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:expression-profile.png]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Hierarchical Clustering ===&lt;br /&gt;
A Dendrogram displays the results of the Hierarchical clustering analysis.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:dendrogram.png]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== SOM Clustering ===&lt;br /&gt;
Self Ordered Map clustering results are displayed as series of expression profiles corresponding to discovered groupings.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:somcluster.png]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Scatter Plot ===&lt;br /&gt;
Compare multiple markers or arrays with the standard Scatter Plot analysis.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:scatterplot.png]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Volcano Plot ===&lt;br /&gt;
The Volcano Plot shows the results of a T Test analysis.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:volcanoplot.png]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== caBIO Pathway ===&lt;br /&gt;
Using a connection to caBIO, pathway diagrams can be retrieved and displayed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:cabiopathway.png]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Reverse Engineering ===&lt;br /&gt;
Use the ARACNE algorithm to reverse engineer the underlying gene regulatory network.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:reverseengineering.png]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Cytoscape ===&lt;br /&gt;
Use the Cytoscape network visualization to view the reverse engineered regulatory network.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:cytoscape.png]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Pattern Discovery ===&lt;br /&gt;
Use the SPLASH algorithm to discover sparse amino or nucleic acid patterns in a loaded sequence.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:patterndiscovery.png]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Promoter Panel ===&lt;br /&gt;
The Promoter Panel uses the JASPAR Transcription Factor Binding Profile Database to search for promoter regions in the loaded sequence.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:promoterpanel.png]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== BLAST Queries ===&lt;br /&gt;
The BLAST panel runs queries against the Paracel Blast machine running at the Columbia Genome Center.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:blastresults.png]]&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=Magnet_components&amp;diff=3163</id>
		<title>Magnet components</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=Magnet_components&amp;diff=3163"/>
				<updated>2006-06-06T19:16:31Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==List of MAGNet Components==&lt;br /&gt;
Coming soon.&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=Magnet_components&amp;diff=3161</id>
		<title>Magnet components</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=Magnet_components&amp;diff=3161"/>
				<updated>2006-06-06T19:16:05Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: /* List of MAGNet Components */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==List of MAGNet Components==&lt;br /&gt;
Coming soon.&lt;br /&gt;
&lt;br /&gt;
[[Genomics Workbook]]&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1767</id>
		<title>Screenshots</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1767"/>
				<updated>2006-02-02T18:01:05Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== geWorkbench 3.0 screenshots ==&lt;br /&gt;
&lt;br /&gt;
=== Microarray Panel ===&lt;br /&gt;
The Microarray Panel displaying marker values for selected array.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[image:microarray-panel.png]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Color Mosaic ===&lt;br /&gt;
The Color Mosaic component displaying selected arrays, group designation and marker names.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:color-mosaic.png]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Tabular Microarray Panel ===&lt;br /&gt;
The Tabular Microarray Panel displays the raw values loaded from the data file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[image:tabular.png]]&lt;br /&gt;
&lt;br /&gt;
=== Expression Profile ===&lt;br /&gt;
Expression Profile plotting values for selected markers and arrays.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:expression-profile.png]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Hierarchical Clustering ===&lt;br /&gt;
A Dendrogram displays the results of the Hierarchical clustering analysis.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:dendrogram.png]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== SOM Clustering ===&lt;br /&gt;
Self Ordered Map clustering results are displayed as series of expression profiles corresponding to discovered groupings.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:somcluster.png]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Scatter Plot ===&lt;br /&gt;
Compare multiple markers or arrays with the standard Scatter Plot analysis.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:scatterplot.png]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Volcano Plot ===&lt;br /&gt;
The Volcano Plot shows the results of a T Test analysis.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:volcanoplot.png]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== caBIO Pathway ===&lt;br /&gt;
Using a connection to caBIO, pathway diagrams can be retrieved and displayed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:cabiopathway.png]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Reverse Engineering ===&lt;br /&gt;
Use the ARACNE algorithm to reverse engineer the underlying gene regulatory network.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:reverseengineering.png]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Cytoscape ===&lt;br /&gt;
Use the Cytoscape network visualization to view the reverse engineered regulatory network.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:cytoscape.png]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Pattern Discovery ===&lt;br /&gt;
Use the SPLASH algorithm to discover sparse amino or nucleic acid patterns in a loaded sequence.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:patterndiscovery.png]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Promoter Panel ===&lt;br /&gt;
The Promoter Panel uses the JASPAR Transcription Factor Binding Profile Database to search for promoter regions in the loaded sequence.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:promoterpanel.png]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== BLAST Queries ===&lt;br /&gt;
The BLAST panel runs queries against the Paracel Blast machine running at the Columbia Genome Center.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:blastresults.png]]&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1766</id>
		<title>Screenshots</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1766"/>
				<updated>2006-02-02T18:00:03Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== geWorkbench 3.0 screenshots ==&lt;br /&gt;
&lt;br /&gt;
=== Microarray Panel ===&lt;br /&gt;
The Microarray Panel displaying marker values for selected array.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[image:microarray-panel.png]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Color Mosaic ===&lt;br /&gt;
The Color Mosaic component displaying selected arrays, group designation and marker names.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:color-mosaic.png]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Tabular Microarray Panel ===&lt;br /&gt;
The Tabular Microarray Panel displays the raw values loaded from the data file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[image:tabular.png]]&lt;br /&gt;
&lt;br /&gt;
=== Expression Profile ===&lt;br /&gt;
Expression Profile plotting values for selected markers and arrays.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:expression-profile.png]]&lt;br /&gt;
&lt;br /&gt;
=== Hierarchical Clustering ===&lt;br /&gt;
A Dendrogram displays the results of the Hierarchical clustering analysis.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:dendrogram.png]]&lt;br /&gt;
&lt;br /&gt;
=== SOM Clustering ===&lt;br /&gt;
Self Ordered Map clustering results are displayed as series of expression profiles corresponding to discovered groupings.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:somcluster.png]]&lt;br /&gt;
&lt;br /&gt;
=== Scatter Plot ===&lt;br /&gt;
Compare multiple markers or arrays with the standard Scatter Plot analysis.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:scatterplot.png]]&lt;br /&gt;
&lt;br /&gt;
=== Volcano Plot ===&lt;br /&gt;
The Volcano Plot shows the results of a T Test analysis.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:volcanoplot.png]]&lt;br /&gt;
&lt;br /&gt;
=== caBIO Pathway ===&lt;br /&gt;
Using a connection to caBIO, pathway diagrams can be retrieved and displayed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:cabiopathway.png]]&lt;br /&gt;
&lt;br /&gt;
=== Reverse Engineering ===&lt;br /&gt;
Use the ARACNE algorithm to reverse engineer the underlying gene regulatory network.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:reverseengineering.png]]&lt;br /&gt;
&lt;br /&gt;
=== Cytoscape ===&lt;br /&gt;
Use the Cytoscape network visualization to view the reverse engineered regulatory network.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:cytoscape.png]]&lt;br /&gt;
&lt;br /&gt;
=== Pattern Discovery ===&lt;br /&gt;
Use the SPLASH algorithm to discover sparse amino or nucleic acid patterns in a loaded sequence.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:patterndiscovery.png]]&lt;br /&gt;
&lt;br /&gt;
=== Promoter Panel ===&lt;br /&gt;
The Promoter Panel uses the JASPAR Transcription Factor Binding Profile Database to search for promoter regions in the loaded sequence.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:promoterpanel.png]]&lt;br /&gt;
&lt;br /&gt;
=== BLAST Queries ===&lt;br /&gt;
The BLAST panel runs queries against the Paracel Blast machine running at the Columbia Genome Center.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:blastresults.png]]&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1765</id>
		<title>Screenshots</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1765"/>
				<updated>2006-02-02T17:59:30Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== geWorkbench 3.0 screenshots ==&lt;br /&gt;
&lt;br /&gt;
=== Microarray Panel ===&lt;br /&gt;
The Microarray Panel displaying marker values for selected array.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[image:microarray-panel.png]]&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
=== Color Mosaic ===&lt;br /&gt;
The Color Mosaic component displaying selected arrays, group designation and marker names.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:color-mosaic.png]]&lt;br /&gt;
---&lt;br /&gt;
&lt;br /&gt;
=== Tabular Microarray Panel ===&lt;br /&gt;
The Tabular Microarray Panel displays the raw values loaded from the data file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[image:tabular.png]]&lt;br /&gt;
&lt;br /&gt;
=== Expression Profile ===&lt;br /&gt;
Expression Profile plotting values for selected markers and arrays.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:expression-profile.png]]&lt;br /&gt;
&lt;br /&gt;
=== Hierarchical Clustering ===&lt;br /&gt;
A Dendrogram displays the results of the Hierarchical clustering analysis.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:dendrogram.png]]&lt;br /&gt;
&lt;br /&gt;
=== SOM Clustering ===&lt;br /&gt;
Self Ordered Map clustering results are displayed as series of expression profiles corresponding to discovered groupings.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:somcluster.png]]&lt;br /&gt;
&lt;br /&gt;
=== Scatter Plot ===&lt;br /&gt;
Compare multiple markers or arrays with the standard Scatter Plot analysis.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:scatterplot.png]]&lt;br /&gt;
&lt;br /&gt;
=== Volcano Plot ===&lt;br /&gt;
The Volcano Plot shows the results of a T Test analysis.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:volcanoplot.png]]&lt;br /&gt;
&lt;br /&gt;
=== caBIO Pathway ===&lt;br /&gt;
Using a connection to caBIO, pathway diagrams can be retrieved and displayed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:cabiopathway.png]]&lt;br /&gt;
&lt;br /&gt;
=== Reverse Engineering ===&lt;br /&gt;
Use the ARACNE algorithm to reverse engineer the underlying gene regulatory network.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:reverseengineering.png]]&lt;br /&gt;
&lt;br /&gt;
=== Cytoscape ===&lt;br /&gt;
Use the Cytoscape network visualization to view the reverse engineered regulatory network.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:cytoscape.png]]&lt;br /&gt;
&lt;br /&gt;
=== Pattern Discovery ===&lt;br /&gt;
Use the SPLASH algorithm to discover sparse amino or nucleic acid patterns in a loaded sequence.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:patterndiscovery.png]]&lt;br /&gt;
&lt;br /&gt;
=== Promoter Panel ===&lt;br /&gt;
The Promoter Panel uses the JASPAR Transcription Factor Binding Profile Database to search for promoter regions in the loaded sequence.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:promoterpanel.png]]&lt;br /&gt;
&lt;br /&gt;
=== BLAST Queries ===&lt;br /&gt;
The BLAST panel runs queries against the Paracel Blast machine running at the Columbia Genome Center.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:blastresults.png]]&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1764</id>
		<title>Screenshots</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1764"/>
				<updated>2006-02-02T17:59:15Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== geWorkbench 3.0 screenshots ==&lt;br /&gt;
&lt;br /&gt;
=== Microarray Panel ===&lt;br /&gt;
The Microarray Panel displaying marker values for selected array.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[image:microarray-panel.png]]&lt;br /&gt;
&lt;br /&gt;
=== Color Mosaic ===&lt;br /&gt;
The Color Mosaic component displaying selected arrays, group designation and marker names.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:color-mosaic.png]]&lt;br /&gt;
&lt;br /&gt;
=== Tabular Microarray Panel ===&lt;br /&gt;
The Tabular Microarray Panel displays the raw values loaded from the data file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[image:tabular.png]]&lt;br /&gt;
&lt;br /&gt;
=== Expression Profile ===&lt;br /&gt;
Expression Profile plotting values for selected markers and arrays.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:expression-profile.png]]&lt;br /&gt;
&lt;br /&gt;
=== Hierarchical Clustering ===&lt;br /&gt;
A Dendrogram displays the results of the Hierarchical clustering analysis.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:dendrogram.png]]&lt;br /&gt;
&lt;br /&gt;
=== SOM Clustering ===&lt;br /&gt;
Self Ordered Map clustering results are displayed as series of expression profiles corresponding to discovered groupings.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:somcluster.png]]&lt;br /&gt;
&lt;br /&gt;
=== Scatter Plot ===&lt;br /&gt;
Compare multiple markers or arrays with the standard Scatter Plot analysis.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:scatterplot.png]]&lt;br /&gt;
&lt;br /&gt;
=== Volcano Plot ===&lt;br /&gt;
The Volcano Plot shows the results of a T Test analysis.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:volcanoplot.png]]&lt;br /&gt;
&lt;br /&gt;
=== caBIO Pathway ===&lt;br /&gt;
Using a connection to caBIO, pathway diagrams can be retrieved and displayed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:cabiopathway.png]]&lt;br /&gt;
&lt;br /&gt;
=== Reverse Engineering ===&lt;br /&gt;
Use the ARACNE algorithm to reverse engineer the underlying gene regulatory network.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:reverseengineering.png]]&lt;br /&gt;
&lt;br /&gt;
=== Cytoscape ===&lt;br /&gt;
Use the Cytoscape network visualization to view the reverse engineered regulatory network.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:cytoscape.png]]&lt;br /&gt;
&lt;br /&gt;
=== Pattern Discovery ===&lt;br /&gt;
Use the SPLASH algorithm to discover sparse amino or nucleic acid patterns in a loaded sequence.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:patterndiscovery.png]]&lt;br /&gt;
&lt;br /&gt;
=== Promoter Panel ===&lt;br /&gt;
The Promoter Panel uses the JASPAR Transcription Factor Binding Profile Database to search for promoter regions in the loaded sequence.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:promoterpanel.png]]&lt;br /&gt;
&lt;br /&gt;
=== BLAST Queries ===&lt;br /&gt;
The BLAST panel runs queries against the Paracel Blast machine running at the Columbia Genome Center.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:blastresults.png]]&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1763</id>
		<title>Screenshots</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1763"/>
				<updated>2006-02-02T17:58:49Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== geWorkbench 3.0 screenshots ==&lt;br /&gt;
&lt;br /&gt;
=== Microarray Panel ===&lt;br /&gt;
The Microarray Panel displaying marker values for selected array.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[image:microarray-panel.png]]&lt;br /&gt;
&lt;br /&gt;
=== Color Mosaic ===&lt;br /&gt;
The Color Mosaic component displaying selected arrays, group designation and marker names.&lt;br /&gt;
&lt;br /&gt;
[[Image:color-mosaic.png]]&lt;br /&gt;
&lt;br /&gt;
=== Tabular Microarray Panel ===&lt;br /&gt;
The Tabular Microarray Panel displays the raw values loaded from the data file.&lt;br /&gt;
&lt;br /&gt;
[[image:tabular.png]]&lt;br /&gt;
&lt;br /&gt;
=== Expression Profile ===&lt;br /&gt;
Expression Profile plotting values for selected markers and arrays.&lt;br /&gt;
&lt;br /&gt;
[[Image:expression-profile.png]]&lt;br /&gt;
&lt;br /&gt;
=== Hierarchical Clustering ===&lt;br /&gt;
A Dendrogram displays the results of the Hierarchical clustering analysis.&lt;br /&gt;
[[Image:dendrogram.png]]&lt;br /&gt;
&lt;br /&gt;
=== SOM Clustering ===&lt;br /&gt;
Self Ordered Map clustering results are displayed as series of expression profiles corresponding to discovered groupings.&lt;br /&gt;
[[Image:somcluster.png]]&lt;br /&gt;
&lt;br /&gt;
=== Scatter Plot ===&lt;br /&gt;
Compare multiple markers or arrays with the standard Scatter Plot analysis.&lt;br /&gt;
[[Image:scatterplot.png]]&lt;br /&gt;
&lt;br /&gt;
=== Volcano Plot ===&lt;br /&gt;
The Volcano Plot shows the results of a T Test analysis.&lt;br /&gt;
[[Image:volcanoplot.png]]&lt;br /&gt;
&lt;br /&gt;
=== caBIO Pathway ===&lt;br /&gt;
Using a connection to caBIO, pathway diagrams can be retrieved and displayed.&lt;br /&gt;
[[Image:cabiopathway.png]]&lt;br /&gt;
&lt;br /&gt;
=== Reverse Engineering ===&lt;br /&gt;
Use the ARACNE algorithm to reverse engineer the underlying gene regulatory network.&lt;br /&gt;
[[Image:reverseengineering.png]]&lt;br /&gt;
&lt;br /&gt;
=== Cytoscape ===&lt;br /&gt;
Use the Cytoscape network visualization to view the reverse engineered regulatory network.&lt;br /&gt;
[[Image:cytoscape.png]]&lt;br /&gt;
&lt;br /&gt;
=== Pattern Discovery ===&lt;br /&gt;
Use the SPLASH algorithm to discover sparse amino or nucleic acid patterns in a loaded sequence.&lt;br /&gt;
[[Image:patterndiscovery.png]]&lt;br /&gt;
&lt;br /&gt;
=== Promoter Panel ===&lt;br /&gt;
The Promoter Panel uses the JASPAR Transcription Factor Binding Profile Database to search for promoter regions in the loaded sequence.&lt;br /&gt;
[[Image:promoterpanel.png]]&lt;br /&gt;
&lt;br /&gt;
=== BLAST Queries ===&lt;br /&gt;
The BLAST panel runs queries against the Paracel Blast machine running at the Columbia Genome Center.&lt;br /&gt;
[[Image:blastresults.png]]&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1762</id>
		<title>Screenshots</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1762"/>
				<updated>2006-02-02T17:58:34Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== geWorkbench 3.0 screenshots ==&lt;br /&gt;
&lt;br /&gt;
=== Microarray Panel ===&lt;br /&gt;
The Microarray Panel displaying marker values for selected array.&lt;br /&gt;
&lt;br /&gt;
[[image:microarray-panel.png]]&lt;br /&gt;
&lt;br /&gt;
=== Color Mosaic ===&lt;br /&gt;
The Color Mosaic component displaying selected arrays, group designation and marker names.&lt;br /&gt;
&lt;br /&gt;
[[Image:color-mosaic.png]]&lt;br /&gt;
&lt;br /&gt;
=== Tabular Microarray Panel ===&lt;br /&gt;
The Tabular Microarray Panel displays the raw values loaded from the data file.&lt;br /&gt;
&lt;br /&gt;
[[image:tabular.png]]&lt;br /&gt;
&lt;br /&gt;
=== Expression Profile ===&lt;br /&gt;
Expression Profile plotting values for selected markers and arrays.&lt;br /&gt;
&lt;br /&gt;
[[Image:expression-profile.png]]&lt;br /&gt;
&lt;br /&gt;
=== Hierarchical Clustering ===&lt;br /&gt;
A Dendrogram displays the results of the Hierarchical clustering analysis.&lt;br /&gt;
[[Image:dendrogram.png]]&lt;br /&gt;
&lt;br /&gt;
=== SOM Clustering ===&lt;br /&gt;
Self Ordered Map clustering results are displayed as series of expression profiles corresponding to discovered groupings.&lt;br /&gt;
[[Image:somcluster.png]]&lt;br /&gt;
&lt;br /&gt;
=== Scatter Plot ===&lt;br /&gt;
Compare multiple markers or arrays with the standard Scatter Plot analysis.&lt;br /&gt;
[[Image:scatterplot.png]]&lt;br /&gt;
&lt;br /&gt;
=== Volcano Plot ===&lt;br /&gt;
The Volcano Plot shows the results of a T Test analysis.&lt;br /&gt;
[[Image:volcanoplot.png]]&lt;br /&gt;
&lt;br /&gt;
=== caBIO Pathway ===&lt;br /&gt;
Using a connection to caBIO, pathway diagrams can be retrieved and displayed.&lt;br /&gt;
[[Image:cabiopathway.png]]&lt;br /&gt;
&lt;br /&gt;
=== Reverse Engineering ===&lt;br /&gt;
Use the ARACNE algorithm to reverse engineer the underlying gene regulatory network.&lt;br /&gt;
[[Image:reverseengineering.png]]&lt;br /&gt;
&lt;br /&gt;
=== Cytoscape ===&lt;br /&gt;
Use the Cytoscape network visualization to view the reverse engineered regulatory network.&lt;br /&gt;
[[Image:cytoscape.png]]&lt;br /&gt;
&lt;br /&gt;
=== Pattern Discovery ===&lt;br /&gt;
Use the SPLASH algorithm to discover sparse amino or nucleic acid patterns in a loaded sequence.&lt;br /&gt;
[[Image:patterndiscovery.png]]&lt;br /&gt;
&lt;br /&gt;
=== Promoter Panel ===&lt;br /&gt;
The Promoter Panel uses the JASPAR Transcription Factor Binding Profile Database to search for promoter regions in the loaded sequence.&lt;br /&gt;
[[Image:promoterpanel.png]]&lt;br /&gt;
&lt;br /&gt;
=== BLAST Queries ===&lt;br /&gt;
The BLAST panel runs queries against the Paracel Blast machine running at the Columbia Genome Center.&lt;br /&gt;
[[Image:blastresults.png]]&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1761</id>
		<title>Screenshots</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1761"/>
				<updated>2006-02-02T17:56:07Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== geWorkbench 3.0 screenshots ==&lt;br /&gt;
&lt;br /&gt;
=== Microarray Panel ===&lt;br /&gt;
The Microarray Panel displaying marker values for selected array.&lt;br /&gt;
[[image:microarray-panel.png]]&lt;br /&gt;
&lt;br /&gt;
=== Color Mosaic ===&lt;br /&gt;
The Color Mosaic component displaying selected arrays, group designation and marker names.&lt;br /&gt;
[[Image:color-mosaic.png]]&lt;br /&gt;
&lt;br /&gt;
=== Tabular Microarray Panel ===&lt;br /&gt;
The Tabular Microarray Panel displays the raw values loaded from the data file.&lt;br /&gt;
[[image:tabular.png]]&lt;br /&gt;
&lt;br /&gt;
=== Expression Profile ===&lt;br /&gt;
Expression Profile plotting values for selected markers and arrays.&lt;br /&gt;
[[Image:expression-profile.png]]&lt;br /&gt;
&lt;br /&gt;
=== Hierarchical Clustering ===&lt;br /&gt;
A Dendrogram displays the results of the Hierarchical clustering analysis.&lt;br /&gt;
[[Image:dendrogram.png]]&lt;br /&gt;
&lt;br /&gt;
=== SOM Clustering ===&lt;br /&gt;
Self Ordered Map clustering results are displayed as series of expression profiles corresponding to discovered groupings.&lt;br /&gt;
[[Image:somcluster.png]]&lt;br /&gt;
&lt;br /&gt;
=== Scatter Plot ===&lt;br /&gt;
Compare multiple markers or arrays with the standard Scatter Plot analysis.&lt;br /&gt;
[[Image:scatterplot.png]]&lt;br /&gt;
&lt;br /&gt;
=== Volcano Plot ===&lt;br /&gt;
The Volcano Plot shows the results of a T Test analysis.&lt;br /&gt;
[[Image:volcanoplot.png]]&lt;br /&gt;
&lt;br /&gt;
=== caBIO Pathway ===&lt;br /&gt;
Using a connection to caBIO, pathway diagrams can be retrieved and displayed.&lt;br /&gt;
[[Image:cabiopathway.png]]&lt;br /&gt;
&lt;br /&gt;
=== Reverse Engineering ===&lt;br /&gt;
Use the ARACNE algorithm to reverse engineer the underlying gene regulatory network.&lt;br /&gt;
[[Image:reverseengineering.png]]&lt;br /&gt;
&lt;br /&gt;
=== Cytoscape ===&lt;br /&gt;
Use the Cytoscape network visualization to view the reverse engineered regulatory network.&lt;br /&gt;
[[Image:cytoscape.png]]&lt;br /&gt;
&lt;br /&gt;
=== Pattern Discovery ===&lt;br /&gt;
Use the SPLASH algorithm to discover sparse amino or nucleic acid patterns in a loaded sequence.&lt;br /&gt;
[[Image:patterndiscovery.png]]&lt;br /&gt;
&lt;br /&gt;
=== Promoter Panel ===&lt;br /&gt;
The Promoter Panel uses the JASPAR Transcription Factor Binding Profile Database to search for promoter regions in the loaded sequence.&lt;br /&gt;
[[Image:promoterpanel.png]]&lt;br /&gt;
&lt;br /&gt;
=== BLAST Queries ===&lt;br /&gt;
The BLAST panel runs queries against the Paracel Blast machine running at the Columbia Genome Center.&lt;br /&gt;
[[Image:blastresults.png]]&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1760</id>
		<title>Screenshots</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1760"/>
				<updated>2006-02-02T17:55:17Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== geWorkbench 3.0 screenshots ==&lt;br /&gt;
&lt;br /&gt;
=== Microarray Panel ===&lt;br /&gt;
The Microarray Panel displaying marker values for selected array.&lt;br /&gt;
[[image:microarray-panel.png]]&lt;br /&gt;
&lt;br /&gt;
=== Color Mosaic ===&lt;br /&gt;
The Color Mosaic component displaying selected arrays, group designation and marker names.&lt;br /&gt;
[[Image:color-mosaic.png]]&lt;br /&gt;
&lt;br /&gt;
=== Tabular Microarray Panel ===&lt;br /&gt;
The Tabular Microarray Panel displays the raw values loaded from the data file.&lt;br /&gt;
[[image:tabular.png|frame]]&lt;br /&gt;
&lt;br /&gt;
=== Expression Profile ===&lt;br /&gt;
Expression Profile plotting values for selected markers and arrays.&lt;br /&gt;
[[Image:expression-profile.png|frame]]&lt;br /&gt;
&lt;br /&gt;
=== Hierarchical Clustering ===&lt;br /&gt;
A Dendrogram displays the results of the Hierarchical clustering analysis.&lt;br /&gt;
[[Image:dendrogram.png|frame]]&lt;br /&gt;
&lt;br /&gt;
=== SOM Clustering ===&lt;br /&gt;
Self Ordered Map clustering results are displayed as series of expression profiles corresponding to discovered groupings.&lt;br /&gt;
[[Image:somcluster.png|frame]]&lt;br /&gt;
&lt;br /&gt;
=== Scatter Plot ===&lt;br /&gt;
Compare multiple markers or arrays with the standard Scatter Plot analysis.&lt;br /&gt;
[[Image:scatterplot.png|frame]]&lt;br /&gt;
&lt;br /&gt;
=== Volcano Plot ===&lt;br /&gt;
The Volcano Plot shows the results of a T Test analysis.&lt;br /&gt;
[[Image:volcanoplot.png|frame]]&lt;br /&gt;
&lt;br /&gt;
=== caBIO Pathway ===&lt;br /&gt;
Using a connection to caBIO, pathway diagrams can be retrieved and displayed.&lt;br /&gt;
[[Image:cabiopathway.png|frame]]&lt;br /&gt;
&lt;br /&gt;
=== Reverse Engineering ===&lt;br /&gt;
Use the ARACNE algorithm to reverse engineer the underlying gene regulatory network.&lt;br /&gt;
[[Image:reverseengineering.png|frame]]&lt;br /&gt;
&lt;br /&gt;
=== Cytoscape ===&lt;br /&gt;
Use the Cytoscape network visualization to view the reverse engineered regulatory network.&lt;br /&gt;
[[Image:cytoscape.png|frame]]&lt;br /&gt;
&lt;br /&gt;
=== Pattern Discovery ===&lt;br /&gt;
Use the SPLASH algorithm to discover sparse amino or nucleic acid patterns in a loaded sequence.&lt;br /&gt;
[[Image:patterndiscovery.png|frame]]&lt;br /&gt;
&lt;br /&gt;
=== Promoter Panel ===&lt;br /&gt;
The Promoter Panel uses the JASPAR Transcription Factor Binding Profile Database to search for promoter regions in the loaded sequence.&lt;br /&gt;
[[Image:promoterpanel.png|frame]]&lt;br /&gt;
&lt;br /&gt;
=== BLAST Queries ===&lt;br /&gt;
The BLAST panel runs queries against the Paracel Blast machine running at the Columbia Genome Center.&lt;br /&gt;
[[Image:blastresults.png|frame]]&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1759</id>
		<title>Screenshots</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1759"/>
				<updated>2006-02-02T17:54:32Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== geWorkbench 3.0 screenshots ==&lt;br /&gt;
&lt;br /&gt;
=== Microarray Panel ===&lt;br /&gt;
The Microarray Panel displaying marker values for selected array.&lt;br /&gt;
[[image:microarray-panel.png|frame]]&lt;br /&gt;
&lt;br /&gt;
=== Color Mosaic ===&lt;br /&gt;
The Color Mosaic component displaying selected arrays, group designation and marker names.&lt;br /&gt;
[[Image:color-mosaic.png|frame]]&lt;br /&gt;
&lt;br /&gt;
=== Tabular Microarray Panel ===&lt;br /&gt;
The Tabular Microarray Panel displays the raw values loaded from the data file.&lt;br /&gt;
[[image:tabular.png|frame]]&lt;br /&gt;
&lt;br /&gt;
=== Expression Profile ===&lt;br /&gt;
Expression Profile plotting values for selected markers and arrays.&lt;br /&gt;
[[Image:expression-profile.png|frame]]&lt;br /&gt;
&lt;br /&gt;
=== Hierarchical Clustering ===&lt;br /&gt;
A Dendrogram displays the results of the Hierarchical clustering analysis.&lt;br /&gt;
[[Image:dendrogram.png|frame]]&lt;br /&gt;
&lt;br /&gt;
=== SOM Clustering ===&lt;br /&gt;
Self Ordered Map clustering results are displayed as series of expression profiles corresponding to discovered groupings.&lt;br /&gt;
[[Image:somcluster.png|frame]]&lt;br /&gt;
&lt;br /&gt;
=== Scatter Plot ===&lt;br /&gt;
Compare multiple markers or arrays with the standard Scatter Plot analysis.&lt;br /&gt;
[[Image:scatterplot.png|frame]]&lt;br /&gt;
&lt;br /&gt;
=== Volcano Plot ===&lt;br /&gt;
The Volcano Plot shows the results of a T Test analysis.&lt;br /&gt;
[[Image:volcanoplot.png|frame]]&lt;br /&gt;
&lt;br /&gt;
=== caBIO Pathway ===&lt;br /&gt;
Using a connection to caBIO, pathway diagrams can be retrieved and displayed.&lt;br /&gt;
[[Image:cabiopathway.png|frame]]&lt;br /&gt;
&lt;br /&gt;
=== Reverse Engineering ===&lt;br /&gt;
Use the ARACNE algorithm to reverse engineer the underlying gene regulatory network.&lt;br /&gt;
[[Image:reverseengineering.png|frame]]&lt;br /&gt;
&lt;br /&gt;
=== Cytoscape ===&lt;br /&gt;
Use the Cytoscape network visualization to view the reverse engineered regulatory network.&lt;br /&gt;
[[Image:cytoscape.png|frame]]&lt;br /&gt;
&lt;br /&gt;
=== Pattern Discovery ===&lt;br /&gt;
Use the SPLASH algorithm to discover sparse amino or nucleic acid patterns in a loaded sequence.&lt;br /&gt;
[[Image:patterndiscovery.png|frame]]&lt;br /&gt;
&lt;br /&gt;
=== Promoter Panel ===&lt;br /&gt;
The Promoter Panel uses the JASPAR Transcription Factor Binding Profile Database to search for promoter regions in the loaded sequence.&lt;br /&gt;
[[Image:promoterpanel.png|frame]]&lt;br /&gt;
&lt;br /&gt;
=== BLAST Queries ===&lt;br /&gt;
The BLAST panel runs queries against the Paracel Blast machine running at the Columbia Genome Center.&lt;br /&gt;
[[Image:blastresults.png|frame]]&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1757</id>
		<title>Screenshots</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1757"/>
				<updated>2006-02-02T17:53:06Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== geWorkbench 3.0 screenshots ==&lt;br /&gt;
&lt;br /&gt;
=== Microarray Panel ===&lt;br /&gt;
The Microarray Panel displaying marker values for selected array.&lt;br /&gt;
[[image:microarray-panel.png|frame]]&lt;br /&gt;
&lt;br /&gt;
=== Color Mosaic ===&lt;br /&gt;
[[Image:color-mosaic.png|frame|The Color Mosaic component displaying selected arrays, group designation and marker names.]]&lt;br /&gt;
&lt;br /&gt;
=== Tabular Microarray Panel ===&lt;br /&gt;
[[image:tabular.png|frame|The Tabular Microarray Panel displays the raw values loaded from the data file.]]&lt;br /&gt;
&lt;br /&gt;
=== Expression Profile ===&lt;br /&gt;
[[Image:expression-profile.png|frame|Expression Profile plotting values for selected markers and arrays.]]&lt;br /&gt;
&lt;br /&gt;
=== Hierarchical Clustering ===&lt;br /&gt;
[[Image:dendrogram.png|frame|A Dendrogram displays the results of the Hierarchical clustering analysis.]]&lt;br /&gt;
&lt;br /&gt;
=== SOM Clustering ===&lt;br /&gt;
[[Image:somcluster.png|frame|Self Ordered Map clustering results are displayed as series of expression profiles corresponding to discovered groupings.]]&lt;br /&gt;
&lt;br /&gt;
=== Scatter Plot ===&lt;br /&gt;
[[Image:scatterplot.png|frame|Compare multiple markers or arrays with the standard Scatter Plot analysis.]]&lt;br /&gt;
&lt;br /&gt;
=== Volcano Plot ===&lt;br /&gt;
[[Image:volcanoplot.png|frame|The Volcano Plot shows the results of a T Test analysis.]]&lt;br /&gt;
&lt;br /&gt;
=== caBIO Pathway ===&lt;br /&gt;
[[Image:cabiopathway.png|frame|Using a connection to caBIO, pathway diagrams can be retrieved and displayed.]]&lt;br /&gt;
&lt;br /&gt;
=== Reverse Engineering ===&lt;br /&gt;
[[Image:reverseengineering.png|frame|Use the ARACNE algorithm to reverse engineer the underlying gene regulatory network.]]&lt;br /&gt;
&lt;br /&gt;
=== Cytoscape ===&lt;br /&gt;
[[Image:cytoscape.png|frame|Use the Cytoscape network visualization to view the reverse engineered regulatory network.]]&lt;br /&gt;
&lt;br /&gt;
=== Pattern Discovery ===&lt;br /&gt;
[[Image:patterndiscovery.png|frame|Use the SPLASH algorithm to discover sparse amino or nucleic acid patterns in a loaded sequence.]]&lt;br /&gt;
&lt;br /&gt;
=== Promoter Panel ===&lt;br /&gt;
[[Image:promoterpanel.png|frame|The Promoter Panel uses the JASPAR Transcription Factor Binding Profile Database to search for promoter regions in the loaded sequence.]]&lt;br /&gt;
&lt;br /&gt;
=== BLAST Queries ===&lt;br /&gt;
[[Image:blastresults.png|frame|The BLAST panel runs queries against the Paracel Blast machine running at the Columbia Genome Center.]]&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1756</id>
		<title>Screenshots</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1756"/>
				<updated>2006-02-02T17:51:11Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: Reverted edit of Floratos, changed back to last version by Hall&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== geWorkbench 3.0 screenshots ==&lt;br /&gt;
&lt;br /&gt;
=== Microarray Panel ===&lt;br /&gt;
[[image:microarray-panel.png|frame|The Microarray Panel displaying marker values for selected array.]]&lt;br /&gt;
&lt;br /&gt;
=== Color Mosaic ===&lt;br /&gt;
[[Image:color-mosaic.png|frame|The Color Mosaic component displaying selected arrays, group designation and marker names.]]&lt;br /&gt;
&lt;br /&gt;
=== Tabular Microarray Panel ===&lt;br /&gt;
[[image:tabular.png|frame|The Tabular Microarray Panel displays the raw values loaded from the data file.]]&lt;br /&gt;
&lt;br /&gt;
=== Expression Profile ===&lt;br /&gt;
[[Image:expression-profile.png|frame|Expression Profile plotting values for selected markers and arrays.]]&lt;br /&gt;
&lt;br /&gt;
=== Hierarchical Clustering ===&lt;br /&gt;
[[Image:dendrogram.png|frame|A Dendrogram displays the results of the Hierarchical clustering analysis.]]&lt;br /&gt;
&lt;br /&gt;
=== SOM Clustering ===&lt;br /&gt;
[[Image:somcluster.png|frame|Self Ordered Map clustering results are displayed as series of expression profiles corresponding to discovered groupings.]]&lt;br /&gt;
&lt;br /&gt;
=== Scatter Plot ===&lt;br /&gt;
[[Image:scatterplot.png|frame|Compare multiple markers or arrays with the standard Scatter Plot analysis.]]&lt;br /&gt;
&lt;br /&gt;
=== Volcano Plot ===&lt;br /&gt;
[[Image:volcanoplot.png|frame|The Volcano Plot shows the results of a T Test analysis.]]&lt;br /&gt;
&lt;br /&gt;
=== caBIO Pathway ===&lt;br /&gt;
[[Image:cabiopathway.png|frame|Using a connection to caBIO, pathway diagrams can be retrieved and displayed.]]&lt;br /&gt;
&lt;br /&gt;
=== Reverse Engineering ===&lt;br /&gt;
[[Image:reverseengineering.png|frame|Use the ARACNE algorithm to reverse engineer the underlying gene regulatory network.]]&lt;br /&gt;
&lt;br /&gt;
=== Cytoscape ===&lt;br /&gt;
[[Image:cytoscape.png|frame|Use the Cytoscape network visualization to view the reverse engineered regulatory network.]]&lt;br /&gt;
&lt;br /&gt;
=== Pattern Discovery ===&lt;br /&gt;
[[Image:patterndiscovery.png|frame|Use the SPLASH algorithm to discover sparse amino or nucleic acid patterns in a loaded sequence.]]&lt;br /&gt;
&lt;br /&gt;
=== Promoter Panel ===&lt;br /&gt;
[[Image:promoterpanel.png|frame|The Promoter Panel uses the JASPAR Transcription Factor Binding Profile Database to search for promoter regions in the loaded sequence.]]&lt;br /&gt;
&lt;br /&gt;
=== BLAST Queries ===&lt;br /&gt;
[[Image:blastresults.png|frame|The BLAST panel runs queries against the Paracel Blast machine running at the Columbia Genome Center.]]&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1603</id>
		<title>Screenshots</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1603"/>
				<updated>2006-01-25T20:36:49Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== geWorkbench 3.0 screenshots ==&lt;br /&gt;
&lt;br /&gt;
=== Microarray Panel ===&lt;br /&gt;
[[image:microarray-panel.png|frame|The Microarray Panel displaying marker values for selected array.]]&lt;br /&gt;
&lt;br /&gt;
=== Color Mosaic ===&lt;br /&gt;
[[Image:color-mosaic.png|frame|The Color Mosaic component displaying selected arrays, group designation and marker names.]]&lt;br /&gt;
&lt;br /&gt;
=== Tabular Microarray Panel ===&lt;br /&gt;
[[image:tabular.png|frame|The Tabular Microarray Panel displays the raw values loaded from the data file.]]&lt;br /&gt;
&lt;br /&gt;
=== Expression Profile ===&lt;br /&gt;
[[Image:expression-profile.png|frame|Expression Profile plotting values for selected markers and arrays.]]&lt;br /&gt;
&lt;br /&gt;
=== Hierarchical Clustering ===&lt;br /&gt;
[[Image:dendrogram.png|frame|A Dendrogram displays the results of the Hierarchical clustering analysis.]]&lt;br /&gt;
&lt;br /&gt;
=== SOM Clustering ===&lt;br /&gt;
[[Image:somcluster.png|frame|Self Ordered Map clustering results are displayed as series of expression profiles corresponding to discovered groupings.]]&lt;br /&gt;
&lt;br /&gt;
=== Scatter Plot ===&lt;br /&gt;
[[Image:scatterplot.png|frame|Compare multiple markers or arrays with the standard Scatter Plot analysis.]]&lt;br /&gt;
&lt;br /&gt;
=== Volcano Plot ===&lt;br /&gt;
[[Image:volcanoplot.png|frame|The Volcano Plot shows the results of a T Test analysis.]]&lt;br /&gt;
&lt;br /&gt;
=== caBIO Pathway ===&lt;br /&gt;
[[Image:cabiopathway.png|frame|Using a connection to caBIO, pathway diagrams can be retrieved and displayed.]]&lt;br /&gt;
&lt;br /&gt;
=== Reverse Engineering ===&lt;br /&gt;
[[Image:reverseengineering.png|frame|Use the ARACNE algorithm to reverse engineer the underlying gene regulatory network.]]&lt;br /&gt;
&lt;br /&gt;
=== Cytoscape ===&lt;br /&gt;
[[Image:cytoscape.png|frame|Use the Cytoscape network visualization to view the reverse engineered regulatory network.]]&lt;br /&gt;
&lt;br /&gt;
=== Pattern Discovery ===&lt;br /&gt;
[[Image:patterndiscovery.png|frame|Use the SPLASH algorithm to discover sparse amino or nucleic acid patterns in a loaded sequence.]]&lt;br /&gt;
&lt;br /&gt;
=== Promoter Panel ===&lt;br /&gt;
[[Image:promoterpanel.png|frame|The Promoter Panel uses the JASPAR Transcription Factor Binding Profile Database to search for promoter regions in the loaded sequence.]]&lt;br /&gt;
&lt;br /&gt;
=== BLAST Queries ===&lt;br /&gt;
[[Image:blastresults.png|frame|The BLAST panel runs queries against the Paracel Blast machine running at the Columbia Genome Center.]]&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=File:Blastresults.png&amp;diff=1602</id>
		<title>File:Blastresults.png</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=File:Blastresults.png&amp;diff=1602"/>
				<updated>2006-01-25T20:34:21Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1601</id>
		<title>Screenshots</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1601"/>
				<updated>2006-01-25T20:24:49Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== geWorkbench 3.0 screenshots ==&lt;br /&gt;
&lt;br /&gt;
=== Microarray Panel ===&lt;br /&gt;
[[image:microarray-panel.png|frame|The Microarray Panel displaying marker values for selected array.]]&lt;br /&gt;
&lt;br /&gt;
=== Color Mosaic ===&lt;br /&gt;
[[Image:color-mosaic.png|frame|The Color Mosaic component displaying selected arrays, group designation and marker names.]]&lt;br /&gt;
&lt;br /&gt;
=== Tabular Microarray Panel ===&lt;br /&gt;
[[image:tabular.png|frame|The Tabular Microarray Panel displays the raw values loaded from the data file.]]&lt;br /&gt;
&lt;br /&gt;
=== Expression Profile ===&lt;br /&gt;
[[Image:expression-profile.png|frame|Expression Profile plotting values for selected markers and arrays.]]&lt;br /&gt;
&lt;br /&gt;
=== Hierarchical Clustering ===&lt;br /&gt;
[[Image:dendrogram.png|frame|A Dendrogram displays the results of the Hierarchical clustering analysis.]]&lt;br /&gt;
&lt;br /&gt;
=== SOM Clustering ===&lt;br /&gt;
[[Image:somcluster.png|frame|Self Ordered Map clustering results are displayed as series of expression profiles corresponding to discovered groupings.]]&lt;br /&gt;
&lt;br /&gt;
=== Scatter Plot ===&lt;br /&gt;
[[Image:scatterplot.png|frame|Compare multiple markers or arrays with the standard Scatter Plot analysis.]]&lt;br /&gt;
&lt;br /&gt;
=== Volcano Plot ===&lt;br /&gt;
[[Image:volcanoplot.png|frame|The Volcano Plot shows the results of a T Test analysis.]]&lt;br /&gt;
&lt;br /&gt;
=== caBIO Pathway ===&lt;br /&gt;
[[Image:cabiopathway.png|frame|Using a connection to caBIO, pathway diagrams can be retrieved and displayed.]]&lt;br /&gt;
&lt;br /&gt;
=== Reverse Engineering ===&lt;br /&gt;
[[Image:reverseengineering.png|frame|Use the ARACNE algorithm to reverse engineer the underlying gene regulatory network.]]&lt;br /&gt;
&lt;br /&gt;
=== Cytoscape ===&lt;br /&gt;
[[Image:cytoscape.png|frame|Use the Cytoscape network visualization to view the reverse engineered regulatory network.]]&lt;br /&gt;
&lt;br /&gt;
=== Pattern Discovery ===&lt;br /&gt;
[[Image:patterndiscovery.png|frame|Use the SPLASH algorithm to discover sparse amino or nucleic acid patterns in a loaded sequence.]]&lt;br /&gt;
&lt;br /&gt;
=== Promoter Panel ===&lt;br /&gt;
[[Image:promoterpanel.png|frame|The Promoter Panel uses the JASPAR Transcription Factor Binding Profile Database to search for promoter regions in the loaded sequence.]]&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=File:Promoterpanel.png&amp;diff=1600</id>
		<title>File:Promoterpanel.png</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=File:Promoterpanel.png&amp;diff=1600"/>
				<updated>2006-01-25T20:22:44Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1599</id>
		<title>Screenshots</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1599"/>
				<updated>2006-01-25T19:53:22Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== geWorkbench 3.0 screenshots ==&lt;br /&gt;
&lt;br /&gt;
=== Microarray Panel ===&lt;br /&gt;
[[image:microarray-panel.png|frame|The Microarray Panel displaying marker values for selected array.]]&lt;br /&gt;
&lt;br /&gt;
=== Color Mosaic ===&lt;br /&gt;
[[Image:color-mosaic.png|frame|The Color Mosaic component displaying selected arrays, group designation and marker names.]]&lt;br /&gt;
&lt;br /&gt;
=== Tabular Microarray Panel ===&lt;br /&gt;
[[image:tabular.png|frame|The Tabular Microarray Panel displays the raw values loaded from the data file.]]&lt;br /&gt;
&lt;br /&gt;
=== Expression Profile ===&lt;br /&gt;
[[Image:expression-profile.png|frame|Expression Profile plotting values for selected markers and arrays.]]&lt;br /&gt;
&lt;br /&gt;
=== Hierarchical Clustering ===&lt;br /&gt;
[[Image:dendrogram.png|frame|A Dendrogram displays the results of the Hierarchical clustering analysis.]]&lt;br /&gt;
&lt;br /&gt;
=== SOM Clustering ===&lt;br /&gt;
[[Image:somcluster.png|frame|Self Ordered Map clustering results are displayed as series of expression profiles corresponding to discovered groupings.]]&lt;br /&gt;
&lt;br /&gt;
=== Scatter Plot ===&lt;br /&gt;
[[Image:scatterplot.png|frame|Compare multiple markers or arrays with the standard Scatter Plot analysis.]]&lt;br /&gt;
&lt;br /&gt;
=== Volcano Plot ===&lt;br /&gt;
[[Image:volcanoplot.png|frame|The Volcano Plot shows the results of a T Test analysis.]]&lt;br /&gt;
&lt;br /&gt;
=== caBIO Pathway ===&lt;br /&gt;
[[Image:cabiopathway.png|frame|Using a connection to caBIO, pathway diagrams can be retrieved and displayed.]]&lt;br /&gt;
&lt;br /&gt;
=== Reverse Engineering ===&lt;br /&gt;
[[Image:reverseengineering.png|frame|Use the ARACNE algorithm to reverse engineer the underlying gene regulatory network.]]&lt;br /&gt;
&lt;br /&gt;
=== Cytoscape ===&lt;br /&gt;
[[Image:cytoscape.png|frame|Use the Cytoscape network visualization to view the reverse engineered regulatory network.]]&lt;br /&gt;
&lt;br /&gt;
=== Pattern Discovery ===&lt;br /&gt;
[[Image:patterndiscovery.png|frame|Use the SPLASH algorithm to discover sparse amino or nucleic acid patterns in a loaded sequence.]]&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=File:Patterndiscovery.png&amp;diff=1598</id>
		<title>File:Patterndiscovery.png</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=File:Patterndiscovery.png&amp;diff=1598"/>
				<updated>2006-01-25T19:52:04Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1597</id>
		<title>Screenshots</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1597"/>
				<updated>2006-01-25T19:43:03Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== geWorkbench 3.0 screenshots ==&lt;br /&gt;
&lt;br /&gt;
=== Microarray Panel ===&lt;br /&gt;
[[image:microarray-panel.png|frame|The Microarray Panel displaying marker values for selected array.]]&lt;br /&gt;
&lt;br /&gt;
=== Color Mosaic ===&lt;br /&gt;
[[Image:color-mosaic.png|frame|The Color Mosaic component displaying selected arrays, group designation and marker names.]]&lt;br /&gt;
&lt;br /&gt;
=== Tabular Microarray Panel ===&lt;br /&gt;
[[image:tabular.png|frame|The Tabular Microarray Panel displays the raw values loaded from the data file.]]&lt;br /&gt;
&lt;br /&gt;
=== Expression Profile ===&lt;br /&gt;
[[Image:expression-profile.png|frame|Expression Profile plotting values for selected markers and arrays.]]&lt;br /&gt;
&lt;br /&gt;
=== Hierarchical Clustering ===&lt;br /&gt;
[[Image:dendrogram.png|frame|A Dendrogram displays the results of the Hierarchical clustering analysis.]]&lt;br /&gt;
&lt;br /&gt;
=== SOM Clustering ===&lt;br /&gt;
[[Image:somcluster.png|frame|Self Ordered Map clustering results are displayed as series of expression profiles corresponding to discovered groupings.]]&lt;br /&gt;
&lt;br /&gt;
=== Scatter Plot ===&lt;br /&gt;
[[Image:scatterplot.png|frame|Compare multiple markers or arrays with the standard Scatter Plot analysis.]]&lt;br /&gt;
&lt;br /&gt;
=== Volcano Plot ===&lt;br /&gt;
[[Image:volcanoplot.png|frame|The Volcano Plot shows the results of a T Test analysis.]]&lt;br /&gt;
&lt;br /&gt;
=== caBIO Pathway ===&lt;br /&gt;
[[Image:cabiopathway.png|frame|Using a connection to caBIO, pathway diagrams can be retrieved and displayed.]]&lt;br /&gt;
&lt;br /&gt;
=== Reverse Engineering ===&lt;br /&gt;
[[Image:reverseengineering.png|frame|Use the ARACNE algorithm to reverse engineer the underlying gene regulatory network.]]&lt;br /&gt;
&lt;br /&gt;
=== Cytoscape ===&lt;br /&gt;
[[Image:cytoscape.png|frame|Use the Cytoscape network visualization to view the reverse engineered regulatory network.]]&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=File:Cytoscape.png&amp;diff=1596</id>
		<title>File:Cytoscape.png</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=File:Cytoscape.png&amp;diff=1596"/>
				<updated>2006-01-25T19:41:18Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=File:Reverseengineering.png&amp;diff=1595</id>
		<title>File:Reverseengineering.png</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=File:Reverseengineering.png&amp;diff=1595"/>
				<updated>2006-01-25T19:41:12Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1594</id>
		<title>Screenshots</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1594"/>
				<updated>2006-01-25T19:31:05Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== geWorkbench 3.0 screenshots ==&lt;br /&gt;
&lt;br /&gt;
=== Microarray Panel ===&lt;br /&gt;
[[image:microarray-panel.png|frame|The Microarray Panel displaying marker values for selected array.]]&lt;br /&gt;
&lt;br /&gt;
=== Color Mosaic ===&lt;br /&gt;
[[Image:color-mosaic.png|frame|The Color Mosaic component displaying selected arrays, group designation and marker names.]]&lt;br /&gt;
&lt;br /&gt;
=== Tabular Microarray Panel ===&lt;br /&gt;
[[image:tabular.png|frame|The Tabular Microarray Panel displays the raw values loaded from the data file.]]&lt;br /&gt;
&lt;br /&gt;
=== Expression Profile ===&lt;br /&gt;
[[Image:expression-profile.png|frame|Expression Profile plotting values for selected markers and arrays.]]&lt;br /&gt;
&lt;br /&gt;
=== Hierarchical Clustering ===&lt;br /&gt;
[[Image:dendrogram.png|frame|A Dendrogram displays the results of the Hierarchical clustering analysis.]]&lt;br /&gt;
&lt;br /&gt;
=== SOM Clustering ===&lt;br /&gt;
[[Image:somcluster.png|frame|Self Ordered Map clustering results are displayed as series of expression profiles corresponding to discovered groupings.]]&lt;br /&gt;
&lt;br /&gt;
=== Scatter Plot ===&lt;br /&gt;
[[Image:scatterplot.png|frame|Compare multiple markers or arrays with the standard Scatter Plot analysis.]]&lt;br /&gt;
&lt;br /&gt;
=== Volcano Plot ===&lt;br /&gt;
[[Image:volcanoplot.png|frame|The Volcano Plot shows the results of a T Test analysis.]]&lt;br /&gt;
&lt;br /&gt;
=== caBIO Pathway ===&lt;br /&gt;
[[Image:cabiopathway.png|frame|Using a connection to caBIO, pathway diagrams can be retrieved and displayed.]]&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=File:Cabiopathway.png&amp;diff=1593</id>
		<title>File:Cabiopathway.png</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=File:Cabiopathway.png&amp;diff=1593"/>
				<updated>2006-01-25T19:30:28Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1592</id>
		<title>Screenshots</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1592"/>
				<updated>2006-01-25T19:26:40Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== geWorkbench 3.0 screenshots ==&lt;br /&gt;
&lt;br /&gt;
=== Microarray Panel ===&lt;br /&gt;
[[image:microarray-panel.png|frame|The Microarray Panel displaying marker values for selected array.]]&lt;br /&gt;
&lt;br /&gt;
=== Color Mosaic ===&lt;br /&gt;
[[Image:color-mosaic.png|frame|The Color Mosaic component displaying selected arrays, group designation and marker names.]]&lt;br /&gt;
&lt;br /&gt;
=== Tabular Microarray Panel ===&lt;br /&gt;
[[image:tabular.png|frame|The Tabular Microarray Panel displays the raw values loaded from the data file.]]&lt;br /&gt;
&lt;br /&gt;
=== Expression Profile ===&lt;br /&gt;
[[Image:expression-profile.png|frame|Expression Profile plotting values for selected markers and arrays.]]&lt;br /&gt;
&lt;br /&gt;
=== Hierarchical Clustering ===&lt;br /&gt;
[[Image:dendrogram.png|frame|A Dendrogram displays the results of the Hierarchical clustering analysis.]]&lt;br /&gt;
&lt;br /&gt;
=== SOM Clustering ===&lt;br /&gt;
[[Image:somcluster.png|frame|Self Ordered Map clustering results are displayed as series of expression profiles corresponding to discovered groupings.]]&lt;br /&gt;
&lt;br /&gt;
=== Scatter Plot ===&lt;br /&gt;
[[Image:scatterplot.png|frame|Compare multiple markers or arrays with the standard Scatter Plot analysis.]]&lt;br /&gt;
&lt;br /&gt;
=== Volcano Plot ===&lt;br /&gt;
[[Image:volcanoplot.png|frame|The Volcano Plot shows the results of a T Test analysis.]]&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=File:Volcanoplot.png&amp;diff=1591</id>
		<title>File:Volcanoplot.png</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=File:Volcanoplot.png&amp;diff=1591"/>
				<updated>2006-01-25T19:25:58Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1590</id>
		<title>Screenshots</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1590"/>
				<updated>2006-01-25T19:24:06Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== geWorkbench 3.0 screenshots ==&lt;br /&gt;
&lt;br /&gt;
=== Microarray Panel ===&lt;br /&gt;
[[image:microarray-panel.png|frame|The Microarray Panel displaying marker values for selected array.]]&lt;br /&gt;
&lt;br /&gt;
=== Color Mosaic ===&lt;br /&gt;
[[Image:color-mosaic.png|frame|The Color Mosaic component displaying selected arrays, group designation and marker names.]]&lt;br /&gt;
&lt;br /&gt;
=== Tabular Microarray Panel ===&lt;br /&gt;
[[image:tabular.png|frame|The Tabular Microarray Panel displays the raw values loaded from the data file.]]&lt;br /&gt;
&lt;br /&gt;
=== Expression Profile ===&lt;br /&gt;
[[Image:expression-profile.png|frame|Expression Profile plotting values for selected markers and arrays.]]&lt;br /&gt;
&lt;br /&gt;
=== Hierarchical Clustering ===&lt;br /&gt;
[[Image:dendrogram.png|frame|A Dendrogram displays the results of the Hierarchical clustering analysis.]]&lt;br /&gt;
&lt;br /&gt;
=== SOM Clustering ===&lt;br /&gt;
[[Image:somcluster.png|frame|Self Ordered Map clustering results are displayed as series of expression profiles corresponding to discovered groupings.]]&lt;br /&gt;
&lt;br /&gt;
=== Scatter Plot ===&lt;br /&gt;
[[Image:scatterplot.png|frame|Compare multiple markers or arrays with the standard Scatter Plot analysis.]]&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=File:Scatterplot.png&amp;diff=1589</id>
		<title>File:Scatterplot.png</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=File:Scatterplot.png&amp;diff=1589"/>
				<updated>2006-01-25T19:23:28Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1588</id>
		<title>Screenshots</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1588"/>
				<updated>2006-01-25T19:21:46Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== geWorkbench 3.0 screenshots ==&lt;br /&gt;
&lt;br /&gt;
=== Microarray Panel ===&lt;br /&gt;
[[image:microarray-panel.png|frame|The Microarray Panel displaying marker values for selected array.]]&lt;br /&gt;
&lt;br /&gt;
=== Color Mosaic ===&lt;br /&gt;
[[Image:color-mosaic.png|frame|The Color Mosaic component displaying selected arrays, group designation and marker names.]]&lt;br /&gt;
&lt;br /&gt;
=== Tabular Microarray Panel ===&lt;br /&gt;
[[image:tabular.png|frame|The Tabular Microarray Panel displays the raw values loaded from the data file.]]&lt;br /&gt;
&lt;br /&gt;
=== Expression Profile ===&lt;br /&gt;
[[Image:expression-profile.png|frame|Expression Profile plotting values for selected markers and arrays.]]&lt;br /&gt;
&lt;br /&gt;
=== Hierarchical Clustering ===&lt;br /&gt;
[[Image:dendrogram.png|frame|A Dendrogram displays the results of the Hierarchical clustering analysis.]]&lt;br /&gt;
&lt;br /&gt;
=== SOM Clustering ===&lt;br /&gt;
[[Image:somcluster.png|frame|Self Ordered Map clustering results are displayed as series of expression profiles corresponding to discovered groupings.]]&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1587</id>
		<title>Screenshots</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1587"/>
				<updated>2006-01-25T19:21:35Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== geWorkbench 3.0 screenshots ==&lt;br /&gt;
&lt;br /&gt;
=== Microarray Panel ===&lt;br /&gt;
[[image:microarray-panel.png|frame|The Microarray Panel displaying marker values for selected array.]]&lt;br /&gt;
&lt;br /&gt;
=== Color Mosaic ===&lt;br /&gt;
[[Image:color-mosaic.png|frame|The Color Mosaic component displaying selected arrays, group designation and marker names.]]&lt;br /&gt;
&lt;br /&gt;
=== Tabular Microarray Panel ===&lt;br /&gt;
[[image:tabular.png|frame|The Tabular Microarray Panel displays the raw values loaded from the data file.]]&lt;br /&gt;
&lt;br /&gt;
=== Expression Profile ===&lt;br /&gt;
[[Image:expression-profile.png|frame|Expression Profile plotting values for selected markers and arrays.]]&lt;br /&gt;
&lt;br /&gt;
=== Hierarchical Clustering ===&lt;br /&gt;
[[Image:dendrogram.png|frame|A Dendrogram displays the results of the Hierarchical clustering analysis.]]&lt;br /&gt;
&lt;br /&gt;
=== SOM Clustering ===&lt;br /&gt;
[[Image:dendrogram.png|frame|Self Ordered Map clustering results are displayed as series of expression profiles corresponding to discovered groupings.]]&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=File:Somcluster.png&amp;diff=1586</id>
		<title>File:Somcluster.png</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=File:Somcluster.png&amp;diff=1586"/>
				<updated>2006-01-25T19:20:30Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1585</id>
		<title>Screenshots</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1585"/>
				<updated>2006-01-25T19:19:32Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== geWorkbench 3.0 screenshots ==&lt;br /&gt;
&lt;br /&gt;
=== Microarray Panel ===&lt;br /&gt;
[[image:microarray-panel.png|frame|The Microarray Panel displaying marker values for selected array.]]&lt;br /&gt;
&lt;br /&gt;
=== Color Mosaic ===&lt;br /&gt;
[[Image:color-mosaic.png|frame|The Color Mosaic component displaying selected arrays, group designation and marker names.]]&lt;br /&gt;
&lt;br /&gt;
=== Tabular Microarray Panel ===&lt;br /&gt;
[[image:tabular.png|frame|The Tabular Microarray Panel displays the raw values loaded from the data file.]]&lt;br /&gt;
&lt;br /&gt;
=== Expression Profile ===&lt;br /&gt;
[[Image:expression-profile.png|frame|Expression Profile plotting values for selected markers and arrays.]]&lt;br /&gt;
&lt;br /&gt;
=== Hierarchical Clustering ===&lt;br /&gt;
[[Image:dendrogram.png|frame|A Dendrogram displays the results of the Hierarchical clustering analysis.]]&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1584</id>
		<title>Screenshots</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1584"/>
				<updated>2006-01-25T19:18:39Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== geWorkbench 3.0 screenshots ==&lt;br /&gt;
&lt;br /&gt;
=== Microarray Panel ===&lt;br /&gt;
[[image:microarray-panel.png|frame|The Microarray Panel displaying marker values for selected array.]]&lt;br /&gt;
&lt;br /&gt;
=== Color Mosaic ===&lt;br /&gt;
[[Image:color-mosaic.png|frame|The Color Mosaic component displaying selected arrays, group designation and marker names.]]&lt;br /&gt;
&lt;br /&gt;
=== Tabular Microarray Panel ===&lt;br /&gt;
[[image:tabular.png|frame|The Tabular Microarray Panel displays the raw values loaded from the data file.]]&lt;br /&gt;
&lt;br /&gt;
=== Expression Profile ===&lt;br /&gt;
[[Image:expression-profile.png|frame|Expression Profile plotting values for selected markers and arrays.]]&lt;br /&gt;
&lt;br /&gt;
=== Hierarchical Clustering ===&lt;br /&gt;
[[Image:dendrogram.png|frame|A Dendrogram displays the results of the Hieracrchical clustering analysis.]]&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=File:Dendrogram.png&amp;diff=1583</id>
		<title>File:Dendrogram.png</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=File:Dendrogram.png&amp;diff=1583"/>
				<updated>2006-01-25T19:17:51Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1581</id>
		<title>Screenshots</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1581"/>
				<updated>2006-01-25T17:39:23Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== geWorkbench 3.0 screenshots ==&lt;br /&gt;
&lt;br /&gt;
=== Microarray Panel ===&lt;br /&gt;
[[image:microarray-panel.png|frame|The Microarray Panel displaying marker values for selected array.]]&lt;br /&gt;
&lt;br /&gt;
=== Color Mosaic ===&lt;br /&gt;
[[Image:color-mosaic.png|frame|The Color Mosaic component displaying selected arrays, group designation and marker names.]]&lt;br /&gt;
&lt;br /&gt;
=== Tabular Microarray Panel ===&lt;br /&gt;
[[image:tabular.png|frame|The Tabular Microarray Panel displays the raw values loaded from the data file.]]&lt;br /&gt;
&lt;br /&gt;
=== Expression Profile ===&lt;br /&gt;
[[Image:expression-profile.png|frame|Expression Profile plotting values for selected markers and arrays.]]&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=File:Tabular.png&amp;diff=1580</id>
		<title>File:Tabular.png</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=File:Tabular.png&amp;diff=1580"/>
				<updated>2006-01-25T17:36:58Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1579</id>
		<title>Screenshots</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1579"/>
				<updated>2006-01-25T17:35:45Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== geWorkbench 3.0 screenshots ==&lt;br /&gt;
&lt;br /&gt;
=== Microarray Panel ===&lt;br /&gt;
&lt;br /&gt;
[[image:microarray-panel.png|frame|The Microarray Panel displaying marker values for selected array.]]&lt;br /&gt;
&lt;br /&gt;
=== Color Mosaic ===&lt;br /&gt;
[[Image:color-mosaic.png|frame|The Color Mosaic component displaying selected arrays, group designation and marker names.]]&lt;br /&gt;
&lt;br /&gt;
=== Expression Profile ===&lt;br /&gt;
[[Image:expression-profile.png|frame|Expression Profile plotting values for selected markers and arrays.]]&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1578</id>
		<title>Screenshots</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1578"/>
				<updated>2006-01-25T17:35:05Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== geWorkbench 3.0 screenshots ==&lt;br /&gt;
&lt;br /&gt;
=== Microarray Panel ===&lt;br /&gt;
&lt;br /&gt;
[[image:microarray-panel.png|frame|The Microarray Panel displaying marker values for selected array.]]&lt;br /&gt;
&lt;br /&gt;
=== Color Mosaic ===&lt;br /&gt;
[[Image:color-mosaic.png|The Color Mosaic component displaying selected arrays, group designation and marker names.]]&lt;br /&gt;
&lt;br /&gt;
=== Expression Profile ===&lt;br /&gt;
[[Image:expression-profile.png|Expression Profile plotting values for selected markers and arrays.]]&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1577</id>
		<title>Screenshots</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1577"/>
				<updated>2006-01-25T17:34:28Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Microarray Panel ===&lt;br /&gt;
&lt;br /&gt;
[[image:microarray-panel.png|frame|The Microarray Panel displaying marker values for selected array.]]&lt;br /&gt;
&lt;br /&gt;
=== Color Mosaic ===&lt;br /&gt;
[[Image:color-mosaic.png|The Color Mosaic component displaying selected arrays, group designation and marker names.]]&lt;br /&gt;
&lt;br /&gt;
=== Expression Profile ===&lt;br /&gt;
[[Image:expression-profile.png|Expression Profile plotting values for selected markers and arrays.]]&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1576</id>
		<title>Screenshots</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1576"/>
				<updated>2006-01-25T17:34:10Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Microarray Panel ===&lt;br /&gt;
[[image:microarray-panel.png|frame|Please read the FAQ.]]&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;border:1px solid lightgray;&amp;quot; cellpadding=&amp;quot;2&amp;quot; align=&amp;quot;center&amp;quot;&lt;br /&gt;
|style=&amp;quot;width:300px;padding-right:8px;&amp;quot;|[[Image:microarray-panel.png|300px]]&lt;br /&gt;
|style=&amp;quot;width:300px;&amp;quot;|[[Image:microarray-panel.png|300px]]&lt;br /&gt;
|-&lt;br /&gt;
|class=&amp;quot;thumbcaption&amp;quot; style=&amp;quot;vertical-align:top;font-size:85%;padding-right:16px;&amp;quot;|''Opportunity's'' first panorama, taken by the navcam on Sol 1 of the mission. This 360-degree panorama is the first panorama beamed back to Earth from the Mars Exploration Rover ''Opportunity'' shortly after she touched down at Meridiani Planum, Mars. The image was captured by the rover's navigation [[camera]], and is [[grayscale]].&lt;br /&gt;
|class=&amp;quot;thumbcaption&amp;quot; style=&amp;quot;vertical-align:top;font-size:85%;&amp;quot;|First color panorama taken by ''Opportunity''. This color image shows the martian landscape at Meridiani Planum, where the ''Opportunity'' successfully landed at 9:05 p.m. PST on [[January 24]],[[2004]]. This is one of the first images beamed back to Earth from the rover shortly after she touched down. The image was captured by the rover's panoramic camera.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Image:microarray-panel.png|thumb|The Microarray Panel displaying marker values for selected array.]]&lt;br /&gt;
&lt;br /&gt;
=== Color Mosaic ===&lt;br /&gt;
[[Image:color-mosaic.png|The Color Mosaic component displaying selected arrays, group designation and marker names.]]&lt;br /&gt;
&lt;br /&gt;
=== Expression Profile ===&lt;br /&gt;
[[Image:expression-profile.png|Expression Profile plotting values for selected markers and arrays.]]&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1575</id>
		<title>Screenshots</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1575"/>
				<updated>2006-01-25T17:33:24Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Microarray Panel ===&lt;br /&gt;
[[image:microarray-panel.png|thumb|left|Please read the FAQ.]]&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;border:1px solid lightgray;&amp;quot; cellpadding=&amp;quot;2&amp;quot; align=&amp;quot;center&amp;quot;&lt;br /&gt;
|style=&amp;quot;width:300px;padding-right:8px;&amp;quot;|[[Image:microarray-panel.png|300px]]&lt;br /&gt;
|style=&amp;quot;width:300px;&amp;quot;|[[Image:microarray-panel.png|300px]]&lt;br /&gt;
|-&lt;br /&gt;
|class=&amp;quot;thumbcaption&amp;quot; style=&amp;quot;vertical-align:top;font-size:85%;padding-right:16px;&amp;quot;|''Opportunity's'' first panorama, taken by the navcam on Sol 1 of the mission. This 360-degree panorama is the first panorama beamed back to Earth from the Mars Exploration Rover ''Opportunity'' shortly after she touched down at Meridiani Planum, Mars. The image was captured by the rover's navigation [[camera]], and is [[grayscale]].&lt;br /&gt;
|class=&amp;quot;thumbcaption&amp;quot; style=&amp;quot;vertical-align:top;font-size:85%;&amp;quot;|First color panorama taken by ''Opportunity''. This color image shows the martian landscape at Meridiani Planum, where the ''Opportunity'' successfully landed at 9:05 p.m. PST on [[January 24]],[[2004]]. This is one of the first images beamed back to Earth from the rover shortly after she touched down. The image was captured by the rover's panoramic camera.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Image:microarray-panel.png|thumb|The Microarray Panel displaying marker values for selected array.]]&lt;br /&gt;
&lt;br /&gt;
=== Color Mosaic ===&lt;br /&gt;
[[Image:color-mosaic.png|The Color Mosaic component displaying selected arrays, group designation and marker names.]]&lt;br /&gt;
&lt;br /&gt;
=== Expression Profile ===&lt;br /&gt;
[[Image:expression-profile.png|Expression Profile plotting values for selected markers and arrays.]]&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1574</id>
		<title>Screenshots</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1574"/>
				<updated>2006-01-25T17:24:13Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Microarray Panel ===&lt;br /&gt;
[[Image:microarray-panel.png|thumb|left|Please read the FAQ.]]&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;border:1px solid lightgray;&amp;quot; cellpadding=&amp;quot;2&amp;quot; align=&amp;quot;center&amp;quot;&lt;br /&gt;
|style=&amp;quot;width:300px;padding-right:8px;&amp;quot;|[[Image:microarray-panel.png|300px]]&lt;br /&gt;
|style=&amp;quot;width:300px;&amp;quot;|[[Image:microarray-panel.png|300px]]&lt;br /&gt;
|-&lt;br /&gt;
|class=&amp;quot;thumbcaption&amp;quot; style=&amp;quot;vertical-align:top;font-size:85%;padding-right:16px;&amp;quot;|''Opportunity's'' first panorama, taken by the navcam on Sol 1 of the mission. This 360-degree panorama is the first panorama beamed back to Earth from the Mars Exploration Rover ''Opportunity'' shortly after she touched down at Meridiani Planum, Mars. The image was captured by the rover's navigation [[camera]], and is [[grayscale]].&lt;br /&gt;
|class=&amp;quot;thumbcaption&amp;quot; style=&amp;quot;vertical-align:top;font-size:85%;&amp;quot;|First color panorama taken by ''Opportunity''. This color image shows the martian landscape at Meridiani Planum, where the ''Opportunity'' successfully landed at 9:05 p.m. PST on [[January 24]],[[2004]]. This is one of the first images beamed back to Earth from the rover shortly after she touched down. The image was captured by the rover's panoramic camera.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Image:microarray-panel.png|thumb|The Microarray Panel displaying marker values for selected array.]]&lt;br /&gt;
&lt;br /&gt;
=== Color Mosaic ===&lt;br /&gt;
[[Image:color-mosaic.png|The Color Mosaic component displaying selected arrays, group designation and marker names.]]&lt;br /&gt;
&lt;br /&gt;
=== Expression Profile ===&lt;br /&gt;
[[Image:expression-profile.png|Expression Profile plotting values for selected markers and arrays.]]&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1573</id>
		<title>Screenshots</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1573"/>
				<updated>2006-01-25T17:24:05Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Microarray Panel ===&lt;br /&gt;
[[Image:microarray-panel.jpg|thumb|left|Please read the FAQ.]]&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;border:1px solid lightgray;&amp;quot; cellpadding=&amp;quot;2&amp;quot; align=&amp;quot;center&amp;quot;&lt;br /&gt;
|style=&amp;quot;width:300px;padding-right:8px;&amp;quot;|[[Image:microarray-panel.png|300px]]&lt;br /&gt;
|style=&amp;quot;width:300px;&amp;quot;|[[Image:microarray-panel.png|300px]]&lt;br /&gt;
|-&lt;br /&gt;
|class=&amp;quot;thumbcaption&amp;quot; style=&amp;quot;vertical-align:top;font-size:85%;padding-right:16px;&amp;quot;|''Opportunity's'' first panorama, taken by the navcam on Sol 1 of the mission. This 360-degree panorama is the first panorama beamed back to Earth from the Mars Exploration Rover ''Opportunity'' shortly after she touched down at Meridiani Planum, Mars. The image was captured by the rover's navigation [[camera]], and is [[grayscale]].&lt;br /&gt;
|class=&amp;quot;thumbcaption&amp;quot; style=&amp;quot;vertical-align:top;font-size:85%;&amp;quot;|First color panorama taken by ''Opportunity''. This color image shows the martian landscape at Meridiani Planum, where the ''Opportunity'' successfully landed at 9:05 p.m. PST on [[January 24]],[[2004]]. This is one of the first images beamed back to Earth from the rover shortly after she touched down. The image was captured by the rover's panoramic camera.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Image:microarray-panel.png|thumb|The Microarray Panel displaying marker values for selected array.]]&lt;br /&gt;
&lt;br /&gt;
=== Color Mosaic ===&lt;br /&gt;
[[Image:color-mosaic.png|The Color Mosaic component displaying selected arrays, group designation and marker names.]]&lt;br /&gt;
&lt;br /&gt;
=== Expression Profile ===&lt;br /&gt;
[[Image:expression-profile.png|Expression Profile plotting values for selected markers and arrays.]]&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1572</id>
		<title>Screenshots</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1572"/>
				<updated>2006-01-25T17:23:03Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Microarray Panel ===&lt;br /&gt;
[[Image:microarray-panel.jpg|thumb|left|Please read the FAQ.]]&lt;br /&gt;
{| style=&amp;quot;border:1px solid lightgray;&amp;quot; cellpadding=&amp;quot;2&amp;quot; align=&amp;quot;center&amp;quot;&lt;br /&gt;
|style=&amp;quot;width:300px;padding-right:8px;&amp;quot;|[[Image:microarray-panel.png|300px]]&lt;br /&gt;
|style=&amp;quot;width:300px;&amp;quot;|[[Image:microarray-panel.png|300px]]&lt;br /&gt;
|-&lt;br /&gt;
|class=&amp;quot;thumbcaption&amp;quot; style=&amp;quot;vertical-align:top;font-size:85%;padding-right:16px;&amp;quot;|''Opportunity's'' first panorama, taken by the navcam on Sol 1 of the mission. This 360-degree panorama is the first panorama beamed back to Earth from the Mars Exploration Rover ''Opportunity'' shortly after she touched down at Meridiani Planum, Mars. The image was captured by the rover's navigation [[camera]], and is [[grayscale]].&lt;br /&gt;
|class=&amp;quot;thumbcaption&amp;quot; style=&amp;quot;vertical-align:top;font-size:85%;&amp;quot;|First color panorama taken by ''Opportunity''. This color image shows the martian landscape at Meridiani Planum, where the ''Opportunity'' successfully landed at 9:05 p.m. PST on [[January 24]],[[2004]]. This is one of the first images beamed back to Earth from the rover shortly after she touched down. The image was captured by the rover's panoramic camera.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Image:microarray-panel.png|thumb|The Microarray Panel displaying marker values for selected array.]]&lt;br /&gt;
&lt;br /&gt;
=== Color Mosaic ===&lt;br /&gt;
[[Image:color-mosaic.png|The Color Mosaic component displaying selected arrays, group designation and marker names.]]&lt;br /&gt;
&lt;br /&gt;
=== Expression Profile ===&lt;br /&gt;
[[Image:expression-profile.png|Expression Profile plotting values for selected markers and arrays.]]&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1571</id>
		<title>Screenshots</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1571"/>
				<updated>2006-01-25T17:22:35Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Microarray Panel ===&lt;br /&gt;
[[Image:Keyboard closeup.jpg|thumb|left|Please [[meta:MediaWiki FAQ|read the FAQ]].]]&lt;br /&gt;
{| style=&amp;quot;border:1px solid lightgray;&amp;quot; cellpadding=&amp;quot;2&amp;quot; align=&amp;quot;center&amp;quot;&lt;br /&gt;
|style=&amp;quot;width:300px;padding-right:8px;&amp;quot;|[[Image:microarray-panel.png|300px]]&lt;br /&gt;
|style=&amp;quot;width:300px;&amp;quot;|[[Image:microarray-panel.png|300px]]&lt;br /&gt;
|-&lt;br /&gt;
|class=&amp;quot;thumbcaption&amp;quot; style=&amp;quot;vertical-align:top;font-size:85%;padding-right:16px;&amp;quot;|''Opportunity's'' first panorama, taken by the navcam on Sol 1 of the mission. This 360-degree panorama is the first panorama beamed back to Earth from the Mars Exploration Rover ''Opportunity'' shortly after she touched down at Meridiani Planum, Mars. The image was captured by the rover's navigation [[camera]], and is [[grayscale]].&lt;br /&gt;
|class=&amp;quot;thumbcaption&amp;quot; style=&amp;quot;vertical-align:top;font-size:85%;&amp;quot;|First color panorama taken by ''Opportunity''. This color image shows the martian landscape at Meridiani Planum, where the ''Opportunity'' successfully landed at 9:05 p.m. PST on [[January 24]],[[2004]]. This is one of the first images beamed back to Earth from the rover shortly after she touched down. The image was captured by the rover's panoramic camera.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Image:microarray-panel.png|thumb|The Microarray Panel displaying marker values for selected array.]]&lt;br /&gt;
&lt;br /&gt;
=== Color Mosaic ===&lt;br /&gt;
[[Image:color-mosaic.png|The Color Mosaic component displaying selected arrays, group designation and marker names.]]&lt;br /&gt;
&lt;br /&gt;
=== Expression Profile ===&lt;br /&gt;
[[Image:expression-profile.png|Expression Profile plotting values for selected markers and arrays.]]&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	<entry>
		<id>http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1570</id>
		<title>Screenshots</title>
		<link rel="alternate" type="text/html" href="http://wiki.c2b2.columbia.edu/workbench/index.php?title=Screenshots&amp;diff=1570"/>
				<updated>2006-01-25T17:18:10Z</updated>
		
		<summary type="html">&lt;p&gt;Hall: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Microarray Panel ===&lt;br /&gt;
{| style=&amp;quot;border:1px solid lightgray;&amp;quot; cellpadding=&amp;quot;2&amp;quot; align=&amp;quot;center&amp;quot;&lt;br /&gt;
|style=&amp;quot;width:300px;padding-right:8px;&amp;quot;|[[Image:microarray-panel.png|300px]]&lt;br /&gt;
|style=&amp;quot;width:300px;&amp;quot;|[[Image:microarray-panel.png|300px]]&lt;br /&gt;
|-&lt;br /&gt;
|class=&amp;quot;thumbcaption&amp;quot; style=&amp;quot;vertical-align:top;font-size:85%;padding-right:16px;&amp;quot;|''Opportunity's'' first panorama, taken by the navcam on Sol 1 of the mission. This 360-degree panorama is the first panorama beamed back to Earth from the Mars Exploration Rover ''Opportunity'' shortly after she touched down at Meridiani Planum, Mars. The image was captured by the rover's navigation [[camera]], and is [[grayscale]].&lt;br /&gt;
|class=&amp;quot;thumbcaption&amp;quot; style=&amp;quot;vertical-align:top;font-size:85%;&amp;quot;|First color panorama taken by ''Opportunity''. This color image shows the martian landscape at Meridiani Planum, where the ''Opportunity'' successfully landed at 9:05 p.m. PST on [[January 24]],[[2004]]. This is one of the first images beamed back to Earth from the rover shortly after she touched down. The image was captured by the rover's panoramic camera.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Image:microarray-panel.png|thumb|The Microarray Panel displaying marker values for selected array.]]&lt;br /&gt;
&lt;br /&gt;
=== Color Mosaic ===&lt;br /&gt;
[[Image:color-mosaic.png|The Color Mosaic component displaying selected arrays, group designation and marker names.]]&lt;br /&gt;
&lt;br /&gt;
=== Expression Profile ===&lt;br /&gt;
[[Image:expression-profile.png|Expression Profile plotting values for selected markers and arrays.]]&lt;/div&gt;</summary>
		<author><name>Hall</name></author>	</entry>

	</feed>