/usr/bin/bp_hivq is in bioperl 1.6.901-2.
This file is owned by root:root, with mode 0o755.
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 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 | #!/usr/bin/perl
eval 'exec /usr/bin/perl -S $0 ${1+"$@"}'
if 0; # not running under some shell
#$Id: hivq.PL 362 2009-01-23 22:45:51Z maj $#
# command-line script for HIV sequence queries
# using HIV.pm and HIVQuery.pm
=head1 NAME
hivq.PL - an interactive command-line interface to L<Bio::DB::HIV> and L<Bio::DB::Query::HIVQuery>
=head1 SYNOPSIS
$ perl hivq.PL
hivq> query C[subtype] SI[phenotype]
hivq> prerun
80 sequences returned
Query: C[subtype] SI[phenotype]
hivq> outfile csi.fas
hivq> run
Download complete.
hivq> outfile dsi.fas
hivq> run D[subtype] SI[phenotype]
Download complete.
hivq> count
25 sequences returned
Query: D[subtype] SI[phenotype]
hivq> exit
$
=head1 DESCRIPTION
The BioPerl modules L<Bio::DB::HIV> and L<Bio::DB::Query::HIVQuery>
together allow batch queries against the Los Alamos National
Laboratories' HIV Sequence Database using a simple query
language. C<hivq.PL> provides both an example of the use of these
modules, and a standalone interactive command-line interface to the
LANL HIV DB. Simple commands allow the user to retrieve HIV sequences
and annotations using the query language implemented in
L<Bio::DB::Query::HIVQuery>. Visit the man pages for those modules for
more details.
=head1 USAGE
Run the script using C<perl hivq.PL> or, in Unix, C<./hivq.PL>. You will see
the
hivq>
prompt. Type commands with queries to retrieve sequence and annotation
data. See the SYNOPSIS for a sample session. Available commands
are described below.
=head2 TIPS
The LANL database is pretty complex and extensive. Use the C<find> facility to
explore the available database tables and fields. To identify aliases for a particular field, use C<find alias [fieldname]>. For example, to find a short alias to the
weirdly named field C<seq_sample.ssam_second_receptor>, do
hivq> find alias seq_sample.ssam_second_receptor
which returns
coreceptor second_receptor
Now, instead of the following query
hivq> run C[subtype] CCR5[seq_sample.ssam_second_receptor]
you know you can do
hivq> run C[subtype] CCR5[coreceptor]
Use the C<outfile> command to set the file that receives the retrieved
sequences. You can change the current output file simply by issuing a
new C<outfile> command during the session. The output file defaults to
standard output.
Use the C<query> command to validate a query without hitting the
database. Use the C<prerun> or C<count> commands to get a count of
sequence hits for a query without retrieving the data. Use C<run> or
C<do> to perform a complete query, retrieving sequence data into the
currently set output files.
To process C<hivq.PL> commands in batch, create a text file
(C<hivq.cmd>, for example) containing desired commands one per
line. Then execute the following from the shell:
$ cat hivq.cmd | perl hivq.PL
=head1 COMMANDS
Here is a complete list of commands. Options in single brackets (C<[req_option]>) are
required; options in double brackets (C<[[opt_option]]>) are optional.
confirm : Toggle interactive confirmation before
executing queries
exit : Quit script
find : Explore database schema
find tables Display all database tables
find fields Display all database fields (columns)
find fields [table] Display all fields in [table]
find alias [field] Display valid aliases for [field]
help [[command]] : Show command help
if [[command]] not specified, list all
available commands
id : Display current session id
outfile [filename] : Set file for collecting retrieved data
ping : Check if LANL DB is available
prerun [[query]] : Execute query but retreive hit count only
if [[query]] not specified, use current query
query [query] : Validate and set current query
run [[query]] : Execute query and retrieve data
if [[query]] not specified, use current query
state : Display current state of the script
bye : Alias for 'exit'
config : Alias for 'state'
count : Alias for 'prerun'
do : Alias for 'run'
out : Alias for 'outfile'
quit : Alias for 'exit'
=head1 OPTIONS
-v : verbose; turns on the internal debug() function
=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 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:
https://redmine.open-bio.org/projects/bioperl/
=head1 AUTHOR - Mark A. Jensen
Mark A. Jensen E<lt>maj@fortinbras.usE<gt>
=cut
$|=1;
use strict;
use Term::ReadLine;
use Bio::DB::HIV;
use Bio::DB::Query::HIVQuery;
use Bio::SeqIO;
use Error qw(:try);
use Getopt::Std;
our ($opt_v);
getopts('v');
my $db = new Bio::DB::HIV;
my $q = new Bio::DB::Query::HIVQuery();
my $schema = $q->_schema;
my $seqio;
my @cmds = qw(
bye
config
confirm
count
do
exit
find
help
id
out
outfile
ping
prerun
query
quit
run
state
);
my %state = (
'confirm' => 0,
'outfile' => {'text'=>'[stdout]','handle'=>\*STDOUT},
'query' => '',
'session_id' => '',
'timeout' => '',
'curct' => 0
);
my %help = (
'bye' => 'bye: End script',
'config' => 'config: Print current configuration state of hivq',
'confirm' => 'confirm: Toggle user confirmation of query execution',
'count' => 'count [[query string]]: Get number of sequences available for query',
'do' => 'do [[query string]]: Run query to completion',
'exit' => 'exit: End script',
'find' => join("\n","find tables: Print all LANL table names",
"find fields: Print all field names",
"find fields [tablename]: Print all fields in specified table",
"find aliases [fieldname]: Print all valid aliases for specified field",
"find options [fieldname/alias]: Print valid match options for specified field"),
'help' => 'help [[command]]: Get description of command',
'id' => 'id: Print current session id',
'out' => 'out [output filename]: Set filename to hold returned sequences',
'outfile' => 'outfile [output filename]: Set filename to hold returned sequences',
'ping' => 'ping: Ping LANL database',
'prerun' => 'prerun [[query string]]: Get number of sequences available',
'query' => 'query [[query string]]: Validate and set current query string',
'quit' => 'quit: End script',
'run' => 'run [[query string]]: Run query to completion',
'state' => 'state: Print current configuration state of hivq',
);
my $done = 0;
debug("We have arrived.");
#### main loop
my ($cmd, @tok);
my $prompt = "hivq> ";
my $term = new Term::ReadLine 'hivq';
CMD:
while ( !$done ) {
@tok=();$cmd='';
for ( $cmd = $term->readline($prompt) ) {
chomp;
s/^\s+//; #trim whsp
$term->addhistory($_);
@tok = split(/\s+/);
$tok[0] = lc $tok[0]; # normalize
for ($tok[0]) {
(!$_ || /^\#/) && do {
next CMD;
};
!(grep(/^$tok[0]$/, @cmds)) && do {
error("Unrecognized command \'$tok[0]\'");
next CMD;
};
(m/^quit$/ || m/^bye$/ || m/^exit$/) && do {
my $fh = $state{outfile}->{handle};
unless ($fh == \*STDOUT) {
close $fh;
}
$done=1;
next CMD;
};
m/^confirm$/ && do {
$state{confirm} = !$state{confirm};
print "User confirmation before running query: ". ($state{confirm} ? "yes" : "no")."\n";
next CMD;
};
(m/^outfile$/ || m/^out$/) && do {
unless ($tok[1]) {
error('Output filename not specified');
next CMD;
}
my $fh;
eval {
open $fh, ">$tok[1]" or die $!;
};
if ($@) {
error($@);
}
else {
my $oldfh = $state{outfile}->{handle};
if ($state{outfile}->{text} ne '[stdout]') {
close($oldfh);
}
$state{outfile}->{handle} = $fh;
$state{outfile}->{text} = $tok[1];
}
next CMD;
};
m/^query$/ && do {
my $query = join(' ', @tok[1..$#tok]);
if ($query) {
$q->_reset;
$q->query($query);
}
else {
if ($state{query}) {
print "Current query: $state{query}\n";
}
else {
print "No query set\n";
}
next CMD;
}
try { #catch errors
$q->_do_query(0);
}
catch Error with {
my $E = shift;
error($E->text);
next CMD;
};
$state{session_id} = $q->_session_id;
$state{query} = $query;
next CMD;
};
(m/^prerun$/ || m/^count$/) && do {
my $query = join(' ', @tok[1..$#tok]);
if (!$query) {
if (!$q->query()) {
error('No query currently set');
next CMD;
}
elsif ($q->{'_RUN_LEVEL'} >= 1 &&
($q->query() eq $state{query})) {
outputPrerun();
next CMD;
}
# else, fallthrough to prerun current query
}
else { # new query
$q->_reset;
$q->query($query);
try {
$q->_do_query(0);
}
catch Error with {
my $E = shift;
error($E->text);
next CMD;
};
}
# on success:
$state{confirm} && do { next CMD unless getConfirm(); };
$state{session_id} = $q->_session_id;
$state{query} = $query;
try {
$q->_do_query(1);
}
catch Error with {
my $E = shift;
error($E->text);
next CMD;
};
# on success:
$state{curct} = $q->count;
$state{query} = $q->query;
outputPrerun();
next CMD;
};
(m/^run$/ || m/^do$/) && do {
my $query = join(' ', @tok[1..$#tok]);
if (!$query) {
unless (defined $q->{'_RUN_LEVEL'} && $q->{'_RUN_LEVEL'} < 2) {
error('No query currently set');
next CMD;
}
}
else { # new query
$q->_reset;
$q->query($query);
try {
$q->_do_query(0);
}
catch Error with {
my $E = shift;
error($E->text);
next CMD;
};
$state{query} = $query;
$state{curct} = 0;
$state{session_id} = $q->_session_id;
}
# on success:
$state{confirm} && do { next CMD unless getConfirm(); };
try {
$q->_do_query(2);
$seqio = $db->get_Stream_by_query($q);
}
catch Error with {
my $E = shift;
error($E->text);
next CMD;
};
# on success:
$state{curct} = $q->count;
# output the seqs
if ($q->count) {
outputSeqs($seqio);
}
else {
error('No sequences returned');
}
next CMD;
};
m/^find$/ && do {
outputFind(@tok);
next CMD;
};
m/^help$/ && do {
unless ($tok[1]) {
outputUsage();
next CMD;
}
if (grep(/$tok[1]/, @cmds)) {
print $help{$tok[1]}, "\n";
}
else {
error("Command \'$tok[1]\' unrecognized\n");
}
next CMD;
};
(m/^state$/ || m/^config$/) && do {
foreach my $k (sort keys %state) {
if (ref($state{$k}) eq 'HASH') {
print "$k: ".$state{$k}->{text}."\n";
}
else {
print "$k: ";
if ($k eq 'confirm') {
print $state{$k} ? "yes" : "no";
print "\n";
}
else {
print "$state{$k}\n";
}
}
}
next CMD;
};
do {
error("Command currently unimplemented\n");
next CMD;
};
}
}
}
### end main
sub error {
my $msg = shift;
if ($msg =~ /MSG:/) {
($msg) = grep (/^MSG:/, split(/\n|\r/,$msg));
$msg =~ s/^MSG: *//;
$msg =~ s/\sat\s.*$//;
}
print STDERR "hivq: $msg\n";
return 1;
}
sub outputPrerun {
print (($state{curct} ? $state{curct} : "No")
. " sequence"
. ($state{curct}>1 ? "s" : "")
. " returned\n");
print "Query: ".$state{query}."\n";
return 1;
}
sub outputSeqs {
my ($seqio) = @_;
my @ret;
while (my $seq = $seqio->next_seq) {
my $nameline = ">";
$nameline .= $seq->annotation->get_value('Special', 'accession').
'('.$seq->id.') ';
# loop through categories:
foreach my $cat ($seq->annotation->get_keys()) {
foreach my $an ($seq->annotation->get_keys($cat)) {
next if ($an eq 'accession');
my $value = $seq->annotation->get_value($cat, $an);
# next line: kludge to skip if there's an annotation
# object instead of a value (I believe this is a bug)
next if ref($value);
$nameline .= "\t".join('=', "'$an'", "'".$value."'");
}
}
push @ret, $nameline."\n";
push @ret, $seq->seq()."\n";
}
doOutputSeqs(@ret);
}
sub doOutputSeqs {
my @lines = @_;
if (!@lines) {
error("No sequences to output");
}
my $fh = $state{outfile}->{handle};
print $fh @lines;
print "Download complete\n";
return 1;
}
sub getConfirm {
print "Run query? [y/n]";
my $ans = <STDIN>;
($ans =~ /^[yY]/) && do {return 1;};
return 0;
}
sub outputUsage {
print "Available commands:\n";
outputInColumns(\@cmds);
return 1;
}
sub outputFind {
my @tok = @_;
for my $arg ($tok[1]) {
!$arg && do {
print $help{find},"\n";
return;
};
($arg =~ m/^tables$/) && do {
outputInColumns([$schema->tables]);
return;
};
($arg =~ m/^fields$/) && do {
my $tbl = $tok[2];
if (!$tbl) {
outputInColumns([$schema->fields]);
}
else {
unless (grep /^$tbl$/, $schema->tables) {
error("Table \'$tbl\' not valid");
return;
}
outputInColumns([grep /^$tbl/, $schema->fields()]);
}
return;
};
($arg =~ /^options$/) && do {
my $fld = $tok[2];
my @aliases = $schema->aliases($fld);
if (!@aliases) {
unless (grep /^$fld$/, $schema->aliases) {
error("Field \'$tok[2]\' not valid");
return;
}
foreach ($schema->fields) {
if ( grep /$fld/, $schema->aliases($_) ) {
$fld = $_;
last;
}
}
# on success: $fld is set to valid field
}
my @options = sort {$a cmp $b} $schema->options($fld);
@options = (@options ? @options : ('Free text'));
outputInColumns(\@options);
return;
};
do {
($arg =~ /^alias/) && ($arg = $tok[2]);
if (grep /$arg/, $schema->fields) {
my @aliases = sort $schema->aliases($arg);
if (@aliases) {
outputInColumns(\@aliases);
}
else {
error("No aliases to field \'$arg\'");
}
}
else {
error("Field \'$arg\' not valid");
}
return;
};
}
}
sub outputInColumns {
my ($items, $n, $w) = @_;
my $i = 0;
my @items = @$items;
my $maxl = length([sort {length($b)<=>length($a)} @items]->[0]);
$n ||= int(60/($maxl+3)) || 1;
$w ||= $maxl+3;
my $coll = int(@items/$n);
$coll == @items/$n ? $coll : ++$coll;
my @t;
for my $j (0..$n-1) {
if ($j<$n-1) {
$t[$j] = [@items[$j*$coll..$j*$coll+$coll-1]];
}
else {
$t[$j] = [@items[$j*$coll..$#items]];
}
}
@items = map { my $j = $_; map { $t[$_]->[$j] || () } (0..$#t) } (0..scalar(@{$t[0]})-1);
foreach (@items) {
$_ .= (' ' x ($w-length($_)));
}
while ($i < @items) {
print join('', map { $_ || () } @items[$i..$i+$n-1] ),"\n";
$i+=$n;
}
return 1;
}
sub debug {
print STDERR shift()."\n" if $opt_v;
return;
}
|