~ubuntu-branches/ubuntu/vivid/bioperl/vivid

« back to all changes in this revision

Viewing changes to Bio/SearchIO/XML/BlastHandler.pm

  • Committer: Bazaar Package Importer
  • Author(s): Ilya Barygin
  • Date: 2010-01-27 22:48:22 UTC
  • mfrom: (3.1.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100127224822-ebot4qbrjxcv38au
Tags: 1.6.1-1ubuntu1
* Merge from Debian testing, remaining changes:
  - disable tests, they produce a FTBFS trying to access the network 
    during run.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# $Id: BlastHandler.pm 15052 2008-12-01 08:47:39Z heikki $
 
1
# $Id: BlastHandler.pm 16123 2009-09-17 12:57:27Z cjfields $
2
2
#
3
3
# BioPerl module for Bio::SearchIO::XML::BlastHandler
4
4
#
 
5
# Please direct questions and support issues to <bioperl-l@bioperl.org> 
 
6
#
5
7
# Cared for by Jason Stajich, Chris Fields
6
8
#
7
9
# Copyright Jason Stajich
46
48
  bioperl-l@bioperl.org                  - General discussion
47
49
  http://bioperl.org/wiki/Mailing_lists  - About the mailing lists
48
50
 
 
51
=head2 Support 
 
52
 
 
53
Please direct usage questions or support issues to the mailing list:
 
54
 
 
55
I<bioperl-l@bioperl.org>
 
56
 
 
57
rather than to the module maintainer directly. Many experienced and 
 
58
reponsive experts will be able look at the problem and quickly 
 
59
address it. Please include a thorough description of the problem 
 
60
with code and data examples if at all possible.
 
61
 
49
62
=head2 Reporting Bugs
50
63
 
51
64
Report bugs to the Bioperl bug tracking system to help us keep track
86
99
                'BlastOutput_version'   => 'RESULT-algorithm_version',
87
100
                'BlastOutput_db'        => 'RESULT-database_name',
88
101
                'BlastOutput_reference' => 'RESULT-program_reference',
89
 
                'Parameters_matrix'    => { 'RESULT-parameters' => 'matrix'},
90
 
                'Parameters_expect'    => { 'RESULT-parameters' => 'expect'},
91
 
                'Parameters_include'   => { 'RESULT-parameters' => 'include'},
92
 
                'Parameters_sc-match'  => { 'RESULT-parameters' => 'match'},
93
 
                'Parameters_sc-mismatch' => { 'RESULT-parameters' => 'mismatch'},
94
 
                'Parameters_gap-open'  => { 'RESULT-parameters' => 'gapopen'},
95
 
                'Parameters_gap-extend'=> { 'RESULT-parameters' => 'gapext'},
96
 
                'Parameters_filter'    => {'RESULT-parameters' => 'filter'},
97
 
                'Statistics_db-num'    => 'RESULT-database_entries',
98
 
                'Statistics_db-len'    => 'RESULT-database_letters',
99
 
                'Statistics_hsp-len'   => { 'RESULT-statistics' => 'hsplength'},
100
 
                'Statistics_eff-space' => { 'RESULT-statistics' => 'effectivespace'},
101
 
                'Statistics_kappa'     => { 'RESULT-statistics' => 'kappa' },
102
 
                'Statistics_lambda'    => { 'RESULT-statistics' => 'lambda' },
103
 
                'Statistics_entropy'   => { 'RESULT-statistics' => 'entropy'},
104
102
                'BlastOutput_query-def' => 'RESULT-query_description',
105
103
                'BlastOutput_query-len' => 'RESULT-query_length',
106
 
                'BlastOutput_query-ID'  => 'runid',
 
104
                'BlastOutput_query-ID'  => 'runid',                
 
105
                'Parameters_matrix'     => { 'RESULT-parameters' => 'matrix'},
 
106
                'Parameters_expect'     => { 'RESULT-parameters' => 'expect'},
 
107
                'Parameters_include'    => { 'RESULT-parameters' => 'include'},
 
108
                'Parameters_sc-match'   => { 'RESULT-parameters' => 'match'},
 
109
                'Parameters_sc-mismatch' => { 'RESULT-parameters' => 'mismatch'},
 
110
                'Parameters_gap-open'   => { 'RESULT-parameters' => 'gapopen'},
 
111
                'Parameters_gap-extend' => { 'RESULT-parameters' => 'gapext'},
 
112
                'Parameters_filter'     => {'RESULT-parameters' => 'filter'},
 
113
                'Statistics_db-num'     => 'RESULT-database_entries',
 
114
                'Statistics_db-len'     => 'RESULT-database_letters',
 
115
                'Statistics_hsp-len'    => { 'RESULT-statistics' => 'hsplength'},
 
116
                'Statistics_eff-space'  => { 'RESULT-statistics' => 'effectivespace'},
 
117
                'Statistics_kappa'      => { 'RESULT-statistics' => 'kappa' },
 
118
                'Statistics_lambda'     => { 'RESULT-statistics' => 'lambda' },
 
119
                'Statistics_entropy'    => { 'RESULT-statistics' => 'entropy'},
107
120
                
108
121
                # HSP specific fields
109
122
                'Hsp_bit-score'  => 'HSP-bits',