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 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695
|
#!/usr/bin/perl
################################################################
# copyright (c) 2014, 2015 by William R. Pearson and The Rector &
# Visitors of the University of Virginia */
################################################################
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under this License is distributed on an "AS
# IS" BASIS, WITHOUT WRRANTIES OR CONDITIONS OF ANY KIND, either
# express or implied. See the License for the specific language
# governing permissions and limitations under the License.
################################################################
## updated 8-Nov-2022 to use pfam-legacy.xfam.org, since pfam has been discontinued
# ann_pfam_www.pl gets an annotation file from fasta36 -V with a line of the form:
# gi|62822551|sp|P00502|GSTA1_RAT Glutathione S-transfer\n (at least from pir1.lseg)
#
# it must:
# (1) read in the line
# (2) parse it to get the up_acc
# (3) return the tab delimited features
#
# This version uses the Pfam RESTful interface, rather than a local database
# >pf26|164|O57809|1A1D_PYRHO
# and only provides domain information
use warnings;
# use strict;
use Getopt::Long;
use Pod::Usage;
use LWP::Simple;
use XML::Twig;
# use Data::Dumper;
my ($auto_reg,$rpd2_fams, $neg_doms, $vdoms, $lav, $no_clans, $pf_acc_flag, $shelp, $help, $no_over, $acc_comment, $bound_comment, $pfamB) =
(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
my ($show_color) = (1);
my ($min_nodom, $min_vdom) = (10, 10);
my $color_sep_str = " :";
$color_sep_str = '~';
GetOptions(
"lav" => \$lav,
"acc_comment" => \$acc_comment,
"bound_comment" => \$bound_comment,
"min_nodom=i" => \$min_nodom,
"neg" => \$neg_doms,
"neg_doms" => \$neg_doms,
"neg-doms" => \$neg_doms,
"no-over" => \$no_over,
"no_over" => \$no_over,
"no-clans" => \$no_clans,
"no_clans" => \$no_clans,
"color!" => \$show_color,
"pfamB" => \$pfamB,
"vdoms" => \$vdoms,
"v_doms" => \$vdoms,
"pfacc" => \$pf_acc_flag,
"pfam_acc" => \$pf_acc_flag,
"acc" => \$pf_acc_flag,
"h|?" => \$shelp,
"help" => \$help,
);
pod2usage(1) if $shelp;
pod2usage(exitstatus => 0, verbose => 2) if $help;
pod2usage(1) unless (@ARGV || -p STDIN || -f STDIN);
my %annot_types = ();
my %domains = (NODOM=>0);
my %domain_clan = (NODOM => {clan_id => 'NODOM', clan_acc=>0, domain_cnt=>0});
my @domain_list = (0);
my $domain_cnt = 0;
my $loc="https://pfam-legacy.xfam.org/";
my $url;
my @pf_domains;
my %pfamA_fams = ();
my ($pf_seq_length, $pf_model_length)=(0,0);
my ($clan_acc, $clan_id) = ("","");
my $get_annot_sub = \&get_pfam_www;
my ($tmp, $gi, $sdb, $acc, $id, $use_acc);
# get the query
my ($query, $seq_len) = @ARGV;
$seq_len = 0 unless defined($seq_len);
$query =~ s/^>// if ($query);
my @annots = ();
#if it's a file I can open, read and parse it
# unless ($query && ($query =~ m/[\|:]/ ||
# $query =~ m/^[OPQ][0-9][A-Z0-9]{3}[0-9]|[A-NR-Z][0-9]([A-Z][A-Z0-9]{2}[0-9]){1,2}\s/)) {
if (! $query || -r $query) {
while (my $a_line = <>) {
$a_line =~ s/^>//;
chomp $a_line;
push @annots, show_annots($a_line, $get_annot_sub);
}
}
else {
push @annots, show_annots("$query\t$seq_len", $get_annot_sub);
}
for my $seq_annot (@annots) {
print ">",$seq_annot->{seq_info},"\n";
for my $annot (@{$seq_annot->{list}}) {
if (!$lav && defined($domains{$annot->[-1]})) {
my ($a_name, $a_num) = domain_num($annot->[-1],$domains{$annot->[-1]});
$annot->[-1] = $a_name;
my $tmp_a_num = $a_num;
$tmp_a_num =~ s/v$//;
if ($acc_comment) {
$annot->[-1] .= "{$domain_list[$tmp_a_num]}";
}
if ($bound_comment) {
$annot->[-1] .= $color_sep_str.$annot->[0].":".$annot->[2];
}
elsif ($show_color) {
$annot->[-1] .= $color_sep_str.$a_num;
}
}
print join("\t",@$annot),"\n";
}
}
exit(0);
sub show_annots {
my ($query_len, $get_annot_sub) = @_;
my ($annot_line, $seq_len) = split(/\t/,$query_len);
my $pfamA_acc;
my %annot_data = (seq_info=>$annot_line);
$use_acc = 1;
if ($annot_line =~ m/^pf26\|/) {
($sdb, $gi, $acc, $id) = split(/\|/,$annot_line);
}
elsif ($annot_line =~ m/^gi\|/) {
($tmp, $gi, $sdb, $acc, $id) = split(/\|/,$annot_line);
}
elsif ($annot_line =~ m/^(sp|tr|up)\|/) {
($sdb, $acc, $id) = split(/\|/,$annot_line);
$use_acc = 1;
}
elsif ($annot_line =~ m/^(SP|TR):(\w+) (\w+)/) {
($sdb, $id, $acc) = (lc($1), $2, $3);
$use_acc = 1;
}
elsif ($annot_line =~ m/^(SP|TR):(\w+)/) {
($sdb, $id, $acc) = (lc($1), $2, "");
$use_acc = 0;
}
elsif ($annot_line !~ m/\|/ && $annot_line !~ m/:/) {
$use_acc = 1;
($acc) = split(/\s+/,$annot_line);
}
# remove version number
unless ($use_acc) {
$annot_data{list} = get_pfam_www($id, $seq_len);
}
else {
$acc =~ s/\.\d+$//;
$annot_data{list} = get_pfam_www($acc, $seq_len);
}
return \%annot_data;
}
sub get_length {
my ($t, $elt) = @_;
$pf_seq_length = $elt->{att}->{length};
}
sub push_match {
my ($t, $elt) = @_;
# return unless ($elt->{att}->{type} =~ m/Pfam-A/);
my $attr_ref = $elt->{att};
my $loc_ref = $elt->first_child('location')->{att};
push @pf_domains, { %$attr_ref, %$loc_ref };
}
sub get_model_length {
my ($t, $elt) = @_;
$pf_model_length = $elt->{att}->{model_length};
}
sub get_clan {
my ($t, $elt) = @_;
my $attr_ref = $elt->{att};
# print Dumper($attr_ref);
($clan_acc, $clan_id) = ($attr_ref->{clan_acc},$attr_ref->{clan_id});
}
sub get_pfam_www {
my ($acc, $seq_length) = @_;
# if ($acc =~ m/_/) {$url = "protein?id=$acc&output=xml"; }
# else {$url = "protein/$acc?output=xml"; }
$url = "protein/$acc?output=xml";
my $res = get($loc . $url);
@pf_domains = ();
if (! $res) {
return \@pf_domains;
}
my $twig_dom = XML::Twig->new(twig_roots => {matches => 1, sequence => 1},
# start_tag_handlers => {
# 'sequence' => \&get_length,
# },
twig_handlers => {
'match' => \&push_match,
'sequence' => \&get_length,
},
pretty_print => 'indented');
my $xml = $twig_dom->parse($res);
if (!$seq_length || $seq_length == 0) {
$seq_length = $pf_seq_length;
}
@pf_domains = sort { $a->{start} <=> $b->{start} } @pf_domains;
unless ($pfamB) {
@pf_domains = grep { $_->{type} !~ m/Pfam-B/ } @pf_domains;
}
# for virtual domains, also need information about the families
for my $curr_dom (@pf_domains) {
my $acc = $curr_dom->{accession};
$url = "family/$acc?output=xml";
my $res = get($loc . $url);
my $twig_fam = XML::Twig->new(twig_roots => {hmm_details => 1, clan_membership=> 1},
twig_handlers => {
'hmm_details' => \&get_model_length,
'clan_membership' => \&get_clan,
},
pretty_print => 'indented');
($clan_acc, $clan_id) = ("","");
my $fam_xml = $twig_fam->parse($res);
$pfamA_fams{$acc} = { model_length => $pf_model_length, clan_acc=>$clan_acc, clan_id=>$clan_id};
$curr_dom->{model_length} = $pf_model_length;
}
# check for domain overlap, and resolve check for domain overlap
# (possibly more than 2 domains), choosing the domain with the best
# evalue
my @raw_pf_domains = @pf_domains;
@pf_domains = ();
for my $dom_ref (@raw_pf_domains) {
if ($pf_acc_flag) {
$dom_ref->{info} = $dom_ref->{accession};
}
else {
$dom_ref->{info} = $dom_ref->{id};
}
next if ($dom_ref->{start} >= $seq_length);
if ($dom_ref->{end} >= $seq_length) {
$dom_ref->{end} = $seq_length;
}
push @pf_domains, $dom_ref;
}
if($no_over && scalar(@pf_domains) > 1) {
my @tmp_domains = @pf_domains;
my @save_domains = ();
my $prev_dom = shift @tmp_domains;
while (my $curr_dom = shift @tmp_domains) {
my @overlap_domains = ($prev_dom);
my $diff = $prev_dom->{end} - $curr_dom->{start};
# check for overlap > domain_length/3
my ($prev_len, $cur_len) = ($prev_dom->{end}-$prev_dom->{start}+1, $curr_dom->{end}-$curr_dom->{start}+1);
my $inclusion = ((($curr_dom->{start} >= $prev_dom->{start}) && ($curr_dom->{end} <= $prev_dom->{end})) ||
(($curr_dom->{start} <= $prev_dom->{start}) && ($curr_dom->{end} >= $prev_dom->{end})));
my $longer_len = ($prev_len > $cur_len) ? $prev_len : $cur_len;
while ($inclusion || ($diff > 0 && $diff > $longer_len/3)) {
push @overlap_domains, $curr_dom;
$curr_dom = shift @tmp_domains;
last unless $curr_dom;
$diff = $prev_dom->{end} - $curr_dom->{start};
($prev_len, $cur_len) = ($prev_dom->{end}-$prev_dom->{start}+1, $curr_dom->{end}-$curr_dom->{start}+1);
$longer_len = ($prev_len > $cur_len) ? $prev_len : $cur_len;
$inclusion = ((($curr_dom->{start} >= $prev_dom->{start}) && ($curr_dom->{end} <= $prev_dom->{end})) ||
(($curr_dom->{start} <= $prev_dom->{start}) && ($curr_dom->{end} >= $prev_dom->{end})));
}
# check for overlapping domains; >1 because $prev_dom is always there
if (scalar(@overlap_domains) > 1 ) {
# if $rpd2_fams, check for a chosen one
for my $dom ( @overlap_domains) {
$dom->{evalue} = 1.0 unless defined($dom->{evalue});
}
@overlap_domains = sort { $a->{evalue} <=> $b->{evalue} } @overlap_domains;
$prev_dom = $overlap_domains[0];
}
# $prev_dom should be the best of the overlaps, and we are no longer overlapping > dom_length/3
push @save_domains, $prev_dom;
$prev_dom = $curr_dom;
}
if ($prev_dom) {push @save_domains, $prev_dom;}
@pf_domains = @save_domains;
# now check for smaller overlaps
for (my $i=1; $i < scalar(@pf_domains); $i++) {
if ($pf_domains[$i-1]->{end} >= $pf_domains[$i]->{start}) {
my $overlap = $pf_domains[$i-1]->{end} - $pf_domains[$i]->{start};
$pf_domains[$i-1]->{end} -= int($overlap/2);
$pf_domains[$i]->{start} = $pf_domains[$i-1]->{end}+1;
}
}
}
# before checking for domain overlap, check for "split-domains"
# (self-unbound) by looking for runs of the same domain that are
# ordered by model_start
if (scalar(@pf_domains) > 1) {
my @j_domains; #joined domains
my @tmp_domains = @pf_domains;
my $prev_dom = shift(@tmp_domains);
for my $curr_dom (@tmp_domains) {
# to join domains:
# (1) the domains must be in order by model_start/end coordinates
# (3) joining the domains cannot make the total combination too long
# check for model and sequence consistency
if ($prev_dom->{accession} eq $curr_dom->{accession}) { # same family
my $prev_dom_len = $prev_dom->{hmm_end}-$prev_dom->{hmm_start}+1;
my $curr_dom_len = $curr_dom->{hmm_end}-$curr_dom->{hmm_start}+1;
my $prev_dom_fn = $prev_dom_len/$curr_dom->{model_length};
my $curr_dom_fn = $curr_dom_len/$curr_dom->{model_length};
my $missing_dom_fn = max(0,($curr_dom->{hmm_start} - $prev_dom->{hmm_end})/$curr_dom->{model_length});
if ( $prev_dom->{hmm_start} < $curr_dom->{hmm_start} # model check
&& $prev_dom->{hmm_end} < $curr_dom->{hmm_end}
&& ($curr_dom->{hmm_start} > $prev_dom->{hmm_end} * 0.80 # limit overlap
|| $curr_dom->{hmm_start} < $prev_dom->{hmm_end} * 1.25)
&& $prev_dom_fn + $curr_dom_fn < 1.33
&& $missing_dom_fn < min($prev_dom_fn,$curr_dom_fn)) { # join them by updating $prev_dom
$prev_dom->{end} = $curr_dom->{end};
$prev_dom->{hmm_end} = $curr_dom->{hmm_end};
$prev_dom->{evalue} = ($prev_dom->{evalue} < $curr_dom->{evalue} ? $prev_dom->{evalue} : $curr_dom->{evalue});
next;
}
push @j_domains, $prev_dom;
$prev_dom = $curr_dom;
}
else {
push @j_domains, $prev_dom;
$prev_dom = $curr_dom;
}
}
push @j_domains, $prev_dom;
@pf_domains = @j_domains;
}
# $vdoms -- virtual Pfam domains -- the equivalent of $neg_doms,
# but covering parts of a Pfam model that are not annotated. split
# domains have been joined, so simply check beginning and end of
# each domain (but must also check for bounded-ness)
# only add when 10% or more is missing and missing length > $min_nodom
if ($vdoms && scalar(@pf_domains)) {
my @vpf_domains;
my $curr_dom = $pf_domains[0];
my $length = $curr_dom->{model_length};
my $prev_dom={end=>0, accession=>''};
my $prev_dom_end = 0;
my $next_dom_start = $length+1;
for (my $dom_ix=0; $dom_ix < scalar(@pf_domains); $dom_ix++ ) {
$curr_dom = $pf_domains[$dom_ix];
my $pfamA = $curr_dom->{accession};
# first, look left, is there a domain there (if there is,
# it should be updated right
# my $min_vdom = $curr_dom->{model_length} / 10;
if ($prev_dom->{accession}) { # look for previous domain
$prev_dom_end = $prev_dom->{end};
}
# there is a domain to the left, how much room is available?
my $left_dom_len = min($curr_dom->{start}-$prev_dom_end-1, $curr_dom->{hmm_start}-1);
if ( $left_dom_len > $min_vdom) {
# there is room for a virtual domain
my %new_dom = (start=> $curr_dom->{start}-$left_dom_len,
end => $curr_dom->{start}-1,
info=>'@'.$curr_dom->{accession},
model_length=> $curr_dom->{model_length},
hmm_end => $curr_dom->{hmm_start}-1,
hmm_start => $left_dom_len,
accession=>$pfamA,
);
push @vpf_domains, \%new_dom;
}
# save the current domain
push @vpf_domains, $curr_dom;
$prev_dom = $curr_dom;
if ($dom_ix < $#pf_domains) { # there is a domain to the right
# first, give all the extra space to the first domain (no splitting)
$next_dom_start = $pf_domains[$dom_ix+1]->{start};
}
else {
$next_dom_start = $seq_length;
}
# is there room for a virtual domain right
my $right_dom_len = min($next_dom_start-$curr_dom->{end}-1, # space available
$curr_dom->{model_length}-$curr_dom->{hmm_end} # space needed
);
if ( $right_dom_len > $min_vdom) {
my %new_dom = (start=> $curr_dom->{end}+1,
end=> $curr_dom->{end}+$right_dom_len,
info=>'@'.$pfamA,
model_length => $curr_dom->{model_length},
accession=> $pfamA,
);
push @vpf_domains, \%new_dom;
$prev_dom = \%new_dom;
}
} # all done, check for last one
# @vpf_domains has both old @pf_domains and new virtural-domains
@pf_domains = @vpf_domains;
}
if ($neg_doms) {
my @npf_domains;
my $prev_dom={end=>0};
for my $curr_dom ( @pf_domains) {
if ($curr_dom->{start} - $prev_dom->{end} > $min_nodom) {
my %new_dom = (start=>$prev_dom->{end}+1, end => $curr_dom->{start}-1, info=>'NODOM');
push @npf_domains, \%new_dom;
}
push @npf_domains, $curr_dom;
$prev_dom = $curr_dom;
}
if ($seq_length - $prev_dom->{end} > $min_nodom) {
my %new_dom = (start=>$prev_dom->{end}+1, end=>$seq_length, info=>'NODOM');
if ($new_dom{end} > $new_dom{start}) {push @npf_domains, \%new_dom;}
}
# @npf_domains has both old @pf_domains and new neg-domains
@pf_domains = @npf_domains;
}
# now make sure we have useful names: colors
for my $pf (@pf_domains) {
$pf->{info} = domain_name($pf->{info}, $acc, $pf->{accession});
}
my @feats = ();
for my $d_ref (@pf_domains) {
if ($lav) {
push @feats, [$d_ref->{start}, $d_ref->{end}, $d_ref->{info}];
}
else {
push @feats, [$d_ref->{start}, '-', $d_ref->{end}, $d_ref->{info} ];
# push @feats, [$d_ref->{end}, ']', '-', ""];
}
}
return \@feats;
}
# domain name takes a uniprot domain label, removes comments ( ;
# truncated) and numbers and returns a canonical form. Thus:
# Cortactin 6.
# Cortactin 7; truncated.
# becomes "Cortactin"
#
# in addition, domain_name() looks up each domain name to see if it
# has a clan, and, if different domains share the same clan, they get
# the same colors.
sub domain_name {
my ($value, $seq_id, $pf_acc) = @_;
my $is_virtual = 0;
if ($value =~ m/^@/) {
$is_virtual = 1;
$value =~ s/^@//;
}
unless (defined($value)) {
warn "missing domain name for $seq_id";
return "";
}
if ($no_clans) {
if (! defined($domains{$value})) {
$domain_clan{$value} = 0;
$domains{$value} = ++$domain_cnt;
push @domain_list, $pf_acc;
}
}
elsif (!defined($domain_clan{$value})) {
## only do this for new domains, old domains have known mappings
## ways to highlight the same domain:
# (1) for clans, substitute clan name for family name
# (2) for clans, use the same color for the same clan, but don't change the name
# (3) for clans, combine family name with clan name, but use colors based on clan
# return the clan name, identifier if a clan member
if (!defined($pfamA_fams{$pf_acc})) {
my $url = "family/$value?output=xml";
my $res = get($loc . $url);
my $twig_clan = XML::Twig->new(twig_roots => {'clan_membership'=>1},
twig_handlers => {
'clan_membership' => \&get_clan,
},
pretty_print => 'indented');
# make certain to reinitialize
($clan_acc, $clan_id) = ("","");
my $xml = $twig_clan->parse($res);
}
else {
($clan_acc, $clan_id) = @{$pfamA_fams{$pf_acc}}{qw(clan_acc clan_id)};
}
if ($clan_acc) {
my $c_value = "C." . $clan_id;
if ($pf_acc_flag) {$c_value = "C." . $clan_acc;}
$domain_clan{$value} = {clan_id => $clan_id,
clan_acc => $clan_acc};
if ($domains{$c_value}) {
$domain_clan{$value}->{domain_cnt} = $domains{$c_value};
$value = $c_value;
}
else {
$domain_clan{$value}->{domain_cnt} = ++ $domain_cnt;
$value = $c_value;
$domains{$value} = $domain_cnt;
push @domain_list, $pf_acc;
}
}
else {
$domain_clan{$value} = 0;
$domains{$value} = ++$domain_cnt;
push @domain_list, $pf_acc;
}
}
elsif ($domain_clan{$value} && $domain_clan{$value}->{clan_acc}) {
if ($pf_acc_flag) {$value = "C." . $domain_clan{$value}->{clan_acc};}
else { $value = "C." . $domain_clan{$value}->{clan_id}; }
}
if ($is_virtual) {
$domains{'@'.$value} = $domains{$value};
$value = '@'.$value;
}
return $value;
}
sub domain_num {
my ($value, $number) = @_;
if ($value =~ m/^@/) {
$value =~ s/^@/v/;
$number = $number."v";
}
return ($value, $number);
}
sub min {
my ($arg1, $arg2) = @_;
return ($arg1 <= $arg2 ? $arg1 : $arg2);
}
sub max {
my ($arg1, $arg2) = @_;
return ($arg1 >= $arg2 ? $arg1 : $arg2);
}
__END__
=pod
=head1 NAME
ann_feats.pl
=head1 SYNOPSIS
ann_pfam_www_e.pl --neg-doms 'sp|P09488|GSTM1_NUMAN' | accession.file
=head1 OPTIONS
-h short help
--help include description
--lav produce lav2plt.pl annotation format, only show domains/repeats
--neg-doms : report domains between annotated domains as NODOM
(also --neg, --neg_doms)
--no-over : generate non-overlapping domains (equivalent to ann_pfam_www.pl)
--no-clans : do not use clans with multiple families from same clan
--pfam_acc : report Pfam accession
--min_nodom=10 : minimum length between domains for NODOM
=head1 DESCRIPTION
C<ann_pfam_www_e.pl> extracts domain information from the Pfam www site
(pfam.xfam.org). Currently, the program works with database
sequence descriptions in several formats:
>gi|1705556|sp|P54670.1|CAF1_DICDI
>sp|P09488|GSTM1_HUMAN
>sp:CALM_HUMAN
C<ann_pfam_www_e.pl> uses the Pfam RESTful WWW interface
(C<pfam.xfam.org/help#tabview=10>) to download domain
names/locations/score. C<ann_pfam_www_e.pl> is an alternative to
C<ann_pfam_e.pl> that does not require a MySQL instance with a Pfam
database installation.
If the "--no-over" option is set, overlapping domains are selected and
edited to remove overlaps. For proteins with multiple overlapping
domains (domains overlap by more than 1/3 of the domain length),
C<auto_pfam_e.pl> selects the domain annotation with the best
C<domain_evalue_score>. When domains overlap by less than 1/3 of the
domain length, they are shortened to remove the overlap.
C<ann_pfam_www_e.pl> is designed to be used by the B<FASTA> programs
with the C<-V \!ann_pfam_www_e.pl> or C<-V "\!ann_pfam_www_e.pl --neg">
option.
=head1 AUTHOR
William R. Pearson, wrp@virginia.edu
=cut
|