Modification of the bioperl script for parsing BLAST output - PowerPoint PPT Presentation

1 / 6
About This Presentation
Title:

Modification of the bioperl script for parsing BLAST output

Description:

Download the perl script (new version) from the class web site ... Open the script with perl express or notepad (Windows users) or Text Wrangler (Mac users) ... – PowerPoint PPT presentation

Number of Views:110
Avg rating:3.0/5.0
Slides: 7
Provided by: xiaodo5
Category:

less

Transcript and Presenter's Notes

Title: Modification of the bioperl script for parsing BLAST output


1
Modification of the bioperl scriptfor parsing
BLAST output
2
Preparation
  • Download the perl script (new version) from the
    class web site
  • Only one top hit and top HSP are extracted. Why?
  • Flow of the code has been changed. Why?
  • Open the script with perl express or notepad
    (Windows users) or Text Wrangler (Mac users)

3
Criteria
  • E value
  • Fraction (the fraction of query sequences being
    aligned)
  • Similarity

4
E value
  • Position
  • E VALUE CRITERION GOES HERE!!!
  • code
  • next if (e gt 0.00001)

5
Fraction
  • Position
  • FRACTION CRITERION GOES HERE!!!
  • code
  • my frac (qend - qstart) / qlength
  • next if (frac lt 0.95)

6
Similarity
  • Position
  • SIMILARITY CRITERION GOES HERE!!!
  • code
  • next if (conserved lt 95)
Write a Comment
User Comments (0)
About PowerShow.com