This file is indexed.

/usr/share/perl5/Bio/Tools/Run/BWA/Config.pm is in libbio-perl-run-perl 1.6.9-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
# $Id$
#
# BioPerl module for Bio::Tools::Run::BWA::Config
#
# Please direct questions and support issues to <bioperl-l@bioperl.org>
#
# Cared for by Mark A. Jensen <maj@fortinbras.us>
#
# Copyright Mark A. Jensen
#
# You may distribute this module under the same terms as perl itself

# POD documentation - main docs before the code

=head1 NAME

Bio::Tools::Run::BWA::Config - Configuration data for BWA commands

=head1 SYNOPSIS

Used internally by L<Bio::Tools::Run::BWA>.

=head1 DESCRIPTION

This package exports information describing BWA commands, parameters,
switches, and input and output filetypes for individual BWA commands.
See L<http://bio-bwa.sourceforge.net/bwa.shtml>.

=head1 FEEDBACK

=head2 Mailing Lists

User feedback is an integral part of the evolution of this and other
Bioperl modules. Send your comments and suggestions preferably to
the Bioperl mailing list.  Your participation is much appreciated.

  bioperl-l@bioperl.org                  - General discussion
http://bioperl.org/wiki/Mailing_lists  - About the mailing lists

=head2 Support

Please direct usage questions or support issues to the mailing list:

L<bioperl-l@bioperl.org>

rather than to the module maintainer directly. Many experienced and
reponsive experts will be able look at the problem and quickly
address it. Please include a thorough description of the problem
with code and data examples if at all possible.

=head2 Reporting Bugs

Report bugs to the Bioperl bug tracking system to help us keep track
of the bugs and their resolution. Bug reports can be submitted via
the web:

  http://redmine.open-bio.org/projects/bioperl/

=head1 AUTHOR - Mark A. Jensen

Email maj@fortinbras.us

Describe contact details here

=head1 CONTRIBUTORS

Additional contributors names and emails here

=head1 APPENDIX

The rest of the documentation details each of the object methods.
Internal methods are usually preceded with a _

=cut

# Let the code begin...

package Bio::Tools::Run::BWA::Config;
use strict;
use warnings;
no warnings qw(qw);
use Bio::Root::Root;
use Exporter;
use base qw(Bio::Root::Root );

our (@ISA, @EXPORT, @EXPORT_OK);
push @ISA, 'Exporter';
@EXPORT = qw(
             @program_commands
             %command_prefixes
             %composite_commands
             @program_params
             @program_switches
             %param_translation
             %command_files
            );

@EXPORT_OK = qw();

our @program_commands = qw(
    run
    index
    aln
    samse
    sampe
    dbwtsw
);

# composite commands: pseudo-commands that run a 
# sequence of commands
# composite command prefix => list of prefixes of commands this
#  composite command runs
#

our %composite_commands = (
    'run'        => [qw( map asm c2q )]
    );

# prefixes only for commands that take params/switches...
our %command_prefixes = (
    'aln'        => 'aln',
    'dbwtsw'     => 'bwt',
    'index'      => 'idx',
    'samse'      => 'sms',
    'sampe'      => 'smp',
    'run'        => 'run'
    );

our @program_params = qw(
    command
    idx|output_prefix
    idx|algorithm
    aln|max_edit_dist
    aln|max_gap_opens
    aln|max_gap_extns
    aln|deln_protect_3p
    aln|deln_protect_ends
    aln|subseq_seed
    aln|max_edit_dist_seed
    aln|n_threads
    aln|mm_penalty
    aln|gap_open_penalty
    aln|gap_extn_penalty
    aln|subopt_hit_threshold
    aln|trim_parameter
    sms|hit_limit
    smp|max_insert_size
    smp|max_read_occur
    bwt|match_score
    bwt|mm_penalty
    bwt|gap_open_penalty
    bwt|gap_extn_penalty
    bwt|n_threads
    bwt|band_width
    bwt|rel_min_score_threshold
    bwt|threshold_adj_coeff
    bwt|z_best
    bwt|max_sa_interval
    bwt|min_seeds_to_skip

    );

our @program_switches = qw(
    idx|color_space_idx
    aln|reverse_no_comp
    aln|no_iter_search
);

our %param_translation = (
    'idx|output_prefix' => 'p',
    'idx|algorithm' => 'a',
    'aln|max_edit_dist' => 'n',
    'aln|max_gap_opens' => 'o',
    'aln|max_gap_extns' => 'e',
    'aln|deln_protect_3p' => 'd',
    'aln|deln_protect_ends' => 'i',
    'aln|subseq_seed' => 'l',
    'aln|max_edit_dist_seed' => 'k',
    'aln|n_threads' => 't',
    'aln|mm_penalty' => 'M',
    'aln|gap_open_penalty' => 'O',
    'aln|gap_extn_penalty' => 'E',
    'aln|subopt_hit_threshold' => 'R',
    'aln|trim_parameter' => 'q',
    'sms|hit_limit' => 'n',
    'smp|max_insert_size' => 'a',
    'smp|max_read_occur' => 'o',
    'bwt|match_score' => 'a',
    'bwt|mm_penalty' => 'b',
    'bwt|gap_open_penalty' => 'q',
    'bwt|gap_extn_penalty' => 'r',
    'bwt|n_threads' => 't',
    'bwt|band_width' => 'w',
    'bwt|rel_min_score_threshold' => 'T',
    'bwt|threshold_adj_coeff' => 'c',
    'bwt|z_best' => 'z',
    'bwt|max_sa_interval' => 's',
    'bwt|min_seeds_to_skip' => 'N'
    );

#
# the order in the arrayrefs is the order required
# on the command line
#
# the strings in the arrayrefs (less special chars)
# become the keys for named parameters to run_maq
# 
# special chars:
#
# '#' implies optional
# '*' implies variable number of this type
# <|> implies stdin/stdout redirect
#

our %command_files = (
    'run'        => [qw( faq fas faq )],
    'index'       => [qw( fas )],     
    'aln'         => [qw( fas faq >sai )],     
    'samse'       => [qw( fas sai faq >sam )],     
    'sampe'       => [qw( fas sai1 sai2 faq1 faq2 >sam )],     
    'dbwtsw'      => [qw( fas faq )]
    );

INIT {
    # add subcommand params and switches for
    # composite commands
    my @sub_params;
    my @sub_switches;
    foreach my $cmd (keys %composite_commands) {
	foreach my $subcmd ( @{$composite_commands{$cmd}} ) {
	    my @sub_program_params = grep /^$subcmd\|/, @program_params;
	    my @sub_program_switches = grep /^$subcmd\|/, @program_switches;
	    for (@sub_program_params) {
		m/^$subcmd\|(.*)/;
		push @sub_params, "$cmd\|${subcmd}_".$1;
	    }
	    for (@sub_program_switches) {
		m/^$subcmd\|(.*)/;
		push @sub_switches, "$cmd\|${subcmd}_".$1;
	    }
	}
    }
    push @program_params, @sub_params;
    push @program_switches, @sub_switches;
    # translations for subcmd params/switches not necessary
}
1;