Pseudomonas population genomics: Difference between revisions
Jump to navigation
Jump to search
imported>Rayrah |
imported>Rayrah |
||
Line 13: | Line 13: | ||
## Run PAML tests | ## Run PAML tests | ||
==Update: June 28, 2013== | |||
Phylogenetic Analysis by Maximum Likelihood (PAML) Test performed on FleN, FleQ, FlhF orthologs and aeruginosa homologs | |||
{| class="wikitable" | |||
! Gene !! PAML outfile for orthologs !! PAML outfile for aeruginosa homologs | |||
|- | |||
| fleN || [[fleN PAML]] ||[[fleN PAML2]] | |||
|- | |||
| fleQ || [[fleQ PAML]] ||[[fleq PAML2]] | |||
|- | |||
| flhf ||[[flhF PAML]]||[[flhf PAML2]] | |||
|- | |||
|} | |||
To do: | |||
# Estimate genome tree using MrBayes and BEST (http://www.stat.osu.edu/~dkp/BEST/introduction/). | |||
# Analysis of positively selected genes using PAML and homozygosity analysis | |||
==Update: June 18, 2013== | ==Update: June 18, 2013== | ||
Ortholog aligning and phylogenetic tree material and methods | Ortholog aligning and phylogenetic tree material and methods | ||
Protein ortholog data: [http://pseudomonas.com/alignPolymorphicGeneSequencesStep1.do?feature_id_parent=105676&start=1583956&stop=1584798&replicon_id_reference=136&alphabet=protein&limit_to_species=false fleN], [http://pseudomonas.com/alignPolymorphicGeneSequencesStep1.do?feature_id_parent=104960&start=1187587&stop=1189059&replicon_id_reference=136&alphabet=protein&limit_to_species=false fleQ], [http://pseudomonas.com/alignPolymorphicGeneSequencesStep1.do?feature_id_parent=105674&start=1582528&stop=1583817&replicon_id_reference=136&alphabet=protein&limit_to_species=false flhF] | |||
# Protocol: | # Protocol: | ||
## Fasta headers are too long for tree, run: [https://www.dropbox.com/s/x2p4joeqg7omfub/rename.pl rename.pl] to shorten names. Usage:<code> >rename.pl <FASTA_file> > <OUTPUTfilename.fas> </code> (will rewrite script to create automatic output file) | ## Fasta headers are too long for tree, run: [https://www.dropbox.com/s/x2p4joeqg7omfub/rename.pl rename.pl] to shorten names. Usage:<code> >rename.pl <FASTA_file> > <OUTPUTfilename.fas> </code> (will rewrite script to create automatic output file) |
Revision as of 17:00, 28 June 2013
Projects
- Build a local genome database
- Database schema:
- "genome": genome_id, strain_name, ncbi_taxid
- "orf": genome_id, locus_tag, start, stop, strand, genome_name, product_name
- "orth_orf": orth_orf_id, locus_name, genome_id, orth_class
- Parsing scripts
- Rayees Parsing code, requires that you remove columns 9-27 using bash command:
cut -c 1-8
(I will write a bash script that does this and runs the program) https://www.dropbox.com/s/lpxxbkxeyw7frrn/parser.pl
- Rayees Parsing code, requires that you remove columns 9-27 using bash command:
- Database loading scripts
- Database schema:
- Molecular Evolution of flagellum genes
- Download orthologs
- Reconstruct phylogenetic tree
- Run PAML tests
Update: June 28, 2013
Phylogenetic Analysis by Maximum Likelihood (PAML) Test performed on FleN, FleQ, FlhF orthologs and aeruginosa homologs
Gene | PAML outfile for orthologs | PAML outfile for aeruginosa homologs |
---|---|---|
fleN | fleN PAML | fleN PAML2 |
fleQ | fleQ PAML | fleq PAML2 |
flhf | flhF PAML | flhf PAML2 |
To do:
- Estimate genome tree using MrBayes and BEST (http://www.stat.osu.edu/~dkp/BEST/introduction/).
- Analysis of positively selected genes using PAML and homozygosity analysis
Update: June 18, 2013
Ortholog aligning and phylogenetic tree material and methods
Protein ortholog data: fleN, fleQ, flhF
- Protocol:
- Fasta headers are too long for tree, run: rename.pl to shorten names. Usage:
>rename.pl <FASTA_file> > <OUTPUTfilename.fas>
(will rewrite script to create automatic output file) - To align use muscle Usage:
>muscle -in <FASTA_File> -out <OUTPUTfilename> -clwstrict
- To create tree file run clustalW2 Usage
>clustalw2 -infile= <Aligned_file> -output= Phylip
- To create tree run R using following commands:
setwd("<directory containing phylip files>")
library ("ape")
library ("phangorn")
<gene_name> = read.tree("<file_gene_name.phy>")
<gene_name> = midpoint(gene_name)
plot(<gene_name>)
- Fasta headers are too long for tree, run: rename.pl to shorten names. Usage:
Gene | Alignment | Tree | Notes |
---|---|---|---|
fleN | fleN pep alignment | Conserved Domain | |
fleQ | fleQ pep alignment | Conserved Domain | |
flhf | flhF pep alignment | Conserved Domain |
Benchmark: June 11, 2013
- Finish parsing the genome files to upload the "orf" table (Raymond & Rayees)
- Rayees Parsed genome files: https://www.dropbox.com/sh/k0zktvvmv39op9i/1zBercEky8
- Parsing the ortholog file to upload the "orth_orf" table (Raymond)
- Identify and download fleN, fleQ, and flhF orthologs & align them (Rayees)