<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.umiacs.umd.edu/cbcb/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Cmhill</id>
	<title>Cbcb - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.umiacs.umd.edu/cbcb/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Cmhill"/>
	<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php/Special:Contributions/Cmhill"/>
	<updated>2026-04-12T18:06:07Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.7</generator>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5688</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5688"/>
		<updated>2009-08-27T21:23:45Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Summary==&lt;br /&gt;
Partition is a python script that takes an input of regular expressions and metadata to build an xml file of matching header information from a fasta-formatted file.  Partition.py is located at:&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/Partition.py [&#039;&#039;&#039;stable&#039;&#039;&#039;]&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/MetaPart/src/Partition.py [&#039;&#039;&#039;latest, but possibly unstable builds&#039;&#039;&#039;]&lt;br /&gt;
&lt;br /&gt;
===Options===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
-p    Populate the given partition/XML.&lt;br /&gt;
-b    Given the input file, build a partition.&lt;br /&gt;
-m    Metadata file that will be used to populate the partitions.&lt;br /&gt;
-h    Header information for the metadata, if not present column information for metadata will be found in first line of the metadata.&lt;br /&gt;
-f    Input fasta file.&lt;br /&gt;
-s    Split the fasta file based on the partition information and output to the directory.&lt;br /&gt;
-o    Name of the output .part file.&lt;br /&gt;
-c    Convert an old partition format into the new xml format.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Tutorial==&lt;br /&gt;
===Format of an input regular expression (*.re) file===&lt;br /&gt;
The format of the *.re input file is:&lt;br /&gt;
   [name]&lt;br /&gt;
   key1 = value1&lt;br /&gt;
   key2 = value2&lt;br /&gt;
   ...&lt;br /&gt;
   [name2]&lt;br /&gt;
   key1 = value1&lt;br /&gt;
   ...&lt;br /&gt;
where [name] represents the name of the partition, and the key-value pairs will represent the attributes.&lt;br /&gt;
&lt;br /&gt;
Example of an input file that clusters animals by their first letter:&lt;br /&gt;
   [animals]&lt;br /&gt;
   info = all animals&lt;br /&gt;
   [A]&lt;br /&gt;
   info = animals that start with A&lt;br /&gt;
   regexp = a.*&lt;br /&gt;
   [B]&lt;br /&gt;
   info = animals that start with B&lt;br /&gt;
   regexp = b.*&lt;br /&gt;
   ...&lt;br /&gt;
Using the format above, the partition can only have two levels.  It is possible to have multiple levels, but the input file needs to be an xml file (explained below).&lt;br /&gt;
===Given the input file, build and populate a partition===&lt;br /&gt;
   ./Partition.py -b [input.re] -f [input.fasta] [-o dir/file]&lt;br /&gt;
&lt;br /&gt;
The -o option specifies if the user wants to save the partition file as something other than the default temppart.xml.&lt;br /&gt;
===Use a metadata file to populate the partitions.===&lt;br /&gt;
A metadata file is a file that contains information about a set of sequences.&lt;br /&gt;
   #SampleID       LRHand        Sex     &lt;br /&gt;
   S1              R             F       &lt;br /&gt;
   S2              L             M&lt;br /&gt;
&lt;br /&gt;
If the first row of the metadata file does not contain the column information, then specify a separate column header file with &#039;&#039;&#039;-c [file]&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
The format of a *.re file changes slightly with the addition of the metadata file.  In addition to specifying the regexp, a &#039;&#039;&#039;category&#039;&#039;&#039; field must also be added to specify which column the regexp will be checked against.&lt;br /&gt;
&lt;br /&gt;
To populate the xml file with the metadata information and split a given fasta file:&lt;br /&gt;
   ./Partition.py -b [input.re] -f [input.fasta] -m [metadata.map] -s [dir/output]&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5687</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5687"/>
		<updated>2009-08-27T20:44:40Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: /* Use a metadata file to populate the partitions. */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Summary==&lt;br /&gt;
Partition is a python script that takes an input of regular expressions and metadata to build an xml file of matching header information from a fasta-formatted file.  Partition.py is located at:&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/Partition.py [&#039;&#039;&#039;stable&#039;&#039;&#039;]&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/MetaPart/src/Partition.py [&#039;&#039;&#039;latest, but possibly unstable builds&#039;&#039;&#039;]&lt;br /&gt;
&lt;br /&gt;
===Options===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
-p    Populate the given partition/XML.&lt;br /&gt;
-b    Given the input file, build a partition.&lt;br /&gt;
-m    Metadata file that will be used to populate the partitions.&lt;br /&gt;
-h    Header information for the metadata, if not present column information for metadata will be found in first line of the metadata.&lt;br /&gt;
-f    Input fasta file.&lt;br /&gt;
-s    Split the fasta file based on the partition information and output to the directory.&lt;br /&gt;
-o    Name of the output .part file.&lt;br /&gt;
-c    Convert an old partition format into the new xml format.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Tutorial==&lt;br /&gt;
===Format of an input regular expression (*.re) file===&lt;br /&gt;
The format of the *.re input file is:&lt;br /&gt;
   [name]&lt;br /&gt;
   key1 = value1&lt;br /&gt;
   key2 = value2&lt;br /&gt;
   ...&lt;br /&gt;
   [name2]&lt;br /&gt;
   key1 = value1&lt;br /&gt;
   ...&lt;br /&gt;
where [name] represents the name of the partition, and the key-value pairs will represent the attributes.&lt;br /&gt;
&lt;br /&gt;
Example of an input file that clusters animals by their first letter:&lt;br /&gt;
   [animals]&lt;br /&gt;
   info = all animals&lt;br /&gt;
   [A]&lt;br /&gt;
   info = animals that start with A&lt;br /&gt;
   regexp = a.*&lt;br /&gt;
   [B]&lt;br /&gt;
   info = animals that start with B&lt;br /&gt;
   regexp = b.*&lt;br /&gt;
   ...&lt;br /&gt;
Using the format above, the partition can only have two levels.  It is possible to have multiple levels, but the input file needs to be an xml file (explained below).&lt;br /&gt;
===Given the input file, build and populate a partition===&lt;br /&gt;
   ./Partition.py -b [input.re] -f [input.fasta] [-o dir/file]&lt;br /&gt;
&lt;br /&gt;
The -o option specifies if the user wants to save the partition file as something other than the default temppart.xml.&lt;br /&gt;
===Use a metadata file to populate the partitions.===&lt;br /&gt;
A metadata file is a file that contains information about a set of sequences.&lt;br /&gt;
   #SampleID       LRHand        Sex     &lt;br /&gt;
   S1              R             F       &lt;br /&gt;
   S2              L             M&lt;br /&gt;
&lt;br /&gt;
If the first row of the metadata file does not contain the column information, then specify a separate column header file with &#039;&#039;&#039;-c [file]&#039;&#039;&#039;.&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5686</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5686"/>
		<updated>2009-08-27T20:44:33Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: /* Use a metadata file to populate the partitions. */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Summary==&lt;br /&gt;
Partition is a python script that takes an input of regular expressions and metadata to build an xml file of matching header information from a fasta-formatted file.  Partition.py is located at:&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/Partition.py [&#039;&#039;&#039;stable&#039;&#039;&#039;]&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/MetaPart/src/Partition.py [&#039;&#039;&#039;latest, but possibly unstable builds&#039;&#039;&#039;]&lt;br /&gt;
&lt;br /&gt;
===Options===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
-p    Populate the given partition/XML.&lt;br /&gt;
-b    Given the input file, build a partition.&lt;br /&gt;
-m    Metadata file that will be used to populate the partitions.&lt;br /&gt;
-h    Header information for the metadata, if not present column information for metadata will be found in first line of the metadata.&lt;br /&gt;
-f    Input fasta file.&lt;br /&gt;
-s    Split the fasta file based on the partition information and output to the directory.&lt;br /&gt;
-o    Name of the output .part file.&lt;br /&gt;
-c    Convert an old partition format into the new xml format.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Tutorial==&lt;br /&gt;
===Format of an input regular expression (*.re) file===&lt;br /&gt;
The format of the *.re input file is:&lt;br /&gt;
   [name]&lt;br /&gt;
   key1 = value1&lt;br /&gt;
   key2 = value2&lt;br /&gt;
   ...&lt;br /&gt;
   [name2]&lt;br /&gt;
   key1 = value1&lt;br /&gt;
   ...&lt;br /&gt;
where [name] represents the name of the partition, and the key-value pairs will represent the attributes.&lt;br /&gt;
&lt;br /&gt;
Example of an input file that clusters animals by their first letter:&lt;br /&gt;
   [animals]&lt;br /&gt;
   info = all animals&lt;br /&gt;
   [A]&lt;br /&gt;
   info = animals that start with A&lt;br /&gt;
   regexp = a.*&lt;br /&gt;
   [B]&lt;br /&gt;
   info = animals that start with B&lt;br /&gt;
   regexp = b.*&lt;br /&gt;
   ...&lt;br /&gt;
Using the format above, the partition can only have two levels.  It is possible to have multiple levels, but the input file needs to be an xml file (explained below).&lt;br /&gt;
===Given the input file, build and populate a partition===&lt;br /&gt;
   ./Partition.py -b [input.re] -f [input.fasta] [-o dir/file]&lt;br /&gt;
&lt;br /&gt;
The -o option specifies if the user wants to save the partition file as something other than the default temppart.xml.&lt;br /&gt;
===Use a metadata file to populate the partitions.===&lt;br /&gt;
A metadata file is a file that contains information about a set of sequences.&lt;br /&gt;
   #SampleID       LRHand        Sex     &lt;br /&gt;
   S1              R             F       &lt;br /&gt;
   S2              L             M&lt;br /&gt;
&lt;br /&gt;
If the first row of the metadata file does not contain the column information, then specify a separate column header file with &#039;&#039;-c [file]&#039;&#039;.&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5685</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5685"/>
		<updated>2009-08-27T20:44:25Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: /* Use a metadata file to populate the partitions. */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Summary==&lt;br /&gt;
Partition is a python script that takes an input of regular expressions and metadata to build an xml file of matching header information from a fasta-formatted file.  Partition.py is located at:&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/Partition.py [&#039;&#039;&#039;stable&#039;&#039;&#039;]&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/MetaPart/src/Partition.py [&#039;&#039;&#039;latest, but possibly unstable builds&#039;&#039;&#039;]&lt;br /&gt;
&lt;br /&gt;
===Options===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
-p    Populate the given partition/XML.&lt;br /&gt;
-b    Given the input file, build a partition.&lt;br /&gt;
-m    Metadata file that will be used to populate the partitions.&lt;br /&gt;
-h    Header information for the metadata, if not present column information for metadata will be found in first line of the metadata.&lt;br /&gt;
-f    Input fasta file.&lt;br /&gt;
-s    Split the fasta file based on the partition information and output to the directory.&lt;br /&gt;
-o    Name of the output .part file.&lt;br /&gt;
-c    Convert an old partition format into the new xml format.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Tutorial==&lt;br /&gt;
===Format of an input regular expression (*.re) file===&lt;br /&gt;
The format of the *.re input file is:&lt;br /&gt;
   [name]&lt;br /&gt;
   key1 = value1&lt;br /&gt;
   key2 = value2&lt;br /&gt;
   ...&lt;br /&gt;
   [name2]&lt;br /&gt;
   key1 = value1&lt;br /&gt;
   ...&lt;br /&gt;
where [name] represents the name of the partition, and the key-value pairs will represent the attributes.&lt;br /&gt;
&lt;br /&gt;
Example of an input file that clusters animals by their first letter:&lt;br /&gt;
   [animals]&lt;br /&gt;
   info = all animals&lt;br /&gt;
   [A]&lt;br /&gt;
   info = animals that start with A&lt;br /&gt;
   regexp = a.*&lt;br /&gt;
   [B]&lt;br /&gt;
   info = animals that start with B&lt;br /&gt;
   regexp = b.*&lt;br /&gt;
   ...&lt;br /&gt;
Using the format above, the partition can only have two levels.  It is possible to have multiple levels, but the input file needs to be an xml file (explained below).&lt;br /&gt;
===Given the input file, build and populate a partition===&lt;br /&gt;
   ./Partition.py -b [input.re] -f [input.fasta] [-o dir/file]&lt;br /&gt;
&lt;br /&gt;
The -o option specifies if the user wants to save the partition file as something other than the default temppart.xml.&lt;br /&gt;
===Use a metadata file to populate the partitions.===&lt;br /&gt;
A metadata file is a file that contains information about a set of sequences.&lt;br /&gt;
   #SampleID       LRHand        Sex     &lt;br /&gt;
   S1              R             F       &lt;br /&gt;
   S2              L             M&lt;br /&gt;
&lt;br /&gt;
If the first row of the metadata file does not contain the column information, then specify a separate column header file with &#039;-c [file]&#039;.&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5684</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5684"/>
		<updated>2009-08-27T20:43:39Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: /* Use a metadata file to populate the partitions. */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Summary==&lt;br /&gt;
Partition is a python script that takes an input of regular expressions and metadata to build an xml file of matching header information from a fasta-formatted file.  Partition.py is located at:&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/Partition.py [&#039;&#039;&#039;stable&#039;&#039;&#039;]&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/MetaPart/src/Partition.py [&#039;&#039;&#039;latest, but possibly unstable builds&#039;&#039;&#039;]&lt;br /&gt;
&lt;br /&gt;
===Options===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
-p    Populate the given partition/XML.&lt;br /&gt;
-b    Given the input file, build a partition.&lt;br /&gt;
-m    Metadata file that will be used to populate the partitions.&lt;br /&gt;
-h    Header information for the metadata, if not present column information for metadata will be found in first line of the metadata.&lt;br /&gt;
-f    Input fasta file.&lt;br /&gt;
-s    Split the fasta file based on the partition information and output to the directory.&lt;br /&gt;
-o    Name of the output .part file.&lt;br /&gt;
-c    Convert an old partition format into the new xml format.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Tutorial==&lt;br /&gt;
===Format of an input regular expression (*.re) file===&lt;br /&gt;
The format of the *.re input file is:&lt;br /&gt;
   [name]&lt;br /&gt;
   key1 = value1&lt;br /&gt;
   key2 = value2&lt;br /&gt;
   ...&lt;br /&gt;
   [name2]&lt;br /&gt;
   key1 = value1&lt;br /&gt;
   ...&lt;br /&gt;
where [name] represents the name of the partition, and the key-value pairs will represent the attributes.&lt;br /&gt;
&lt;br /&gt;
Example of an input file that clusters animals by their first letter:&lt;br /&gt;
   [animals]&lt;br /&gt;
   info = all animals&lt;br /&gt;
   [A]&lt;br /&gt;
   info = animals that start with A&lt;br /&gt;
   regexp = a.*&lt;br /&gt;
   [B]&lt;br /&gt;
   info = animals that start with B&lt;br /&gt;
   regexp = b.*&lt;br /&gt;
   ...&lt;br /&gt;
Using the format above, the partition can only have two levels.  It is possible to have multiple levels, but the input file needs to be an xml file (explained below).&lt;br /&gt;
===Given the input file, build and populate a partition===&lt;br /&gt;
   ./Partition.py -b [input.re] -f [input.fasta] [-o dir/file]&lt;br /&gt;
&lt;br /&gt;
The -o option specifies if the user wants to save the partition file as something other than the default temppart.xml.&lt;br /&gt;
===Use a metadata file to populate the partitions.===&lt;br /&gt;
A metadata file is a file that contains information about a set of sequences.&lt;br /&gt;
   #SampleID       LRHand        Sex     &lt;br /&gt;
   S1              R             F       &lt;br /&gt;
   S2              L             M&lt;br /&gt;
&lt;br /&gt;
If the first row of the metadata file does not contain the column information, then specify a separate column header file with =-c [file]=.&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5683</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5683"/>
		<updated>2009-08-27T20:43:23Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Summary==&lt;br /&gt;
Partition is a python script that takes an input of regular expressions and metadata to build an xml file of matching header information from a fasta-formatted file.  Partition.py is located at:&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/Partition.py [&#039;&#039;&#039;stable&#039;&#039;&#039;]&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/MetaPart/src/Partition.py [&#039;&#039;&#039;latest, but possibly unstable builds&#039;&#039;&#039;]&lt;br /&gt;
&lt;br /&gt;
===Options===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
-p    Populate the given partition/XML.&lt;br /&gt;
-b    Given the input file, build a partition.&lt;br /&gt;
-m    Metadata file that will be used to populate the partitions.&lt;br /&gt;
-h    Header information for the metadata, if not present column information for metadata will be found in first line of the metadata.&lt;br /&gt;
-f    Input fasta file.&lt;br /&gt;
-s    Split the fasta file based on the partition information and output to the directory.&lt;br /&gt;
-o    Name of the output .part file.&lt;br /&gt;
-c    Convert an old partition format into the new xml format.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Tutorial==&lt;br /&gt;
===Format of an input regular expression (*.re) file===&lt;br /&gt;
The format of the *.re input file is:&lt;br /&gt;
   [name]&lt;br /&gt;
   key1 = value1&lt;br /&gt;
   key2 = value2&lt;br /&gt;
   ...&lt;br /&gt;
   [name2]&lt;br /&gt;
   key1 = value1&lt;br /&gt;
   ...&lt;br /&gt;
where [name] represents the name of the partition, and the key-value pairs will represent the attributes.&lt;br /&gt;
&lt;br /&gt;
Example of an input file that clusters animals by their first letter:&lt;br /&gt;
   [animals]&lt;br /&gt;
   info = all animals&lt;br /&gt;
   [A]&lt;br /&gt;
   info = animals that start with A&lt;br /&gt;
   regexp = a.*&lt;br /&gt;
   [B]&lt;br /&gt;
   info = animals that start with B&lt;br /&gt;
   regexp = b.*&lt;br /&gt;
   ...&lt;br /&gt;
Using the format above, the partition can only have two levels.  It is possible to have multiple levels, but the input file needs to be an xml file (explained below).&lt;br /&gt;
===Given the input file, build and populate a partition===&lt;br /&gt;
   ./Partition.py -b [input.re] -f [input.fasta] [-o dir/file]&lt;br /&gt;
&lt;br /&gt;
The -o option specifies if the user wants to save the partition file as something other than the default temppart.xml.&lt;br /&gt;
===Use a metadata file to populate the partitions.===&lt;br /&gt;
A metadata file is a file that contains information about a set of sequences.&lt;br /&gt;
   #SampleID       LRHand        Sex     &lt;br /&gt;
   S1              R             F       &lt;br /&gt;
   S2              L             M&lt;br /&gt;
&lt;br /&gt;
If the first row of the metadata file does not contain the column information, then specify a separate column header file with **-c [file]**.&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5682</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5682"/>
		<updated>2009-08-27T20:35:09Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: /* Use a metadata file to populate the partitions. */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Summary==&lt;br /&gt;
Partition is a python script that takes an input of regular expressions and metadata to build an xml file of matching header information from a fasta-formatted file.  Partition.py is located at:&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/Partition.py [&#039;&#039;&#039;stable&#039;&#039;&#039;]&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/MetaPart/src/Partition.py [&#039;&#039;&#039;latest, but possibly unstable builds&#039;&#039;&#039;]&lt;br /&gt;
&lt;br /&gt;
===Options===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
-p    Populate the given partition/XML.&lt;br /&gt;
-b    Given the input file, build a partition.&lt;br /&gt;
-m    Metadata file that will be used to populate the partitions.&lt;br /&gt;
-h    Header information for the metadata, if not present column information for metadata will be found in first line of the metadata.&lt;br /&gt;
-f    Input fasta file.&lt;br /&gt;
-s    Split the fasta file based on the partition information and output to the directory.&lt;br /&gt;
-o    Name of the output .part file.&lt;br /&gt;
-c    Convert an old partition format into the new xml format.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Tutorial==&lt;br /&gt;
===Format of an input regular expression (*.re) file===&lt;br /&gt;
The format of the *.re input file is:&lt;br /&gt;
   [name]&lt;br /&gt;
   key1 = value1&lt;br /&gt;
   key2 = value2&lt;br /&gt;
   ...&lt;br /&gt;
   [name2]&lt;br /&gt;
   key1 = value1&lt;br /&gt;
   ...&lt;br /&gt;
where [name] represents the name of the partition, and the key-value pairs will represent the attributes.&lt;br /&gt;
&lt;br /&gt;
Example of an input file that clusters animals by their first letter:&lt;br /&gt;
   [animals]&lt;br /&gt;
   info = all animals&lt;br /&gt;
   [A]&lt;br /&gt;
   info = animals that start with A&lt;br /&gt;
   regexp = a.*&lt;br /&gt;
   [B]&lt;br /&gt;
   info = animals that start with B&lt;br /&gt;
   regexp = b.*&lt;br /&gt;
   ...&lt;br /&gt;
Using the format above, the partition can only have two levels.  It is possible to have multiple levels, but the input file needs to be an xml file (explained below).&lt;br /&gt;
===Given the input file, build and populate a partition===&lt;br /&gt;
   ./Partition.py -b [input.re] -f [input.fasta] [-o dir/file]&lt;br /&gt;
&lt;br /&gt;
The -o option specifies if the user wants to save the partition file as something other than the default temppart.xml.&lt;br /&gt;
===Use a metadata file to populate the partitions.===&lt;br /&gt;
A metadata file is a file that contains information about a set of sequences.&lt;br /&gt;
   #SampleID       LRHand        Sex     &lt;br /&gt;
   S1              R             F       &lt;br /&gt;
   S2              L             M&lt;br /&gt;
&lt;br /&gt;
If the first row of the metadata file does not contain the column information, then specify a separate column header file with *-c [file]*&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5681</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5681"/>
		<updated>2009-08-27T20:20:50Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: /* Use a metadata file to populate the partitions. */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Summary==&lt;br /&gt;
Partition is a python script that takes an input of regular expressions and metadata to build an xml file of matching header information from a fasta-formatted file.  Partition.py is located at:&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/Partition.py [&#039;&#039;&#039;stable&#039;&#039;&#039;]&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/MetaPart/src/Partition.py [&#039;&#039;&#039;latest, but possibly unstable builds&#039;&#039;&#039;]&lt;br /&gt;
&lt;br /&gt;
===Options===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
-p    Populate the given partition/XML.&lt;br /&gt;
-b    Given the input file, build a partition.&lt;br /&gt;
-m    Metadata file that will be used to populate the partitions.&lt;br /&gt;
-h    Header information for the metadata, if not present column information for metadata will be found in first line of the metadata.&lt;br /&gt;
-f    Input fasta file.&lt;br /&gt;
-s    Split the fasta file based on the partition information and output to the directory.&lt;br /&gt;
-o    Name of the output .part file.&lt;br /&gt;
-c    Convert an old partition format into the new xml format.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Tutorial==&lt;br /&gt;
===Format of an input regular expression (*.re) file===&lt;br /&gt;
The format of the *.re input file is:&lt;br /&gt;
   [name]&lt;br /&gt;
   key1 = value1&lt;br /&gt;
   key2 = value2&lt;br /&gt;
   ...&lt;br /&gt;
   [name2]&lt;br /&gt;
   key1 = value1&lt;br /&gt;
   ...&lt;br /&gt;
where [name] represents the name of the partition, and the key-value pairs will represent the attributes.&lt;br /&gt;
&lt;br /&gt;
Example of an input file that clusters animals by their first letter:&lt;br /&gt;
   [animals]&lt;br /&gt;
   info = all animals&lt;br /&gt;
   [A]&lt;br /&gt;
   info = animals that start with A&lt;br /&gt;
   regexp = a.*&lt;br /&gt;
   [B]&lt;br /&gt;
   info = animals that start with B&lt;br /&gt;
   regexp = b.*&lt;br /&gt;
   ...&lt;br /&gt;
Using the format above, the partition can only have two levels.  It is possible to have multiple levels, but the input file needs to be an xml file (explained below).&lt;br /&gt;
===Given the input file, build and populate a partition===&lt;br /&gt;
   ./Partition.py -b [input.re] -f [input.fasta] [-o dir/file]&lt;br /&gt;
&lt;br /&gt;
The -o option specifies if the user wants to save the partition file as something other than the default temppart.xml.&lt;br /&gt;
===Use a metadata file to populate the partitions.===&lt;br /&gt;
A metadata file is a file that contains information about a set of sequences.&lt;br /&gt;
   #SampleID       LRHand        Sex     &lt;br /&gt;
   S1              R             F       &lt;br /&gt;
   S2              L             M&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5680</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5680"/>
		<updated>2009-08-27T20:20:23Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Summary==&lt;br /&gt;
Partition is a python script that takes an input of regular expressions and metadata to build an xml file of matching header information from a fasta-formatted file.  Partition.py is located at:&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/Partition.py [&#039;&#039;&#039;stable&#039;&#039;&#039;]&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/MetaPart/src/Partition.py [&#039;&#039;&#039;latest, but possibly unstable builds&#039;&#039;&#039;]&lt;br /&gt;
&lt;br /&gt;
===Options===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
-p    Populate the given partition/XML.&lt;br /&gt;
-b    Given the input file, build a partition.&lt;br /&gt;
-m    Metadata file that will be used to populate the partitions.&lt;br /&gt;
-h    Header information for the metadata, if not present column information for metadata will be found in first line of the metadata.&lt;br /&gt;
-f    Input fasta file.&lt;br /&gt;
-s    Split the fasta file based on the partition information and output to the directory.&lt;br /&gt;
-o    Name of the output .part file.&lt;br /&gt;
-c    Convert an old partition format into the new xml format.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Tutorial==&lt;br /&gt;
===Format of an input regular expression (*.re) file===&lt;br /&gt;
The format of the *.re input file is:&lt;br /&gt;
   [name]&lt;br /&gt;
   key1 = value1&lt;br /&gt;
   key2 = value2&lt;br /&gt;
   ...&lt;br /&gt;
   [name2]&lt;br /&gt;
   key1 = value1&lt;br /&gt;
   ...&lt;br /&gt;
where [name] represents the name of the partition, and the key-value pairs will represent the attributes.&lt;br /&gt;
&lt;br /&gt;
Example of an input file that clusters animals by their first letter:&lt;br /&gt;
   [animals]&lt;br /&gt;
   info = all animals&lt;br /&gt;
   [A]&lt;br /&gt;
   info = animals that start with A&lt;br /&gt;
   regexp = a.*&lt;br /&gt;
   [B]&lt;br /&gt;
   info = animals that start with B&lt;br /&gt;
   regexp = b.*&lt;br /&gt;
   ...&lt;br /&gt;
Using the format above, the partition can only have two levels.  It is possible to have multiple levels, but the input file needs to be an xml file (explained below).&lt;br /&gt;
===Given the input file, build and populate a partition===&lt;br /&gt;
   ./Partition.py -b [input.re] -f [input.fasta] [-o dir/file]&lt;br /&gt;
&lt;br /&gt;
The -o option specifies if the user wants to save the partition file as something other than the default temppart.xml.&lt;br /&gt;
===Use a metadata file to populate the partitions.===&lt;br /&gt;
A metadata file is a file that contains information about a set of sequences.&lt;br /&gt;
   #SampleID       LRHand     Sex     &lt;br /&gt;
   S1              R          F       &lt;br /&gt;
   S2              L          M&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5575</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5575"/>
		<updated>2009-08-13T18:57:37Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: /* Use a file of metadata that will be used to populate the partitions. */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Summary==&lt;br /&gt;
Partition is a python script that takes an input of regular expressions and metadata to build an xml file of matching header information from a fasta-formatted file.  Partition.py is located at:&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/Partition.py [&#039;&#039;&#039;stable&#039;&#039;&#039;]&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/MetaPart/src/Partition.py [&#039;&#039;&#039;latest, but possibly unstable builds&#039;&#039;&#039;]&lt;br /&gt;
&lt;br /&gt;
===Options===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
-p    Populate the given partition/XML.&lt;br /&gt;
-b    Given the input file, build a partition.&lt;br /&gt;
-m    Metadata file that will be used to populate the partitions.&lt;br /&gt;
-h    Header information for the metadata, if not present column information for metadata will be found in first line of the metadata.&lt;br /&gt;
-f    Input fasta file.&lt;br /&gt;
-s    Split the fasta file based on the partition information and output to the directory.&lt;br /&gt;
-o    Name of the output .part file.&lt;br /&gt;
-c    Convert an old partition format into the new xml format.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Tutorial==&lt;br /&gt;
===Format of an input regular expression (*.re) file===&lt;br /&gt;
The format of the *.re input file is:&lt;br /&gt;
   [name]&lt;br /&gt;
   key1 = value1&lt;br /&gt;
   key2 = value2&lt;br /&gt;
   ...&lt;br /&gt;
   [name2]&lt;br /&gt;
   key1 = value1&lt;br /&gt;
   ...&lt;br /&gt;
where [name] represents the name of the partition, and the key-value pairs will represent the attributes.&lt;br /&gt;
&lt;br /&gt;
Example of an input file that clusters animals by their first letter:&lt;br /&gt;
   [animals]&lt;br /&gt;
   info = all animals&lt;br /&gt;
   [A]&lt;br /&gt;
   info = animals that start with A&lt;br /&gt;
   regexp = a.*&lt;br /&gt;
   [B]&lt;br /&gt;
   info = animals that start with B&lt;br /&gt;
   regexp = b.*&lt;br /&gt;
   ...&lt;br /&gt;
Using the format above, the partition can only have two levels.  It is possible to have multiple levels, but the input file needs to be an xml file (explained below).&lt;br /&gt;
===Given the input file, build and populate a partition===&lt;br /&gt;
   ./Partition.py -b [input.re] -f [input.fasta] [-o dir/file]&lt;br /&gt;
&lt;br /&gt;
The -o option specifies if the user wants to save the partition file as something other than the default temppart.xml.&lt;br /&gt;
===Use a metadata file to populate the partitions.===&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5574</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5574"/>
		<updated>2009-08-13T18:57:18Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Summary==&lt;br /&gt;
Partition is a python script that takes an input of regular expressions and metadata to build an xml file of matching header information from a fasta-formatted file.  Partition.py is located at:&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/Partition.py [&#039;&#039;&#039;stable&#039;&#039;&#039;]&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/MetaPart/src/Partition.py [&#039;&#039;&#039;latest, but possibly unstable builds&#039;&#039;&#039;]&lt;br /&gt;
&lt;br /&gt;
===Options===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
-p    Populate the given partition/XML.&lt;br /&gt;
-b    Given the input file, build a partition.&lt;br /&gt;
-m    Metadata file that will be used to populate the partitions.&lt;br /&gt;
-h    Header information for the metadata, if not present column information for metadata will be found in first line of the metadata.&lt;br /&gt;
-f    Input fasta file.&lt;br /&gt;
-s    Split the fasta file based on the partition information and output to the directory.&lt;br /&gt;
-o    Name of the output .part file.&lt;br /&gt;
-c    Convert an old partition format into the new xml format.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Tutorial==&lt;br /&gt;
===Format of an input regular expression (*.re) file===&lt;br /&gt;
The format of the *.re input file is:&lt;br /&gt;
   [name]&lt;br /&gt;
   key1 = value1&lt;br /&gt;
   key2 = value2&lt;br /&gt;
   ...&lt;br /&gt;
   [name2]&lt;br /&gt;
   key1 = value1&lt;br /&gt;
   ...&lt;br /&gt;
where [name] represents the name of the partition, and the key-value pairs will represent the attributes.&lt;br /&gt;
&lt;br /&gt;
Example of an input file that clusters animals by their first letter:&lt;br /&gt;
   [animals]&lt;br /&gt;
   info = all animals&lt;br /&gt;
   [A]&lt;br /&gt;
   info = animals that start with A&lt;br /&gt;
   regexp = a.*&lt;br /&gt;
   [B]&lt;br /&gt;
   info = animals that start with B&lt;br /&gt;
   regexp = b.*&lt;br /&gt;
   ...&lt;br /&gt;
Using the format above, the partition can only have two levels.  It is possible to have multiple levels, but the input file needs to be an xml file (explained below).&lt;br /&gt;
===Given the input file, build and populate a partition===&lt;br /&gt;
   ./Partition.py -b [input.re] -f [input.fasta] [-o dir/file]&lt;br /&gt;
&lt;br /&gt;
The -o option specifies if the user wants to save the partition file as something other than the default temppart.xml.&lt;br /&gt;
===Use a file of metadata that will be used to populate the partitions.===&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5573</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5573"/>
		<updated>2009-08-13T18:30:42Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: /* Given the input file, build and populate a partition */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Summary==&lt;br /&gt;
Partition is a python script that takes an input of regular expressions and metadata to build an xml file of matching header information from a fasta-formatted file.  Partition.py is located at:&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/Partition.py [&#039;&#039;&#039;stable&#039;&#039;&#039;]&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/MetaPart/src/Partition.py [&#039;&#039;&#039;latest, but possibly unstable builds&#039;&#039;&#039;]&lt;br /&gt;
&lt;br /&gt;
===Options===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
-p    Populate the given partition/XML.&lt;br /&gt;
-b    Given the input file, build a partition.&lt;br /&gt;
-m    Metadata file that will be used to populate the partitions.&lt;br /&gt;
-h    Header information for the metadata, if not present column information for metadata will be found in first line of the metadata.&lt;br /&gt;
-f    Input fasta file.&lt;br /&gt;
-s    Split the fasta file based on the partition information and output to the directory.&lt;br /&gt;
-o    Name of the output .part file.&lt;br /&gt;
-c    Convert an old partition format into the new xml format.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Tutorial==&lt;br /&gt;
===Format of an input regular expression (*.re) file===&lt;br /&gt;
The format of the *.re input file is:&lt;br /&gt;
   [name]&lt;br /&gt;
   key1 = value1&lt;br /&gt;
   key2 = value2&lt;br /&gt;
   ...&lt;br /&gt;
   [name2]&lt;br /&gt;
   key1 = value1&lt;br /&gt;
   ...&lt;br /&gt;
where [name] represents the name of the partition, and the key-value pairs will represent the attributes.&lt;br /&gt;
&lt;br /&gt;
Example of an input file that clusters animals by their first letter:&lt;br /&gt;
   [animals]&lt;br /&gt;
   info = all animals&lt;br /&gt;
   [A]&lt;br /&gt;
   info = animals that start with A&lt;br /&gt;
   regexp = a.*&lt;br /&gt;
   [B]&lt;br /&gt;
   info = animals that start with B&lt;br /&gt;
   regexp = b.*&lt;br /&gt;
   ...&lt;br /&gt;
Using the format above, the partition can only have two levels.  It is possible to have multiple levels, but the input file needs to be an xml file (explained below).&lt;br /&gt;
===Given the input file, build and populate a partition===&lt;br /&gt;
   ./Partition.py -b [input.re] -f [input.fasta] [-o dir/file]&lt;br /&gt;
&lt;br /&gt;
The -o option specifies if the user wants to save the partition file as something other than the default temppart.xml.&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5567</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5567"/>
		<updated>2009-08-13T15:47:40Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Summary==&lt;br /&gt;
Partition is a python script that takes an input of regular expressions and metadata to build an xml file of matching header information from a fasta-formatted file.  Partition.py is located at:&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/Partition.py [&#039;&#039;&#039;stable&#039;&#039;&#039;]&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/MetaPart/src/Partition.py [&#039;&#039;&#039;latest, but possibly unstable builds&#039;&#039;&#039;]&lt;br /&gt;
&lt;br /&gt;
===Options===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
-p    Populate the given partition/XML.&lt;br /&gt;
-b    Given the input file, build a partition.&lt;br /&gt;
-m    Metadata file that will be used to populate the partitions.&lt;br /&gt;
-h    Header information for the metadata, if not present column information for metadata will be found in first line of the metadata.&lt;br /&gt;
-f    Input fasta file.&lt;br /&gt;
-s    Split the fasta file based on the partition information and output to the directory.&lt;br /&gt;
-o    Name of the output .part file.&lt;br /&gt;
-c    Convert an old partition format into the new xml format.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Tutorial==&lt;br /&gt;
===Format of an input regular expression (*.re) file===&lt;br /&gt;
The format of the *.re input file is:&lt;br /&gt;
   [name]&lt;br /&gt;
   key1 = value1&lt;br /&gt;
   key2 = value2&lt;br /&gt;
   ...&lt;br /&gt;
   [name2]&lt;br /&gt;
   key1 = value1&lt;br /&gt;
   ...&lt;br /&gt;
where [name] represents the name of the partition, and the key-value pairs will represent the attributes.&lt;br /&gt;
&lt;br /&gt;
Example of an input file that clusters animals by their first letter:&lt;br /&gt;
   [animals]&lt;br /&gt;
   info = all animals&lt;br /&gt;
   [A]&lt;br /&gt;
   info = animals that start with A&lt;br /&gt;
   regexp = a.*&lt;br /&gt;
   [B]&lt;br /&gt;
   info = animals that start with B&lt;br /&gt;
   regexp = b.*&lt;br /&gt;
   ...&lt;br /&gt;
Using the format above, the partition can only have two levels.  It is possible to have multiple levels, but the input file needs to be an xml file (explained below).&lt;br /&gt;
===Given the input file, build and populate a partition===&lt;br /&gt;
   ./Partition.py -b [input.re] -f [input.fasta] [-o output/dir]&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5564</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5564"/>
		<updated>2009-08-13T14:53:44Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: /* Format of an input regular expression (*.re) file */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Summary==&lt;br /&gt;
Partition is a python script that takes an input of regular expressions and metadata to build an xml file of matching header information from a fasta-formatted file.  Partition.py is located at:&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/Partition.py [&#039;&#039;&#039;stable&#039;&#039;&#039;]&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/MetaPart/src/Partition.py [&#039;&#039;&#039;latest, but possibly unstable builds&#039;&#039;&#039;]&lt;br /&gt;
&lt;br /&gt;
===Options===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
-p    Populate the given partition/XML.&lt;br /&gt;
-b    Given the input file, build a partition.&lt;br /&gt;
-m    Metadata file that will be used to populate the partitions.&lt;br /&gt;
-h    Header information for the metadata, if not present column information for metadata will be found in first line of the metadata.&lt;br /&gt;
-f    Input fasta file.&lt;br /&gt;
-s    Split the fasta file based on the partition information and output to the directory.&lt;br /&gt;
-o    Name of the output .part file.&lt;br /&gt;
-c    Convert an old partition format into the new xml format.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Tutorial==&lt;br /&gt;
===Format of an input regular expression (*.re) file===&lt;br /&gt;
The format of the *.re input file is:&lt;br /&gt;
   [name]&lt;br /&gt;
   key1 = value1&lt;br /&gt;
   key2 = value2&lt;br /&gt;
   ...&lt;br /&gt;
   [name2]&lt;br /&gt;
   key1 = value1&lt;br /&gt;
   ...&lt;br /&gt;
where [name] represents the name of the partition, and the key-value pairs will represent the attributes.&lt;br /&gt;
&lt;br /&gt;
Example of an input file that clusters animals by their first letter:&lt;br /&gt;
   [animals]&lt;br /&gt;
   info = all animals&lt;br /&gt;
   [A]&lt;br /&gt;
   info = animals that start with A&lt;br /&gt;
   regexp = a.*&lt;br /&gt;
   [B]&lt;br /&gt;
   info = animals that start with B&lt;br /&gt;
   regexp = b.*&lt;br /&gt;
   ...&lt;br /&gt;
Using the format above, the partition can only have two levels.  It is possible to have multiple levels, but the input file needs to be an xml file (explained below).&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5563</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5563"/>
		<updated>2009-08-13T14:52:50Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Summary==&lt;br /&gt;
Partition is a python script that takes an input of regular expressions and metadata to build an xml file of matching header information from a fasta-formatted file.  Partition.py is located at:&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/Partition.py [&#039;&#039;&#039;stable&#039;&#039;&#039;]&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/MetaPart/src/Partition.py [&#039;&#039;&#039;latest, but possibly unstable builds&#039;&#039;&#039;]&lt;br /&gt;
&lt;br /&gt;
===Options===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
-p    Populate the given partition/XML.&lt;br /&gt;
-b    Given the input file, build a partition.&lt;br /&gt;
-m    Metadata file that will be used to populate the partitions.&lt;br /&gt;
-h    Header information for the metadata, if not present column information for metadata will be found in first line of the metadata.&lt;br /&gt;
-f    Input fasta file.&lt;br /&gt;
-s    Split the fasta file based on the partition information and output to the directory.&lt;br /&gt;
-o    Name of the output .part file.&lt;br /&gt;
-c    Convert an old partition format into the new xml format.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Tutorial==&lt;br /&gt;
===Format of an input regular expression (*.re) file===&lt;br /&gt;
The format of an&lt;br /&gt;
   [name]&lt;br /&gt;
   key1 = value1&lt;br /&gt;
   key2 = value2&lt;br /&gt;
   ...&lt;br /&gt;
   [name2]&lt;br /&gt;
   key1 = value1&lt;br /&gt;
   ...&lt;br /&gt;
Example of an input file that clusters animals by their first letter:&lt;br /&gt;
   [animals]&lt;br /&gt;
   info = all animals&lt;br /&gt;
   [A]&lt;br /&gt;
   info = animals that start with A&lt;br /&gt;
   regexp = a.*&lt;br /&gt;
   [B]&lt;br /&gt;
   info = animals that start with B&lt;br /&gt;
   regexp = b.*&lt;br /&gt;
   ...&lt;br /&gt;
Using the format above, the partition can only have two levels.  It is possible to have multiple levels, but the input file needs to be an xml file (explained below).&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5562</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5562"/>
		<updated>2009-08-13T14:33:27Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Summary==&lt;br /&gt;
Partition is a python script that takes an input of regular expressions and metadata to build an xml file of matching header information from a fasta-formatted file.  Partition.py is located at:&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/Partition.py [&#039;&#039;&#039;stable&#039;&#039;&#039;]&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/MetaPart/src/Partition.py [&#039;&#039;&#039;latest, but possibly unstable builds&#039;&#039;&#039;]&lt;br /&gt;
&lt;br /&gt;
===Options===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
-p    Populate the given partition/XML.&lt;br /&gt;
-b    Given the input file, build a partition.&lt;br /&gt;
-m    Metadata file that will be used to populate the partitions.&lt;br /&gt;
-h    Header information for the metadata, if not present column information for metadata will be found in first line of the metadata.&lt;br /&gt;
-f    Input fasta file.&lt;br /&gt;
-s    Split the fasta file based on the partition information and output to the directory.&lt;br /&gt;
-o    Name of the output .part file.&lt;br /&gt;
-c    Convert an old partition format into the new xml format.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Tutorial==&lt;br /&gt;
===Format of a input regular expression (*.re) file===&lt;br /&gt;
Example of an input file that clusters animals by their first letter:&lt;br /&gt;
   [animals]&lt;br /&gt;
   info = all animals&lt;br /&gt;
   [A]&lt;br /&gt;
   info = animals that start with A&lt;br /&gt;
   regexp = a.*&lt;br /&gt;
   [B]&lt;br /&gt;
   info = animals that start with B&lt;br /&gt;
   regexp = b.*&lt;br /&gt;
   ...&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5561</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5561"/>
		<updated>2009-08-13T14:33:05Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: /* Format of a input regular expression (*.re) file */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Summary==&lt;br /&gt;
Partition is a python script that takes an input of regular expressions and metadata to build an xml file of matching header information from a fasta-formatted file.  Partition.py is located at:&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/Partition.py [&#039;&#039;&#039;stable&#039;&#039;&#039;]&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/MetaPart/src/Partition.py [&#039;&#039;&#039;latest, but possibly unstable builds&#039;&#039;&#039;]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Options&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
-p    Populate the given partition/XML.&lt;br /&gt;
-b    Given the input file, build a partition.&lt;br /&gt;
-m    Metadata file that will be used to populate the partitions.&lt;br /&gt;
-h    Header information for the metadata, if not present column information for metadata will be found in first line of the metadata.&lt;br /&gt;
-f    Input fasta file.&lt;br /&gt;
-s    Split the fasta file based on the partition information and output to the directory.&lt;br /&gt;
-o    Name of the output .part file.&lt;br /&gt;
-c    Convert an old partition format into the new xml format.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Tutorial==&lt;br /&gt;
===Format of a input regular expression (*.re) file===&lt;br /&gt;
Example of an input file that clusters animals by their first letter:&lt;br /&gt;
   [animals]&lt;br /&gt;
   info = all animals&lt;br /&gt;
   [A]&lt;br /&gt;
   info = animals that start with A&lt;br /&gt;
   regexp = a.*&lt;br /&gt;
   [B]&lt;br /&gt;
   info = animals that start with B&lt;br /&gt;
   regexp = b.*&lt;br /&gt;
   ...&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5560</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5560"/>
		<updated>2009-08-13T14:32:46Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Summary==&lt;br /&gt;
Partition is a python script that takes an input of regular expressions and metadata to build an xml file of matching header information from a fasta-formatted file.  Partition.py is located at:&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/Partition.py [&#039;&#039;&#039;stable&#039;&#039;&#039;]&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/MetaPart/src/Partition.py [&#039;&#039;&#039;latest, but possibly unstable builds&#039;&#039;&#039;]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Options&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
-p    Populate the given partition/XML.&lt;br /&gt;
-b    Given the input file, build a partition.&lt;br /&gt;
-m    Metadata file that will be used to populate the partitions.&lt;br /&gt;
-h    Header information for the metadata, if not present column information for metadata will be found in first line of the metadata.&lt;br /&gt;
-f    Input fasta file.&lt;br /&gt;
-s    Split the fasta file based on the partition information and output to the directory.&lt;br /&gt;
-o    Name of the output .part file.&lt;br /&gt;
-c    Convert an old partition format into the new xml format.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Tutorial==&lt;br /&gt;
===Format of a input regular expression (*.re) file===&lt;br /&gt;
Example of an input file that clusters animals by their first letter:&lt;br /&gt;
   [animals]&lt;br /&gt;
   info = all animals&lt;br /&gt;
   [A]&lt;br /&gt;
   info = animals that start with A&lt;br /&gt;
   regexp = [Aa].*&lt;br /&gt;
   [B]&lt;br /&gt;
   info = animals that start with B&lt;br /&gt;
   regexp = [Bb].*&lt;br /&gt;
   ...&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5559</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5559"/>
		<updated>2009-08-13T14:14:55Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Summary==&lt;br /&gt;
Partition is a python script that takes an input of regular expressions and metadata to build an xml file of matching header information from a fasta-formatted file.  Partition.py is located at:&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/Partition.py [&#039;&#039;&#039;stable&#039;&#039;&#039;]&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/MetaPart/src/Partition.py [&#039;&#039;&#039;latest, but possibly unstable builds&#039;&#039;&#039;]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Options&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
-p    Populate the given partition/XML.&lt;br /&gt;
-b    Given the input file, build a partition.&lt;br /&gt;
-m    Metadata file that will be used to populate the partitions.&lt;br /&gt;
-h    Header information for the metadata, if not present column information for metadata will be found in first line of the metadata.&lt;br /&gt;
-f    Input fasta file.&lt;br /&gt;
-s    Split the fasta file based on the partition information and output to the directory.&lt;br /&gt;
-o    Name of the output .part file.&lt;br /&gt;
-c    Convert an old partition format into the new xml format.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Tutorial==&lt;br /&gt;
===Format of a input regular expression (*.re) file===&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5558</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5558"/>
		<updated>2009-08-13T14:14:09Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Partition is a python script that takes an input of regular expressions and metadata to build an xml file of matching header information from a fasta-formatted file.  Partition.py is located at:&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/Partition.py [&#039;&#039;&#039;stable&#039;&#039;&#039;]&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/MetaPart/src/Partition.py [&#039;&#039;&#039;latest, but possibly unstable builds&#039;&#039;&#039;]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039; Options &#039;&#039;&#039;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
-p    Populate the given partition/XML.&lt;br /&gt;
-b    Given the input file, build a partition.&lt;br /&gt;
-m    Metadata file that will be used to populate the partitions.&lt;br /&gt;
-h    Header information for the metadata, if not present column information for metadata will be found in first line of the metadata.&lt;br /&gt;
-f    Input fasta file.&lt;br /&gt;
-s    Split the fasta file based on the partition information and output to the directory.&lt;br /&gt;
-o    Name of the output .part file.&lt;br /&gt;
-c    Convert an old partition format into the new xml format.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Tutorial ==&lt;br /&gt;
=== Format of a input regular expression (*.re) file ===&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5557</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5557"/>
		<updated>2009-08-13T14:13:19Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: /* Tutorial */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Partition is a python script that takes an input of regular expressions and metadata to build an xml file of matching header information from a fasta-formatted file.  Partition.py is located at:&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/Partition.py [&#039;&#039;&#039;stable&#039;&#039;&#039;]&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/MetaPart/src/Partition.py [&#039;&#039;&#039;latest, but possibly unstable builds&#039;&#039;&#039;]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039; Options &#039;&#039;&#039;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
-p    Populate the given partition/XML.&lt;br /&gt;
-b    Given the input file, build a partition.&lt;br /&gt;
-m    Metadata file that will be used to populate the partitions.&lt;br /&gt;
-h    Header information for the metadata, if not present column information for metadata will be found in first line of the metadata.&lt;br /&gt;
-f    Input fasta file.&lt;br /&gt;
-s    Split the fasta file based on the partition information and output to the directory.&lt;br /&gt;
-o    Name of the output .part file.&lt;br /&gt;
-c    Convert an old partition format into the new xml format.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Tutorial ==&lt;br /&gt;
&#039;&#039;&#039; Format of a input regular expression (*.re) file &#039;&#039;&#039;&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5556</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5556"/>
		<updated>2009-08-13T14:13:10Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: /* Tutorial */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Partition is a python script that takes an input of regular expressions and metadata to build an xml file of matching header information from a fasta-formatted file.  Partition.py is located at:&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/Partition.py [&#039;&#039;&#039;stable&#039;&#039;&#039;]&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/MetaPart/src/Partition.py [&#039;&#039;&#039;latest, but possibly unstable builds&#039;&#039;&#039;]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039; Options &#039;&#039;&#039;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
-p    Populate the given partition/XML.&lt;br /&gt;
-b    Given the input file, build a partition.&lt;br /&gt;
-m    Metadata file that will be used to populate the partitions.&lt;br /&gt;
-h    Header information for the metadata, if not present column information for metadata will be found in first line of the metadata.&lt;br /&gt;
-f    Input fasta file.&lt;br /&gt;
-s    Split the fasta file based on the partition information and output to the directory.&lt;br /&gt;
-o    Name of the output .part file.&lt;br /&gt;
-c    Convert an old partition format into the new xml format.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Tutorial ===&lt;br /&gt;
&#039;&#039;&#039; Format of a input regular expression (*.re) file &#039;&#039;&#039;&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5555</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5555"/>
		<updated>2009-08-13T14:11:45Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Partition is a python script that takes an input of regular expressions and metadata to build an xml file of matching header information from a fasta-formatted file.  Partition.py is located at:&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/Partition.py [&#039;&#039;&#039;stable&#039;&#039;&#039;]&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/MetaPart/src/Partition.py [&#039;&#039;&#039;latest, but possibly unstable builds&#039;&#039;&#039;]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039; Options &#039;&#039;&#039;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
-p    Populate the given partition/XML.&lt;br /&gt;
-b    Given the input file, build a partition.&lt;br /&gt;
-m    Metadata file that will be used to populate the partitions.&lt;br /&gt;
-h    Header information for the metadata, if not present column information for metadata will be found in first line of the metadata.&lt;br /&gt;
-f    Input fasta file.&lt;br /&gt;
-s    Split the fasta file based on the partition information and output to the directory.&lt;br /&gt;
-o    Name of the output .part file.&lt;br /&gt;
-c    Convert an old partition format into the new xml format.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Tutorial ==&lt;br /&gt;
&#039;&#039;&#039; Format of a input regular expression (*.re) file &#039;&#039;&#039;&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5554</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5554"/>
		<updated>2009-08-13T14:10:28Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: /* Summary */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Partition is a python script that takes an input of regular expressions and metadata to build an xml file of matching header information from a fasta-formatted file.  Partition.py is located at:&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/Partition.py [&#039;&#039;&#039;stable&#039;&#039;&#039;]&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/MetaPart/src/Partition.py [&#039;&#039;&#039;latest, but possibly unstable builds&#039;&#039;&#039;]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039; Options &#039;&#039;&#039;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
-p    Populate the given partition/XML.&lt;br /&gt;
-b    Given the input file, build a partition.&lt;br /&gt;
-m    Metadata file that will be used to populate the partitions.&lt;br /&gt;
-h    Header information for the metadata, if not present column information for metadata will be found in first line of the metadata.&lt;br /&gt;
-f    Input fasta file.&lt;br /&gt;
-s    Split the fasta file based on the partition information and output to the directory.&lt;br /&gt;
-o    Name of the output .part file.&lt;br /&gt;
-c    Convert an old partition format into the new xml format.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5553</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5553"/>
		<updated>2009-08-13T14:10:11Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Partition is a python script that takes an input of regular expressions and metadata to build an xml file of matching header information from a fasta-formatted file.  Partition.py is located at:&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/Partition.py [&#039;&#039;&#039;stable&#039;&#039;&#039;]&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/MetaPart/src/Partition.py [&#039;&#039;&#039;latest, but possibly unstable builds&#039;&#039;&#039;]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039; Options &#039;&#039;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
-p    Populate the given partition/XML.&lt;br /&gt;
-b    Given the input file, build a partition.&lt;br /&gt;
-m    Metadata file that will be used to populate the partitions.&lt;br /&gt;
-h    Header information for the metadata, if not present column information for metadata will be found in first line of the metadata.&lt;br /&gt;
-f    Input fasta file.&lt;br /&gt;
-s    Split the fasta file based on the partition information and output to the directory.&lt;br /&gt;
-o    Name of the output .part file.&lt;br /&gt;
-c    Convert an old partition format into the new xml format.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5552</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5552"/>
		<updated>2009-08-13T14:09:42Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: /* Summary */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Partition is a python script that takes an input of regular expressions and metadata to build an xml file of matching header information from a fasta-formatted file.  Partition.py is located at:&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/Partition.py [&#039;&#039;&#039;stable&#039;&#039;&#039;]&lt;br /&gt;
    /fs/szasmg/metagenomics/Partition/MetaPart/src/Partition.py [&#039;&#039;&#039;latest, but possibly unstable builds&#039;&#039;&#039;]&lt;br /&gt;
&lt;br /&gt;
== Options ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
-p    Populate the given partition/XML.&lt;br /&gt;
-b    Given the input file, build a partition.&lt;br /&gt;
-m    Metadata file that will be used to populate the partitions.&lt;br /&gt;
-h    Header information for the metadata, if not present column information for metadata will be found in first line of the metadata.&lt;br /&gt;
-f    Input fasta file.&lt;br /&gt;
-s    Split the fasta file based on the partition information and output to the directory.&lt;br /&gt;
-o    Name of the output .part file.&lt;br /&gt;
-c    Convert an old partition format into the new xml format.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5551</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5551"/>
		<updated>2009-08-13T14:09:24Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: /* Summary */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Partition is a python script that takes an input of regular expressions and metadata to build an xml file of matching header information from a fasta-formatted file.  Partition.py is located at:&lt;br /&gt;
      /fs/szasmg/metagenomics/Partition/Partition.py [&#039;&#039;&#039;stable&#039;&#039;&#039;]&lt;br /&gt;
      /fs/szasmg/metagenomics/Partition/MetaPart/src/Partition.py [&#039;&#039;&#039;latest but possibly unstable builds&#039;&#039;&#039;]&lt;br /&gt;
&lt;br /&gt;
== Options ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
-p    Populate the given partition/XML.&lt;br /&gt;
-b    Given the input file, build a partition.&lt;br /&gt;
-m    Metadata file that will be used to populate the partitions.&lt;br /&gt;
-h    Header information for the metadata, if not present column information for metadata will be found in first line of the metadata.&lt;br /&gt;
-f    Input fasta file.&lt;br /&gt;
-s    Split the fasta file based on the partition information and output to the directory.&lt;br /&gt;
-o    Name of the output .part file.&lt;br /&gt;
-c    Convert an old partition format into the new xml format.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5550</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5550"/>
		<updated>2009-08-13T14:08:42Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: /* Summary */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Partition is a python script that takes an input of regular expressions and metadata to build an xml file of matching header information from a fasta-formatted file.  Partition.py is located at:&lt;br /&gt;
&amp;lt;pre&amp;gt;/fs/szasmg/metagenomics/Partition/Partition.py [&#039;&#039;&#039;stable&#039;&#039;&#039;]&lt;br /&gt;
/fs/szasmg/metagenomics/Partition/MetaPart/src/Partition.py [&#039;&#039;&#039;latest but possibly unstable builds&#039;&#039;&#039;]&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Options ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
-p    Populate the given partition/XML.&lt;br /&gt;
-b    Given the input file, build a partition.&lt;br /&gt;
-m    Metadata file that will be used to populate the partitions.&lt;br /&gt;
-h    Header information for the metadata, if not present column information for metadata will be found in first line of the metadata.&lt;br /&gt;
-f    Input fasta file.&lt;br /&gt;
-s    Split the fasta file based on the partition information and output to the directory.&lt;br /&gt;
-o    Name of the output .part file.&lt;br /&gt;
-c    Convert an old partition format into the new xml format.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5549</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5549"/>
		<updated>2009-08-13T14:08:08Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: /* Summary */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Partition is a python script that takes an input of regular expressions and metadata to build an xml file of matching header information from a fasta-formatted file.  Partition.py is located at:&lt;br /&gt;
&amp;lt;pre&amp;gt;/fs/szasmg/metagenomics/Partition/Partition.py [stable]&lt;br /&gt;
/fs/szasmg/metagenomics/Partition/MetaPart/src/Partition.py [latest but possibly unstable builds]&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Options ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
-p    Populate the given partition/XML.&lt;br /&gt;
-b    Given the input file, build a partition.&lt;br /&gt;
-m    Metadata file that will be used to populate the partitions.&lt;br /&gt;
-h    Header information for the metadata, if not present column information for metadata will be found in first line of the metadata.&lt;br /&gt;
-f    Input fasta file.&lt;br /&gt;
-s    Split the fasta file based on the partition information and output to the directory.&lt;br /&gt;
-o    Name of the output .part file.&lt;br /&gt;
-c    Convert an old partition format into the new xml format.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5548</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5548"/>
		<updated>2009-08-13T14:07:47Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Partition is a python script that takes an input of regular expressions and metadata to build an xml file of matching header information from a fasta-formatted file.  Partition.py is located at:&lt;br /&gt;
&amp;lt;pre&amp;gt;/fs/szasmg/metagenomics/Partition/Partition.py [latest stable]&lt;br /&gt;
/fs/szasmg/metagenomics/Partition/MetaPart/src/Partition.py [latest but possibly unstable builds]&amp;lt;/pre&amp;gt;&lt;br /&gt;
== Options ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
-p    Populate the given partition/XML.&lt;br /&gt;
-b    Given the input file, build a partition.&lt;br /&gt;
-m    Metadata file that will be used to populate the partitions.&lt;br /&gt;
-h    Header information for the metadata, if not present column information for metadata will be found in first line of the metadata.&lt;br /&gt;
-f    Input fasta file.&lt;br /&gt;
-s    Split the fasta file based on the partition information and output to the directory.&lt;br /&gt;
-o    Name of the output .part file.&lt;br /&gt;
-c    Convert an old partition format into the new xml format.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5547</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5547"/>
		<updated>2009-08-13T14:07:06Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Partition is a python script that takes an input of regular expressions and metadata to build an xml file of matching header information from a fasta-formatted file.  Partition.py is located at:&lt;br /&gt;
*/fs/szasmg/metagenomics/Partition/Partition.py [latest stable]&lt;br /&gt;
*/fs/szasmg/metagenomics/Partition/MetaPart/src/Partition.py [latest but possibly unstable builds]&lt;br /&gt;
== Options ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
-p    Populate the given partition/XML.&lt;br /&gt;
-b    Given the input file, build a partition.&lt;br /&gt;
-m    Metadata file that will be used to populate the partitions.&lt;br /&gt;
-h    Header information for the metadata, if not present column information for metadata will be found in first line of the metadata.&lt;br /&gt;
-f    Input fasta file.&lt;br /&gt;
-s    Split the fasta file based on the partition information and output to the directory.&lt;br /&gt;
-o    Name of the output .part file.&lt;br /&gt;
-c    Convert an old partition format into the new xml format.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5546</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5546"/>
		<updated>2009-08-13T14:04:06Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: /* Options */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Partition is a python script that takes an input of regular expressions and metadata to build an xml file of matching header information from a fasta-formatted file.  Partition.py is located at:&lt;br /&gt;
*/fs/szasmg/metagenomics/Partition/Partition.py [latest stable]&lt;br /&gt;
*/fs/szasmg/metagenomics/Partition/MetaPart/src/Partition.py [latest but possibly unstable builds]&lt;br /&gt;
== Options ==&lt;br /&gt;
-p    Populate the given partition/XML.&lt;br /&gt;
-b    Given the input file, build a partition.&lt;br /&gt;
-m    Metadata file that will be used to populate the partitions.&lt;br /&gt;
-h    Header information for the metadata, if not present column information for metadata will be found in first line of the metadata.&lt;br /&gt;
-f    Input fasta file.&lt;br /&gt;
-s    Split the fasta file based on the partition information and output to the directory.&lt;br /&gt;
-o    Name of the output .part file.&lt;br /&gt;
-c    Convert an old partition format into the new xml format.&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5545</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5545"/>
		<updated>2009-08-13T14:03:54Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: /* Options */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Partition is a python script that takes an input of regular expressions and metadata to build an xml file of matching header information from a fasta-formatted file.  Partition.py is located at:&lt;br /&gt;
*/fs/szasmg/metagenomics/Partition/Partition.py [latest stable]&lt;br /&gt;
*/fs/szasmg/metagenomics/Partition/MetaPart/src/Partition.py [latest but possibly unstable builds]&lt;br /&gt;
== Options ==&lt;br /&gt;
-p    Populate the given partition/XML.&lt;br /&gt;
-b    Given the input file, build a partition.&lt;br /&gt;
-m    Metadata file that will be used to populate the partitions.&lt;br /&gt;
-h    Header information for the metadata, if not present column information&lt;br /&gt;
      for metadata will be found in first line of the metadata.&lt;br /&gt;
-f    Input fasta file.&lt;br /&gt;
-s    Split the fasta file based on the partition information and output to the directory.&lt;br /&gt;
-o    Name of the output .part file.&lt;br /&gt;
-c    Convert an old partition format into the new xml format.&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5544</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5544"/>
		<updated>2009-08-13T14:03:33Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: /* Summary */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Partition is a python script that takes an input of regular expressions and metadata to build an xml file of matching header information from a fasta-formatted file.  Partition.py is located at:&lt;br /&gt;
*/fs/szasmg/metagenomics/Partition/Partition.py [latest stable]&lt;br /&gt;
*/fs/szasmg/metagenomics/Partition/MetaPart/src/Partition.py [latest but possibly unstable builds]&lt;br /&gt;
== Options ==&lt;br /&gt;
-p    Populate the given partition/XML.&lt;br /&gt;
-b    Given the input file, build a partition.&lt;br /&gt;
-m    Metadata file that will be used to populate the partitions.&lt;br /&gt;
-h    Header information for the metadata, if not present column information&lt;br /&gt;
        for metadata will be found in first line of the metadata.&lt;br /&gt;
-f    Input fasta file.&lt;br /&gt;
-s    Split the fasta file based on the partition information&lt;br /&gt;
       and output to the directory.&lt;br /&gt;
-o    Name of the output .part file.&lt;br /&gt;
-c    Convert an old partition format into the new xml format.&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5543</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5543"/>
		<updated>2009-08-13T14:02:31Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: /* Summary */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Partition is a python script that takes an input of regular expressions and metadata to build an xml file of matching header information from a fasta-formatted file.  Partition.py is located at:&lt;br /&gt;
*/fs/szasmg/metagenomics/Partition/Partition.py [latest stable]&lt;br /&gt;
*/fs/szasmg/metagenomics/Partition/MetaPart/src/Partition.py [latest but possibly unstable builds]&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5542</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5542"/>
		<updated>2009-08-13T13:51:25Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: /* Summary */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Partition is a python script that takes an input of regular expressions and metadata to build an xml file of matching header information from a fasta-formatted file.  Partition.py is located at:&lt;br /&gt;
**/fs/szasmg/metagenomics/Partition/Partition.py**&lt;br /&gt;
/fs/szasmg/metagenomics/Partition/MetaPart/src/Partition.py [latest but possibly unstable builds]&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5541</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5541"/>
		<updated>2009-08-13T13:51:07Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: /* Summary */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Partition is a python script that takes an input of regular expressions and metadata to build an xml file of matching header information from a fasta-formatted file.  Partition.py is located at:&lt;br /&gt;
&#039;/fs/szasmg/metagenomics/Partition/Partition.py&#039;&lt;br /&gt;
/fs/szasmg/metagenomics/Partition/MetaPart/src/Partition.py [latest but possibly unstable builds]&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5540</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5540"/>
		<updated>2009-08-13T13:50:16Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: /* Summary */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Partition is a python script that takes an input of regular expressions and metadata to build an xml file of matching header information from a fasta-formatted file.  Partition.py is located at:&lt;br /&gt;
*&lt;br /&gt;
/fs/szasmg/metagenomics/Partition/Partition.py&lt;br /&gt;
/fs/szasmg/metagenomics/Partition/MetaPart/src/Partition.py [latest but possibly unstable builds]&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5539</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5539"/>
		<updated>2009-08-13T13:49:59Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: /* Summary */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Partition is a python script that takes an input of regular expressions and metadata to build an xml file of matching header information from a fasta-formatted file.  Partition.py is located at:&lt;br /&gt;
*/fs/szasmg/metagenomics/Partition/Partition.py*&lt;br /&gt;
/fs/szasmg/metagenomics/Partition/MetaPart/src/Partition.py [latest but possibly unstable builds]&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5538</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5538"/>
		<updated>2009-08-13T13:49:51Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: /* Summary */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Partition is a python script that takes an input of regular expressions and metadata to build an xml file of matching header information from a fasta-formatted file.  Partition.py is located at:&lt;br /&gt;
*/fs/szasmg/metagenomics/Partition/Partition.py&lt;br /&gt;
/fs/szasmg/metagenomics/Partition/MetaPart/src/Partition.py [latest but possibly unstable builds]&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5537</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5537"/>
		<updated>2009-08-13T13:47:06Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: /* Summary */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Partition is a python script that takes an input of regular expressions and metadata to build an xml file of matching header information from a fasta-formatted file.&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5536</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5536"/>
		<updated>2009-08-13T13:46:53Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
&lt;br /&gt;
Partition is a python script that takes an input of regular expressions and metadata to build an xml file of matching header information from a fasta-formatted file.&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5522</id>
		<title>Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Partition&amp;diff=5522"/>
		<updated>2009-08-10T14:59:44Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Testing.&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Cbcb:Pop-Lab:Software&amp;diff=5521</id>
		<title>Cbcb:Pop-Lab:Software</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Cbcb:Pop-Lab:Software&amp;diff=5521"/>
		<updated>2009-08-10T14:59:35Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: /* Software developed by members of our group */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Software developed by members of our group==&lt;br /&gt;
[http://amos.sourceforge.net AMOS] - open-source assembly package &amp;lt;br&amp;gt;&lt;br /&gt;
[http://amos.sourceforge.net/docs/bambus Bambus] - hierachical genome scaffolder &amp;lt;br&amp;gt;&lt;br /&gt;
[http://amos.sourceforge.net/Figaro Figaro] - sequence trimmer that does not require knowledge about the vector sequence &amp;lt;br&amp;gt;&lt;br /&gt;
[http://www.cbcb.umd.edu/~whitej/metastats/detection.shtml MetaStats] - statistical methods for comparing metagenomic samples &amp;lt;br&amp;gt;&lt;br /&gt;
[http://www.cbcb.umd.edu/soma On-Soma] - scaffolder for optical mapping data &amp;lt;br&amp;gt;&lt;br /&gt;
[http://ardb.cbcb.umd.edu ARDB] - antibiotic resistance database &amp;lt;br&amp;gt;&lt;br /&gt;
[http://bowtie-bio.sourceforge.net Bowtie] - ultrafast and memory-efficient short read aligner&amp;lt;br&amp;gt;&lt;br /&gt;
Prokaryotic annotation pipeline &amp;lt;br&amp;gt;&lt;br /&gt;
Comparative annotation viewer &amp;lt;br&amp;gt;&lt;br /&gt;
[[Partition]]&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Cbcb:Pop-Lab:Partition&amp;diff=5520</id>
		<title>Cbcb:Pop-Lab:Partition</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Cbcb:Pop-Lab:Partition&amp;diff=5520"/>
		<updated>2009-08-10T14:59:21Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Testing.&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Cbcb:Pop-Lab:Software&amp;diff=5519</id>
		<title>Cbcb:Pop-Lab:Software</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Cbcb:Pop-Lab:Software&amp;diff=5519"/>
		<updated>2009-08-10T14:59:14Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: /* Software developed by members of our group */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Software developed by members of our group==&lt;br /&gt;
[http://amos.sourceforge.net AMOS] - open-source assembly package &amp;lt;br&amp;gt;&lt;br /&gt;
[http://amos.sourceforge.net/docs/bambus Bambus] - hierachical genome scaffolder &amp;lt;br&amp;gt;&lt;br /&gt;
[http://amos.sourceforge.net/Figaro Figaro] - sequence trimmer that does not require knowledge about the vector sequence &amp;lt;br&amp;gt;&lt;br /&gt;
[http://www.cbcb.umd.edu/~whitej/metastats/detection.shtml MetaStats] - statistical methods for comparing metagenomic samples &amp;lt;br&amp;gt;&lt;br /&gt;
[http://www.cbcb.umd.edu/soma On-Soma] - scaffolder for optical mapping data &amp;lt;br&amp;gt;&lt;br /&gt;
[http://ardb.cbcb.umd.edu ARDB] - antibiotic resistance database &amp;lt;br&amp;gt;&lt;br /&gt;
[http://bowtie-bio.sourceforge.net Bowtie] - ultrafast and memory-efficient short read aligner&amp;lt;br&amp;gt;&lt;br /&gt;
Prokaryotic annotation pipeline &amp;lt;br&amp;gt;&lt;br /&gt;
Comparative annotation viewer &amp;lt;br&amp;gt;&lt;br /&gt;
[[Cbcb:Pop-Lab:Partition]]&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Cbcb:Pop-Lab:How_to_use_the_partition_software%3F&amp;diff=5518</id>
		<title>Cbcb:Pop-Lab:How to use the partition software?</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Cbcb:Pop-Lab:How_to_use_the_partition_software%3F&amp;diff=5518"/>
		<updated>2009-08-10T01:31:13Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Testing.&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Cbcb:Pop-Lab:How-to&amp;diff=5517</id>
		<title>Cbcb:Pop-Lab:How-to</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Cbcb:Pop-Lab:How-to&amp;diff=5517"/>
		<updated>2009-08-10T01:31:06Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: /* How-To repository */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==How-To repository==&lt;br /&gt;
[http://www.cbcb.umd.edu/intranet/resources.shtml Getting started at the CBCB] &amp;lt;br&amp;gt;&lt;br /&gt;
[[Cbcb:Pop-Lab:AMOS-CVS How to use AMOS through CVS]] &amp;lt;br&amp;gt;&lt;br /&gt;
[[Cbcb:Pop-Lab:AMOScmp-SR How to use AMOScmp with short read data ]] &amp;lt;br&amp;gt;&lt;br /&gt;
How do I annotate a genome at the CBCB?&amp;lt;br&amp;gt;&lt;br /&gt;
[[Cbcb:Pop-Lab:How do I run the new Bambus | How do I run the new Bambus?]] &amp;lt;br&amp;gt;&lt;br /&gt;
How do I use the antibiotic resistance database?&amp;lt;br&amp;gt;&lt;br /&gt;
How do I use the antibiotic resistance database locally? &amp;lt;br&amp;gt;&lt;br /&gt;
How do I run jobs on the grid? &amp;lt;br&amp;gt;&lt;br /&gt;
[[Cbcb:Pop-Lab:OTUs How do I create OTUs from 16S rRNA sequence data? | How do I create OTUs from 16S rRNA sequence data?]] &amp;lt;br&amp;gt;&lt;br /&gt;
How do I compare metagenomic datasets through the metastats website?&amp;lt;br&amp;gt;&lt;br /&gt;
How do I compare metagenomic datasets using R directly? &amp;lt;br&amp;gt;&lt;br /&gt;
How do I find CRISPRs in a new genome?&amp;lt;br&amp;gt;&lt;br /&gt;
[[Cbcb:Pop-Lab:SOMA How do I scaffold a genome using optical maps (both locally and through the web) ]] &amp;lt;br&amp;gt;&lt;br /&gt;
How do I generate graph information out of Minimus?&amp;lt;br&amp;gt;&lt;br /&gt;
What tools are available for doing &amp;lt;i&amp;gt;in silico&amp;lt;/i&amp;gt; finishing at the CBCB? &amp;lt;br&amp;gt;&lt;br /&gt;
How do I generate a scaffold graph starting from a 454 .ace file?&amp;lt;br&amp;gt;&lt;br /&gt;
How do I draw a pretty picture of a scaffold stored in an AMOS bank?&amp;lt;br&amp;gt;&lt;br /&gt;
[[Cbcb:Pop-Lab:How to use the partition software? | How do I use the partition software?]]&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Cbcb:Pop-Lab:Chris-Report&amp;diff=5379</id>
		<title>Cbcb:Pop-Lab:Chris-Report</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Cbcb:Pop-Lab:Chris-Report&amp;diff=5379"/>
		<updated>2009-06-13T00:47:18Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: /* Tasks */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== June 12, 2009 ==&lt;br /&gt;
===Tasks===&lt;br /&gt;
&#039;&#039;&#039;Intergenic space and gene ontology work&#039;&#039;&#039;&lt;br /&gt;
*Investigated GO annotation tools that Bo has linked me to.&lt;br /&gt;
*I have been working on the Snail, &#039;&#039;Lottia gigantea&#039;&#039;, genome.&lt;br /&gt;
*Found the top 10% intergenic space with relative ease, however there was no GO annotation file for the genes.  Most of the genomes of interest will not have a GO annotation file (shocker, I know).&lt;br /&gt;
*BLAST&#039;d the sequences using Blast2GO, &#039;&#039;&#039;ALL in ONE tool for functional annotation of (novel) sequences and the analysis of annotation data.&#039;&#039;&#039; http://www.blast2go.org/&lt;br /&gt;
*Blast2GO has a pipeline version, so I have been planning a way to take new incomplete genomes and have them run through this annotation pipeline.&lt;br /&gt;
*BLAST took around 8 hours for ~2200 sequences using an online database.  I will run another group on the CBCB&#039;s BLAST.&lt;br /&gt;
*GO annotation using Blast2GO took around 24 hours.&lt;br /&gt;
*I plan on running HMMs for the approximate 200 sequences with no suitable hits this weekend.&lt;br /&gt;
&#039;&#039;&#039;Partition&#039;&#039;&#039;&lt;br /&gt;
*Drastically overhauling the backend of my partition program to make it more extendable/robust.&lt;br /&gt;
*Adding XML support to make parsing easier and increase possible functionality.&lt;br /&gt;
*Need to focus on getting James something usable asap.&lt;br /&gt;
&lt;br /&gt;
===Summer Goals===&lt;br /&gt;
*Finish analyzing the intergenic space of the incomplete genomes.  Determine future possibilities/publications.&lt;br /&gt;
*Modify/extend partition program to incorporate into James&#039; metagenomic pipeline.&lt;br /&gt;
*Include viral metagenomic data into GeneParser. &lt;br /&gt;
&lt;br /&gt;
== Mar 2, 2009 ==&lt;br /&gt;
===Tasks===&lt;br /&gt;
&#039;&#039;&#039;Intergenic space and gene ontology work with Cristian&#039;&#039;&#039;  &lt;br /&gt;
*Approach&lt;br /&gt;
  Get the gene-spacing information - typically a simple parse of GFF files, if they are available.&lt;br /&gt;
  Get the gene function information - use GO if available.&lt;br /&gt;
  Rank the genes based on 5&#039; spacing size.&lt;br /&gt;
  Take 10% longest, 10% shortest and middle 20% and find out what they do with GeneMerge&lt;br /&gt;
*Completed genomes&lt;br /&gt;
**Anenome, &#039;&#039;Nematostella vectensis&#039;&#039;&lt;br /&gt;
**Frog, &#039;&#039;Xenopus tropicalis&#039;&#039;&lt;br /&gt;
**Waterflea, &#039;&#039;Daphnia pulex&#039;&#039;&lt;br /&gt;
*Incomplete genomes that require blast&lt;br /&gt;
**Gastropod Snail, &#039;&#039;Lottia gigantea&#039;&#039;&lt;br /&gt;
**Polychaete Worm, &#039;&#039;Capitella sp&#039;&#039;&lt;br /&gt;
*Future genomes&lt;br /&gt;
**Leech, &#039;&#039;Helobdella robusta&#039;&#039;&lt;br /&gt;
**Flatworm (Planaria), &#039;&#039; Schmidtea mediterranea&#039;&#039; &lt;br /&gt;
**Sea Slug,&#039;&#039; Aplysia californica&#039;&#039;&lt;br /&gt;
**Snail,&#039;&#039; Biomphalaria glabrata&#039;&#039;&lt;br /&gt;
**Slime-mold, &#039;&#039;Dictyostelium purpureum QSDP1&#039;&#039;&lt;br /&gt;
*Waiting to hear back from Cristian about blast value cut-offs for incomplete genomes.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Partitioning System&#039;&#039;&#039;&lt;br /&gt;
*Splitting contigs based on &amp;quot;subgroup&amp;quot; information - essentially extending breaking up an entire assembly into multiple &amp;quot;sub-assemblies&amp;quot; each containing just reads from a single subgroup.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Conserved genomic elements in bacteria&#039;&#039;&#039;&lt;br /&gt;
*Update elements based on Adam&#039;s changes to Insignia.&lt;br /&gt;
*Find something to write about.&lt;br /&gt;
===Interesting Stuff===&lt;br /&gt;
*New insights into aging based on transcription factors, [http://med.stanford.edu/news_releases/2008/july/aging-worm.html Prevailing theory of aging challenged in Stanford worm study]&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/cbcb/index.php?title=Cbcb:Pop-Lab:Chris-Report&amp;diff=5378</id>
		<title>Cbcb:Pop-Lab:Chris-Report</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/cbcb/index.php?title=Cbcb:Pop-Lab:Chris-Report&amp;diff=5378"/>
		<updated>2009-06-13T00:45:46Z</updated>

		<summary type="html">&lt;p&gt;Cmhill: /* Tasks */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== June 12, 2009 ==&lt;br /&gt;
===Tasks===&lt;br /&gt;
&#039;&#039;&#039;Intergenic space and gene ontology work&#039;&#039;&#039;&lt;br /&gt;
*Investigated GO annotation tools that Bo has linked me to.&lt;br /&gt;
*I have been working on the Snail, &#039;&#039;Lottia gigantea&#039;&#039;, genome.&lt;br /&gt;
*Found the top 10% intergenic space with relative easy, however there was no GO annotation file for the genes.  &lt;br /&gt;
*BLAST&#039;d the sequences using Blast2GO, &#039;&#039;&#039;ALL in ONE tool for functional annotation of (novel) sequences and the analysis of annotation data.&#039;&#039;&#039; http://www.blast2go.org/&lt;br /&gt;
*Blast2GO has a pipeline version, so I have been planning a way to take new incomplete genomes and have them run through this annotation pipeline.&lt;br /&gt;
*BLAST took around 8 hours for ~2200 sequences using an online database.  I will run another group on the CBCB&#039;s BLAST.&lt;br /&gt;
*GO annotation using Blast2GO took around 24 hours.&lt;br /&gt;
*I plan on running HMMs for the approximate 200 sequences with no suitable hits this weekend.&lt;br /&gt;
&#039;&#039;&#039;Partition&#039;&#039;&#039;&lt;br /&gt;
*Drastically overhauling the backend of my partition program to make it more extendable/robust.&lt;br /&gt;
*Adding XML support to make parsing easier and increase possible functionality.&lt;br /&gt;
*Need to focus on getting James something usable asap.&lt;br /&gt;
&lt;br /&gt;
===Summer Goals===&lt;br /&gt;
*Finish analyzing the intergenic space of the incomplete genomes.  Determine future possibilities/publications.&lt;br /&gt;
*Modify/extend partition program to incorporate into James&#039; metagenomic pipeline.&lt;br /&gt;
*Include viral metagenomic data into GeneParser. &lt;br /&gt;
&lt;br /&gt;
== Mar 2, 2009 ==&lt;br /&gt;
===Tasks===&lt;br /&gt;
&#039;&#039;&#039;Intergenic space and gene ontology work with Cristian&#039;&#039;&#039;  &lt;br /&gt;
*Approach&lt;br /&gt;
  Get the gene-spacing information - typically a simple parse of GFF files, if they are available.&lt;br /&gt;
  Get the gene function information - use GO if available.&lt;br /&gt;
  Rank the genes based on 5&#039; spacing size.&lt;br /&gt;
  Take 10% longest, 10% shortest and middle 20% and find out what they do with GeneMerge&lt;br /&gt;
*Completed genomes&lt;br /&gt;
**Anenome, &#039;&#039;Nematostella vectensis&#039;&#039;&lt;br /&gt;
**Frog, &#039;&#039;Xenopus tropicalis&#039;&#039;&lt;br /&gt;
**Waterflea, &#039;&#039;Daphnia pulex&#039;&#039;&lt;br /&gt;
*Incomplete genomes that require blast&lt;br /&gt;
**Gastropod Snail, &#039;&#039;Lottia gigantea&#039;&#039;&lt;br /&gt;
**Polychaete Worm, &#039;&#039;Capitella sp&#039;&#039;&lt;br /&gt;
*Future genomes&lt;br /&gt;
**Leech, &#039;&#039;Helobdella robusta&#039;&#039;&lt;br /&gt;
**Flatworm (Planaria), &#039;&#039; Schmidtea mediterranea&#039;&#039; &lt;br /&gt;
**Sea Slug,&#039;&#039; Aplysia californica&#039;&#039;&lt;br /&gt;
**Snail,&#039;&#039; Biomphalaria glabrata&#039;&#039;&lt;br /&gt;
**Slime-mold, &#039;&#039;Dictyostelium purpureum QSDP1&#039;&#039;&lt;br /&gt;
*Waiting to hear back from Cristian about blast value cut-offs for incomplete genomes.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Partitioning System&#039;&#039;&#039;&lt;br /&gt;
*Splitting contigs based on &amp;quot;subgroup&amp;quot; information - essentially extending breaking up an entire assembly into multiple &amp;quot;sub-assemblies&amp;quot; each containing just reads from a single subgroup.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Conserved genomic elements in bacteria&#039;&#039;&#039;&lt;br /&gt;
*Update elements based on Adam&#039;s changes to Insignia.&lt;br /&gt;
*Find something to write about.&lt;br /&gt;
===Interesting Stuff===&lt;br /&gt;
*New insights into aging based on transcription factors, [http://med.stanford.edu/news_releases/2008/july/aging-worm.html Prevailing theory of aging challenged in Stanford worm study]&lt;/div&gt;</summary>
		<author><name>Cmhill</name></author>
	</entry>
</feed>