Skip to content

Example and sample data

Nelly Sélem edited this page Jan 26, 2018 · 97 revisions

On this tutorial are shown two EvoMining examples. 1) Utilizing default data, EvoMining web interface functionality is explained. 2)Use of custom input databases is exemplified with sample data. To learn more about how to construct the databases consult the databases site.

EvoMining web interface

1. Welcome Scrren

After start EvoMining on the docker image with the default data by typing perl startEvoMining.pl, start EvoMining web pipeline on firefox or any browser at the adress: http://localhost/html/EvoMining/index.html. When in doubt about how to launch EvoMining docker, consult Installation. This should be the welcome screen.
welcome

2. Start expansions heat map.

On a second screen EvoMining requires the e-value required to consider a sequence inside a family, default:0.001. Press start to launch the script that for each enzymatic family identifies sequences that belong to the extended family.
Start

3. Visualize expansions heatmap.

A heatmap table it is presented to the user. Organisms are distributed on the rows of the table. Each column represents an enzyme family. When an organism has a copy number above the average plus one standard deviation on one particular enzyme family, the correspondent square is filled in red, representing an expansion of that enzyme family on that particular organism. Once the heatmap is finished, continue to the search of genes of the family that has been recruited onto natural product biosynthetic gene clusters, press the submit button.
HeatPlot

4.Natural Product recruitments table.

On this case, a table present for each family which natural products (NPs) are recruited an where this NPs where tested and deposited on MI-BiG. Select which enzyme family will be send to a phylogenetic reconstruction.
NP

5.Selected trees finished

Once the phylogenetic history of an expanded family has been done, after alignment and curated, if it is enough information the trees that were able to generated are shown. Select a tree and send it to the visualization interface. tress

6.Visualizing trees

6.1 Non expanded tree.

This is an example of a tree coming from a family that is non recruited.
Non expanded

6.2 Expanded tree

Expanded

ALL_curado.fasta_MiBIG_DB.faa_los10

2 Custom database

This part explains how to use databases diferent from default, for that purpose this sample data will be used. There is no need to download the data because they are already included at the EvoMining docker.

Input sample data contains:

File Description
los10 Directory with the genome database
Rast.los10perl Tab separated File with genome Names/Ids
mycent_los10 Central database file (fasta)
my_nat_los10 Natural products database
  • Open a terminal and place your self on a local directory.
    cd </path/to/mydirectory>

  • Start EvoMining docker image.
    $ docker run -i -t -v $(pwd):/var/www/html/EvoMining/exchange -p 80:80 nselem/newevomining:latest /bin/bash

At this time the local directory /path/to/mydirectory and docker directory /var/www/html/EvoMining/exchange are shared.

  • Move the sample data from the EvoMining docker into your local machine directory:
    cp -r /var/www/html/EvoMining/example/* /var/www/html/EvoMining/exchange/.

-Check that the data are correctly at your directory
ls /path/to/mydirectory

los10 mycent_los10 my_nat_los10 Rast.los10

  • Start EvoMining with non default databases
    perl startEvoMining.pl -g los10 -c mycent_los10 -n my_nat_los10 -r Rast.los10 This command starts EvoMining using as central-DB the file mycent_los10, as natural-DB my_nat_los10 and as genome DB the genomes contained on the directory los10. It also needs the Rast.los10 that containes for each genome its name and its corresponding RAST id.

  • EvoMining browser
    Open EvoMining web interface and follow the steps as on the prior example.

  • Results
    Results e.g. trees and alignments will be stored at /path/to/mydirectory on the directory:
    <central-DB>/<natural-DB>/<genome-DB> on this case this information correspondes to:
    mycent_los10_my_nat_los10_los10

Clone this wiki locally