<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Home</title><link>https://sourceforge.net/p/metaerg/wiki/Home/</link><description>Recent changes to Home</description><atom:link href="https://sourceforge.net/p/metaerg/wiki/Home/feed" rel="self"/><language>en</language><lastBuildDate>Mon, 02 Sep 2019 00:12:10 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/metaerg/wiki/Home/feed" rel="self" type="application/rss+xml"/><item><title>Home modified by Xiaoli Dong</title><link>https://sourceforge.net/p/metaerg/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v82
+++ v83
@@ -1,202 +1,3 @@
 [[download_button]]

 On how to use MetaErg, please refer to the [README.md](https://github.com/xiaoli-dong/metaerg) on Github
-#MetaErg: metagenome and metaproteome analysis pipeline
-
-MetaErg, a stand-alone and fully automated metagenome and metaproteome annotation pipeline developed using perl, bioperl, html, and javascript, takes assembled genomic or metagenomic contigs as input. It bundles essential annotation tasks such as feature prediction, functional annotation with Hidden Markov Model (HMM) searches as well as blast and diamond searches. It estimates and visualizes quantitative taxonomic and pathway compositions of multiple metagenomic and proteomics samples using sequencing coverage and proteomics spectral counts, respectively. For visualization, MetaErg provides a HTML interface, bringing all annotation results together, and producing sortable and searchable tables, collapsible trees, and other graphic representations enabling intuitive navigation of complex data.
-
----
-# Required perl modules
-MetaErg is developed using perl, html, and javascript and have been tested on Linux platform. It requires Perl 5.6.0 or higher. In addition, it also require following modules, which are not included in the perl core modules, to be installed:
-
-* Archive::Extract;
-* DBI
-* HTML::Entities;
-* List::MoreUtils qw(uniq);
-* SWISS::Entry;
-* SWISS::KW;
-* Threads::shared;
-* XML::Parser;
-* XML::Simple;
-* Bioperl
-
-## Dependencies
-
-MetaErg depends on a list of third-party programs to do the gene predication and function annotations. Make sure that all MetaErg's dependencies to be instaled and are in your system's path. MetaErg depends on:
-
-* [ARAGORN](http://mbio-serv2.mbioekol.lu.se/ARAGORN)
-* [DIAMOND](https://github.com/bbuchfink/diamond)
-* [Hmmsearch](http://hmmer.org)
-* [MinCED](https://github.com/ctSkennerton/minced)
-* [Prodigal](https://github.com/hyattpd/Prodigal)
-* [rRNAFinder](https://sourceforge.net/projects/rrnafinder)
-* [SignalP](http://www.cbs.dtu.dk/cgi-bin/nph-sw_request?signalp)
-* [TMHMM](http://www.cbs.dtu.dk/cgi-bin/nph-sw_request?tmhmm)
-* [MinPath](http://omics.informatics.indiana.edu/MinPath)
-
----
-
-## Searching database
-
-MetaErg depends on the following database to assign the predicated genes taxonomic, functinal, and pathway annotation 
-
-* [SwissProt](https://www.uniprot.org/)
-* [Pfam](http://pfam.xfam.org)
-* [TIGRFAMS](http://tigrfams.jcvi.org/cgi-bin/index.cgi)
-* [metabolic-hmms](https://github.com/banfieldlab/metabolic-hmms)
-* [casgene.hmm](https://www.nature.com/articles/nature21059)
-* [FOAM](https://cbb.pnnl.gov/portal/software/FOAM.html)
-
-## Installation
-
-Extract the downloaded  archive
-
-&amp;gt; tar -xvzf metaerg.*.tar.gz
-
-&amp;gt; cd metaerg
-
-
-\#The "db/tmp" directory is serving as a directory to hold all the temporary files while MetaErg initializing or updating the searching databases.
-&amp;gt; mkdir db/tmp
-
-\# Check required software dependencies
-&amp;gt; perl bin/check_tools.pl
-
-\# Intialize the searching databases
-&amp;gt; perl bin/build_db.pl
-
-\# Initialize sqlite3 database
-&amp;gt; cd into db/sqlite3
-&amp;gt; cat metaerg.sql | sqlite3 metaerg.db
-
----
-## Running MetaErg
-
-Let's assume you are in the "example" direcoty of the MetaErg installation 
-
-\# Checking MetaErg's command line options
-
-&amp;gt; perl ../bin/metaerg.pl --help
-
-\# Running MetaErg with default parameters
-
-&amp;gt; perl ../bin/metaerg.pl test.fasta
-
-\# Running MetaErg with signal peptide and cleavage site and transmembrane helics predication enabled. MetaErg will be slow down with those two feature enabled
-
-&amp;gt; perl ../bin/metaerg.pl --sp --tm test.fasta
-
-\# Running MetaErg with all the output to a user defined directory. By default, MetaErg will generate a output directory in the format of "locusttag_timestamp"
-
-&amp;gt; perl ../bin/metaerg.pl --sp --tm --outdir metaerg_out --prefix test --locustag metaerg_test test.fasta
-
-\# Overwrite previous results with --force option
-
-&amp;gt; perl  ../bin/metaerg.pl  --force test.fasta
-
-\# Running MetaErg with user provided coverage profile. With this supplied coverage profile, MetaErg will generate quantitative taxonomic, functional, and pathway compositions of multiple metagenomic samples.  The coverage profile must be in a well defined format in order for MetaErg  program to parse it correctly. For the required coverage profile format, you can refer to "cyano.depth.txt" file included in the "example" directory of the MetaErg installation. The example file can be generated using "**jgi_summarize_bam_contig_depths**" command from [MetaBat](https://bitbucket.org/berkeleylab/metabat) program after you finish the short reads to contig mapping process.
-
-&amp;gt;perl ../bin/metaerg.pl --outdir metaerg_cyano --prefix cyano --locustag cyano --sp --tm --depth cyano.depth.txt cyano.fna
-
-\# Running MetaErg with with user provided protein expression level profile. With protein expression level profile provided, MetaErg will generate functional, pathway profiles based on the proteins expressed in the metagenomic samples. For the required protein expression profile format, you can refer to "cyano.proteomics.txt" file included in the "example" of the MetaErg installation.
-
-&amp;gt;perl ../bin/metaerg.pl --outdir cyano --prefix cyano --locustag cyano --sp --tm --depth cyano.depth.txt --plevel cyano.proteomics.txt cyano.fna
-
----
-##Utility scripts
-
-MetaErg also includes some utility scripts to filtering contigs, add bin ids to the coding sequecnes, generate input for VizBin program. Some of the examples are listed as below:
-
-##### Filter out fasta format sequences shorter than a defined length ####
-
-&amp;gt; perl ../bin/filterContigByLength.pl test.fasta 500
-
-The above command filters out the sequences shorter than 500bp from the input test.fasta file
-
-##### Generate input files for VisBin program to visualize binning results ##########
-
-&amp;gt;perl ../bin/getVizBinInput.pl -d binning_dir
-
-The "binning_dir" contains all the bin files. Each bin file is named in the format of "Bin.binid.fa" and binid is a number. Each bin file contains all the contigs binned together. The above command writes two files into the "binning_dir":  "binned_concat.fasta" and "binned_annotation.list".  In the VizBin application, the "binned_concat.fasta" will be uploaded to "File to Visualize" field and "binned_annotation.list" will be loaded to "Annotation file(optional)" field.
-
-##### Extract MetaErg annotations for a subset of input contig sequences #####
-
-Let's assume you are in the "example" directory of the MetaErg installation and "subset.fasta" file contains a subset of contig sequences from "cyano.fasta" file. The following two commands will generate the html reports for the contigs included in "subset.fasta" file
-
-\# Step1, extracting the annotations belonging to all the contigs contained in "subset.fasta" in gff format :
-
-&amp;gt;perl ../bin/fastaContig2Gff.pl -c subset.fasta -g cyano/data/master.gff  &amp;gt; subset.gff
-
-\# Step 2, generating the annotation results and html reports to "metaerg_subset_output"
-
-&amp;gt;perl ../bin/output_reports.pl  -g subset.gff -f subset.fasta -o metaerg_subset_output
-
-##### Add bin ids to the MetaErg generated fiiles #####
-
-Let's assume you are in "example" directory of the MetaErg installation and your binning results are in the "binning" directory.  "Bin.1.fa", "Bin.2.fa",  and "Bin.3.fa" files sitting in the "binning" directory contain all the fasta format contig sequences belonging to bin1, bin2, and bin3, respectivly.  
-
-\# Add bin id to the front of the protein coding sequence id in the format of "binid_" 
-
-&amp;gt;perl ../bin/add_binid2cds.pl -d binning -c cyano/data/cds.faa -g cyano/data/master.gff
-
-\# Add bin ids to master.tsv file  as the first column
-
-&amp;gt;perl ../bin/add_binid2master_dot_tsv.pl -d binning -t cyano/data/master.tsv
-
----
-## MeteErg outputs
-MetaErg writes all the output files into a user defined or MetaErg generated output directory. The following is an example of the MetaErg output file structure layout:
-
-[[img src=metaerg_output_home.png alt=MetaErg_output_fist_level_layout]]
-
-| Output        | Description|
-|: --- |: --- |
-| cyan.fna | Reformated and filtered fasta format input contig sequences |
-| data | A directory contains all the MetaErg generated annotation summary files in differenct formats. Although the files have different suffix, they are all text files, whch can be opened in any text editor |
-| html | A directory contains all the HTML pages for various type of  HTML reports |
-| images | A directory contains all the image files for the html reports such as logo, banner|
-| index.html | An interactive HTML report, which links all the MetaErg annotation results together |
-| js | A directory contains all the required Javascript libraries for the interactive html reports |
-| style.css | A HTML style sheet, which controls the look of the html reports |
-| tmp | A dirctory contains all the MetaErg intermediate outputs. It is also useful when MetaErg fails in the middle of the run. With this directory in place, when you restart the job using the exact same parameters after MetaErg failling, MetaErg will start from the place it failed.  After MetaErg job finishes successfully, this directory can be deleted before you transfer the results to your local computers|
-
-### data directory list
-
-| File|Description|
-    |---|---|
-     |\*.tab.txt | Tab separated feature summary file|
-    |\*.json | Feature summary files in json formats, which are used to populate trees, tables, and sunburst visualizations in html reports.|
-     |\*.minpath| MinPath program generated pathway report files, on how to interpret the results, please refer to [how to read MinPath report](http://omics.informatics.indiana.edu/MinPath/readme.txt) |
-    |\*.minpath.details|MinPath program generated pathway report files, on how to interpret the results, please refer to [how to read MinPath report](http://omics.informatics.indiana.edu/MinPath/readme.txt) |
-    |master.gff| Total MetaErg annotation in  GFF3 format, It can be viewed directly in Artemis or IGV|
-    | master.tsv| A tab-separated file including all the selected annotation fields |
-    |master.tbl| A total MetaErg annotation file in feature table format | 
-    | master.stats.txt | A statistic summary file relating to the annotated features found |
-    | msampleName2shortName.txt | A tab-separated file has two lines. The first line is the tab-separated original sample names MetaErg gets from the coverage file provided by user and the second line is the tab-separated new shorter sample names generated by MetaErg |
-    |psampleName2shortName.txt |A tab-separated file has two lines. The first line is tab-separated original sample names MetaErg gets from the protein expression level file provided by user and the second line is the tab-separated new shorter sample names generated by MetaErg |
-    |cds.foam.\* | FOAM database searching output summary files in different formats|
-    | cds.metabolic.\* | Protein coding genes searching against [metabolic database](https://github.com/banfieldlab/metabolic-hmms) searching result summaries in different formats|
-    | cds.gene2ec.txt | Gene to ec number mapping file of the total metegenome samples|
-    |cds.gene2ec.M\*.txt| Gene to ec number mapping file of each input metagenome sample|
-    |cds.gene2ec.plevel.p\*.txt| Gene to ec number mapping file, which is generated based on only the expressed protein from each sample|
-    |cds.gene2ec.minpath\*|MetaCyc pathway report based on the total metagenome |
-    |cds.gene2ec.M\*.minpath\*|MetaCyc pathway report of each metagenome sample|
-    |cds.gene2ec.plevel.P\*.minpath\*|MetaCyc pathway report from only the expressed proteins of an individual metagenome sample|
-    |cds.gene2ko.txt | Gene to ko number mapping files of the total metagenome samples|
-    |cds.gene2ko.M\*.txt|Gene to ko number mapping file of the total metagenome samples|
-    |cds.gene2ko.plevel.p\*.txt|Gene to ko number mapping file,  which is generated based on only the expressed protein from each sample |
-    |cds.gene2ko.minpath\*|KEGG pathway report of the total metagenome samples|
-    |cds.gene2ko.M\*.minpath|KEGG pathway report of each metagenome sample|
-    |cds.gene2ko.plevel.P\*.minpath|KEGG pathway report from only the expressed proteins of an individual metagenome sample|
-    |taxon.cds.\*| Taxnomy assignment sumary reports of the total metagenome smaple in different formats based on the coding sequences|
-    |taxon.\*SrRNA.\*|The rRNA gene taxonomy assignment summary reports in different formats |
-    |cds.gene2sport.\*| Protein coding gene searching against SwissPort database result summaries in different format |
-    |cds.gene2pfam.\*|Protein coding sequence searching against pfam database result summaries in different format|
-    |cds.gene2tigrfam.\*|Protein coding sequence searching against tigrfam database result summaries in different format|
-    |rRNA.\*| Predicated rRNA genes (including both SSU-rRNA and LSU-rRNA) and their associcated taxonomy summary reports|
-    |CRISPR.\*| Predicated CRISPR and its associated taxonomy summary reports|
-    |\*.ffn |FASTA format nucleotide sequence files for the MetaErg predicated features (tRNA, crispr, cds, rRNA)|
-    |cds.faa | Predicated protein coding amino acid sequence in FASTA format |
-
-[[members limit=20]]
-[[download_button]]
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Xiaoli Dong</dc:creator><pubDate>Mon, 02 Sep 2019 00:12:10 -0000</pubDate><guid>https://sourceforge.netb670a66d54a77694130970a560ce4633c5dc2d73</guid></item><item><title>Home modified by Xiaoli Dong</title><link>https://sourceforge.net/p/metaerg/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v81
+++ v82
@@ -1,4 +1,6 @@
 [[download_button]]
+
+On how to use MetaErg, please refer to the [README.md](https://github.com/xiaoli-dong/metaerg) on Github
 #MetaErg: metagenome and metaproteome analysis pipeline

 MetaErg, a stand-alone and fully automated metagenome and metaproteome annotation pipeline developed using perl, bioperl, html, and javascript, takes assembled genomic or metagenomic contigs as input. It bundles essential annotation tasks such as feature prediction, functional annotation with Hidden Markov Model (HMM) searches as well as blast and diamond searches. It estimates and visualizes quantitative taxonomic and pathway compositions of multiple metagenomic and proteomics samples using sequencing coverage and proteomics spectral counts, respectively. For visualization, MetaErg provides a HTML interface, bringing all annotation results together, and producing sortable and searchable tables, collapsible trees, and other graphic representations enabling intuitive navigation of complex data.
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Xiaoli Dong</dc:creator><pubDate>Mon, 02 Sep 2019 00:11:05 -0000</pubDate><guid>https://sourceforge.net4b6490ddc0ac72d781be047cfea93cbc42e6070d</guid></item><item><title>Home modified by Xiaoli Dong</title><link>https://sourceforge.net/p/metaerg/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Xiaoli Dong</dc:creator><pubDate>Wed, 10 Jul 2019 21:22:31 -0000</pubDate><guid>https://sourceforge.net04f46e61b22bb82d1b47b4ee9efb53a9d1ddd884</guid></item><item><title>Home modified by Xiaoli Dong</title><link>https://sourceforge.net/p/metaerg/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v79
+++ v80
@@ -47,9 +47,9 @@

 ## Installation

-Extract the downloaded zipped archive
-
-&amp;gt; unzip metaerg-1.0.0.zip
+Extract the downloaded  archive
+
+&amp;gt; tar -xvzf metaerg.*.tar.gz

 &amp;gt; cd metaerg

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Xiaoli Dong</dc:creator><pubDate>Thu, 07 Feb 2019 16:13:48 -0000</pubDate><guid>https://sourceforge.net6d3f9115c332d0fbbd1c22b60e06a38cf85e6fd4</guid></item><item><title>Home modified by Xiaoli Dong</title><link>https://sourceforge.net/p/metaerg/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v78
+++ v79
@@ -30,7 +30,6 @@
 * [rRNAFinder](https://sourceforge.net/projects/rrnafinder)
 * [SignalP](http://www.cbs.dtu.dk/cgi-bin/nph-sw_request?signalp)
 * [TMHMM](http://www.cbs.dtu.dk/cgi-bin/nph-sw_request?tmhmm)
-* [GenomeDatabase](https://sourceforge.net/projects/genomedatabase)
 * [MinPath](http://omics.informatics.indiana.edu/MinPath)

 ---
@@ -40,7 +39,6 @@
 MetaErg depends on the following database to assign the predicated genes taxonomic, functinal, and pathway annotation 

 * [SwissProt](https://www.uniprot.org/)
-* [GenomeDatabase](https://sourceforge.net/projects/genomedatabase)
 * [Pfam](http://pfam.xfam.org)
 * [TIGRFAMS](http://tigrfams.jcvi.org/cgi-bin/index.cgi)
 * [metabolic-hmms](https://github.com/banfieldlab/metabolic-hmms)
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Xiaoli Dong</dc:creator><pubDate>Fri, 01 Feb 2019 22:51:05 -0000</pubDate><guid>https://sourceforge.netece74fe0ac21f75b0ce655cd13c8619dc73a915e</guid></item><item><title>Home modified by Xiaoli Dong</title><link>https://sourceforge.net/p/metaerg/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v77
+++ v78
@@ -44,7 +44,7 @@
 * [Pfam](http://pfam.xfam.org)
 * [TIGRFAMS](http://tigrfams.jcvi.org/cgi-bin/index.cgi)
 * [metabolic-hmms](https://github.com/banfieldlab/metabolic-hmms)
-* [casegene.hmm](https://www.nature.com/articles/nature21059)
+* [casgene.hmm](https://www.nature.com/articles/nature21059)
 * [FOAM](https://cbb.pnnl.gov/portal/software/FOAM.html)

 ## Installation
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Xiaoli Dong</dc:creator><pubDate>Tue, 22 Jan 2019 21:46:45 -0000</pubDate><guid>https://sourceforge.net7557ad146497554c39c7d8a1d4a88f16b790f216</guid></item><item><title>Home modified by Xiaoli Dong</title><link>https://sourceforge.net/p/metaerg/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v76
+++ v77
@@ -37,7 +37,7 @@

 ## Searching database

-MetaErg depends on the following database to give the taxonomic, functinal, and pathway predication:
+MetaErg depends on the following database to assign the predicated genes taxonomic, functinal, and pathway annotation 

 * [SwissProt](https://www.uniprot.org/)
 * [GenomeDatabase](https://sourceforge.net/projects/genomedatabase)
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Xiaoli Dong</dc:creator><pubDate>Tue, 08 Jan 2019 16:49:02 -0000</pubDate><guid>https://sourceforge.netd4d03ad2a1179df88f0fe22d37f3fc93ffd85575</guid></item><item><title>Home modified by Xiaoli Dong</title><link>https://sourceforge.net/p/metaerg/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v75
+++ v76
@@ -34,6 +34,19 @@
 * [MinPath](http://omics.informatics.indiana.edu/MinPath)

 ---
+
+## Searching database
+
+MetaErg depends on the following database to give the taxonomic, functinal, and pathway predication:
+
+* [SwissProt](https://www.uniprot.org/)
+* [GenomeDatabase](https://sourceforge.net/projects/genomedatabase)
+* [Pfam](http://pfam.xfam.org)
+* [TIGRFAMS](http://tigrfams.jcvi.org/cgi-bin/index.cgi)
+* [metabolic-hmms](https://github.com/banfieldlab/metabolic-hmms)
+* [casegene.hmm](https://www.nature.com/articles/nature21059)
+* [FOAM](https://cbb.pnnl.gov/portal/software/FOAM.html)
+
 ## Installation

 Extract the downloaded zipped archive
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Xiaoli Dong</dc:creator><pubDate>Tue, 08 Jan 2019 16:46:39 -0000</pubDate><guid>https://sourceforge.net1d7738ae470703a03419843596684eb87f152b3a</guid></item><item><title>Home modified by Xiaoli Dong</title><link>https://sourceforge.net/p/metaerg/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v74
+++ v75
@@ -77,9 +77,9 @@

 &amp;gt; perl ../bin/metaerg.pl --sp --tm --outdir metaerg_out --prefix test --locustag metaerg_test test.fasta

-\# Overwrite previous results
+\# Overwrite previous results with --force option

-&amp;gt; perl  ../bin/metaerg.pl  test.fasta
+&amp;gt; perl  ../bin/metaerg.pl  --force test.fasta

 \# Running MetaErg with user provided coverage profile. With this supplied coverage profile, MetaErg will generate quantitative taxonomic, functional, and pathway compositions of multiple metagenomic samples.  The coverage profile must be in a well defined format in order for MetaErg  program to parse it correctly. For the required coverage profile format, you can refer to "cyano.depth.txt" file included in the "example" directory of the MetaErg installation. The example file can be generated using "**jgi_summarize_bam_contig_depths**" command from [MetaBat](https://bitbucket.org/berkeleylab/metabat) program after you finish the short reads to contig mapping process.

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Xiaoli Dong</dc:creator><pubDate>Mon, 07 Jan 2019 18:46:36 -0000</pubDate><guid>https://sourceforge.nete7775a466a0394e60063a2b3fe1f63aa48b093cd</guid></item><item><title>Home modified by Xiaoli Dong</title><link>https://sourceforge.net/p/metaerg/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v73
+++ v74
@@ -162,7 +162,7 @@
     | msampleName2shortName.txt | A tab-separated file has two lines. The first line is the tab-separated original sample names MetaErg gets from the coverage file provided by user and the second line is the tab-separated new shorter sample names generated by MetaErg |
     |psampleName2shortName.txt |A tab-separated file has two lines. The first line is tab-separated original sample names MetaErg gets from the protein expression level file provided by user and the second line is the tab-separated new shorter sample names generated by MetaErg |
     |cds.foam.\* | FOAM database searching output summary files in different formats|
-    | cds.metabolic.\* | Protein coding genes search against [metabolic database](https://github.com/banfieldlab/metabolic-hmms) and the searching results are provided in different formats|
+    | cds.metabolic.\* | Protein coding genes searching against [metabolic database](https://github.com/banfieldlab/metabolic-hmms) searching result summaries in different formats|
     | cds.gene2ec.txt | Gene to ec number mapping file of the total metegenome samples|
     |cds.gene2ec.M\*.txt| Gene to ec number mapping file of each input metagenome sample|
     |cds.gene2ec.plevel.p\*.txt| Gene to ec number mapping file, which is generated based on only the expressed protein from each sample|
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Xiaoli Dong</dc:creator><pubDate>Mon, 07 Jan 2019 18:07:02 -0000</pubDate><guid>https://sourceforge.net187c94757e829b11f6bbd106bd4a909f77b11c3e</guid></item></channel></rss>