Annotate-a-genome: Difference between revisions
Jump to navigation
Jump to search
imported>Weigang |
imported>Weigang |
||
Line 118: | Line 118: | ||
==Predict orthologs with reciprocal BLAST== | ==Predict orthologs with reciprocal BLAST== | ||
* Commands: | * Commands: | ||
<syntaxhighlight lang="bash" line start=" | <syntaxhighlight lang="bash" line start="6" enclose="div"> | ||
makeblastdb -in | makeblastdb -in accession.pep -parse_seqids # Prepare the new genome DB | ||
blastp -query accession.pep -db ref.pep -outfmt 6 -evalue 1e-3 -out accession.fwd # Forward BLAST | |||
blastp -query | blastp -query ref.pep -db accession.pep -outfmt 6 -evalue 1e-3 -out accession.rev # Reverse BLAST | ||
blastp -query | ./check-reciprocal.pl <accession.fwd> <accession.rev> > accession.orthlogs 2> accession.not-orthologs # Identify orthologs | ||
./check-reciprocal.pl | |||
</syntaxhighlight> | </syntaxhighlight> | ||
Revision as of 03:51, 9 March 2014
Project Goals
- Annotate and add newly sequenced Borrelia genomes to BorreliaBase
- Build an informatics pipeline for gene prediction, ortholog calls, databasing, and synteny analysis
Download genome sequences from GenBank
Genome_id | Strain | Species | Group | Genome Sequences | Notes |
---|---|---|---|---|---|
100 | B31 | B. burgdorferi (reference genome) | Lyme Disease | Reference. Already downloaded as "ref.pep" | |
114 | CA382 | B. burgdorferi (California) | Lyme Disease |
| |
115 | CA8 | B. burgdorferi (California) | Lyme Disease |
| |
304 | BgVir | B. garinii (Russia) | Lyme Disease |
| |
305 | NMJW1 | B. garinii (China) | Lyme Disease |
| |
402 | HLJ01 | B. afzelii (China) | Lyme Disease |
| |
1003 | Ly | B. duttonii (Tanzania) | Relapsing Fever |
|
|
1001 | A1 | B. recurrentis (Ethiopia) | Relapsing Fever |
| |
1100 | DAH | B. hermsii (Washington State) | Relapsing Fever |
| |
1200 | 91E135 | B. turicatae (Texas) | Relapsing Fever |
| |
1002 | Achema | B. crocidurae (Mauritania) | Relapsing Fever |
|
|
1400 | HR1 | B. parkeri (??) | Relapsing Fever |
| |
1300 | LB-2001 | B. miyamotoi (Northeast US) | Relapsing Fever |
| |
107 | 94a | B. burgdorferi (Northeast US) | Lyme Disease |
|
Protocol
Dependencies
- BASH (default shell of Linux OS and Apple OS X)
- Perl and BioPerl
- DNATweezer
- NCBI Standalone BLAST+
Fetch genome sequences and extract protein sequences
- Commands:
# These scripts are in "../../bio425/annotate-a-genome-pipeline".
# You may either make a copy to your home directory (recommended) or run directly from that directory
./fetch-genome.pl <your_assigned_accession> # Expected output: "accession.gb"
./gb2fas.pl <accession.gb> # Expected output: "accession.pep"
Predict orthologs with reciprocal BLAST
- Commands:
makeblastdb -in accession.pep -parse_seqids # Prepare the new genome DB
blastp -query accession.pep -db ref.pep -outfmt 6 -evalue 1e-3 -out accession.fwd # Forward BLAST
blastp -query ref.pep -db accession.pep -outfmt 6 -evalue 1e-3 -out accession.rev # Reverse BLAST
./check-reciprocal.pl <accession.fwd> <accession.rev> > accession.orthlogs 2> accession.not-orthologs # Identify orthologs
Verify with synteny broswer
./gb2fas -t new.gb > new-to-orf-table.txt
# load into database with SQL
# Visualize synteny