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 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096
|
#!/usr/bin/perl -w
# This is a utility to create the usage, input and output
# example HTML include files for the EMBOSS application documentation.
#
# Can now run from any directory, with pre and post processing of the test
# environment done by using the standard test script
#
# Uses the qatest.dat file to find and run tests. No need to create
# all the test results first
#
# Cleans up the qa test directory on success
#
# Skips bad tests with a log message - these should be fixed!
#
# The 'scripts/qatest.pl' script will be run with the argument '-kk'
# to create the example usage, input and output files.
use File::Basename;
%rotations = ("density" => "90<",
"dotmatcher" => "90<",
"pepwheel" => "90>",
);
open (LOG,">>makeexample.log") || die "Cannot append to makeexample.log";
###################################################################
#
# Some useful definitions
#
###################################################################
open (VERS, "embossversion -full -auto|") || die "Cannot run embossversion";
while (<VERS>) {
# if(/InstallDirectory: +(\S+)/) {$installtop = $1}
if(/BaseDirectory: +(\S+)/) {$distribtop = $1}
}
close VERS;
$scripts = "$distribtop/scripts";
$embassy = "";
###################################################################
# get the name of the application
if ($#ARGV < 0) {
print "Name of the program >";
$application = <STDIN>;
} else {
$application = $ARGV[0];
if ($#ARGV > 0) {$embassy = $ARGV[1]}
}
chomp $application;
if (!defined $application || $application eq "") {
die "No program specified\n";
}
# where the web pages and include files live
$doctop = "$ENV{HOME}/devemboss";
if ($embassy eq "") {
$docdir = "$doctop/doc/programs/master/emboss/apps";
$incdir = "$docdir/inc";
$qatop = "$doctop/test";
}
else {
$docdir = "$doctop/embassy/$embassy/emboss_doc/master";
$incdir = "$docdir/inc";
$qatop = "$doctop/embassy/$embassy/test";
}
# some HTML
$p = "<p>";
$bold = "<b>";
$unbold = "</b>";
# maximum number of lines of a file to be displayed
$MaxLines = 100;
%testok = ();
%testkeep = ();
# names of test databases
@testdbs = (
'tsw',
'tswnew',
'twp',
'tembl',
'tpir',
'tedam',
'ttax',
'tdrcat'
);
# colours for backgrounds of usage examples, input and output files
# these colours should work on all PCs/Macs/UNIX web browsers
$usagecolour = "#CCFFFF"; # light cyan
$inputcolour = "#FFCCFF"; # light violet
$outputcolour = "#CCFFCC"; # light green
###################################################################
# initialise the outputs
$USAGE = "";
$INPUT = "";
$OUTPUT = "";
$hasinput = 0;
$haskeystrokes = 1;
$hasoutkeystrokes = "";
@testdbsoutput = ();
@inputfilesshown = ();
@outputfilesshown = ();
# debug
#open (OUT, "> /people/gwilliam/jjj.html") || die "Can't open debug OUT\n";
print LOG "\n";
print LOG "Doing $application\n";
###################################################################
# check for any qa '*-ex' example directories
@dirs=();
open (QATEST, "$qatop/qatest.dat") || die "Cannot open $qatop/qatest.dat";
$expex = qr/^$application[-]ex/;
$expcheck = qr/^$application[-]check/;
$expkeep = qr/^$application[-]keep$/;
while (<QATEST>) {
if (/^ID +(\S+)/) {
$idqa = $1;
if ($idqa =~ /$expex/) {push @dirs, $idqa};
if ($idqa =~ /$expcheck/) {push @dirs, $idqa};
if ($idqa =~ /$expkeep/) {push @dirs, $idqa};
}
}
# are there any results directories?
if ($#dirs == -1) {
errorexit("No qa tests were found for $application");
}
# sort the directory names
@dirs = sort @dirs;
chdir ("$doctop/test/qa");
###################################################################
# get next example directory
$count = 0;
foreach $dotest (@dirs) {
$dir = "$dotest";
print "Doing test $dotest\n";
print LOG "Doing test $dotest\n";
# run the test with -kk
open (TEST,"$scripts/qatest.pl -kk -logfile=qatest.doclog $dotest 2>&1|");
$testok{$dotest} = 0;
$testkeep{$dotest} = 0;
while (<TEST>) {
if (/^Tests total: 1 pass: 1 fail: 0$/) {$testok{$dotest}=1}
}
if (!$testok{$dotest}) {
print LOG "Test $dotest failed\n";
print "Test $dotest failed\n";
if ($embassy eq "") {
print STDERR "Test $dotest failed, ignored\n";
}
else {
print STDERR "Test ($embassy) $dotest failed, ignored\n";
}
next;
}
$count++;
###################################################################
# initialise some output messages for this example
$testdbcomment = "";
$commandline = "";
$usagecomment = "";
$inputcomment = "";
$outputcomment = "";
###################################################################
# read in 'testdef' file of qa commands
$testfile = "$dir/testdef";
open (TESTDEF, "< $testfile") || errorexit("Couldn't open file $testfile");
@testdef = <TESTDEF>;
close (TESTDEF);
###################################################################
# parse 'CL, UC, IC, OC' lines from 'testdef'
foreach $line (@testdef) {
if ($line =~ /^CL\s+(.+)/) {$commandline .= "$1 ";}
if ($line =~ /^UC\s+(.+)/) {$usagecomment .= "$1 ";}
if ($line =~ /^IC\s+(.+)/) {$inputcomment .= "$1 ";}
if ($line =~ /^FI\s+(\S+)/) {push(@outfiles, "$dir/$1");}
if ($line =~ /^FK\s+(.+)/) {$hasoutkeystrokes = $1;}
if ($line =~ /^DI\s+(.+)/) {push(@outfiles, "$dir/$1");$savedir = $1;}
if ($line =~ /^DF\s+(.+)/) {$outdirfiles{$savedir} .= "$1 ";
push(@outfiles, "$dir/$savedir/$1");}
if ($line =~ /^OC\s+(.+)/) {$outputcomment .= "$1 ";}
if ($line =~ /^DL\s+keep/) {$testkeep{$dotest} = 1;}
if ($line =~ /^AB\s+(\S+)/) {
$embassypackage = "$1";
$docdir = "$doctop/embassy/$embassypackage/emboss_doc/master";
$incdir = "$docdir/inc";
}
if ($line =~ /^IN\s+/) {$hasinput = 1;}
if ($line =~ /^IK\s+/) {$haskeystrokes = 1;}
}
# remove stderr, stdin, stdout, testdef, testlog from this list
@outfiles = grep !/stdin|stderr|stdout|testdef|testlog/, @outfiles;
###################################################################
# read in 'stderr' file of prompts
# Watch out for acdtrace which has extra lines
# in all other cases, @prompts = <PROMPTS> would be correct and simpler.
$promptfile = "$dir/stderr";
open (PROMPTS, "< $promptfile" ) || errorexit("Couldn't open file $promptfile");
$plines="";
while (<PROMPTS>) {
s/Trace:.*\n//;
s/\n/\n\r/;
$plines .= $_;
}
close (PROMPTS);
(@prompts) = split(/\r/, $plines);
###################################################################
# read in 'stdin' file of responses to prompts
if($hasinput) {
$answerfile = "$dir/stdin";
open (ANSWERS, "< $answerfile") || errorexit("Couldn't open file $answerfile");
@answers = <ANSWERS>;
close (ANSWERS);
}
else {
@answers = ();
# if $haskeystrokes could put comment about input keystrokes here
}
@saveanswers = @answers;
###################################################################
# read in 'stdout' file of results written to screen
if($hasoutkeystrokes eq "stdout") {
@results = ();
# could put some comment about the output keystrokes here
}
else {
$resultsfile = "$dir/stdout";
open (RESULTS, "< $resultsfile") || errorexit("Couldn't open file $resultsfile");
@results = <RESULTS>;
close (RESULTS);
}
###################################################################
# change any ampersands or angle brackets to HTML codes
$commandline =~ s/&/&/g;
$commandline =~ s/</</g;
$commandline =~ s/>/>/g;
$usagecomment =~ s/&/&/g;
$usagecomment =~ s/</</g;
$usagecomment =~ s/>/>/g;
$inputcomment =~ s/&/&/g;
$inputcomment =~ s/</</g;
$inputcomment =~ s/>/>/g;
$outputcomment =~ s/&/&/g;
$outputcomment =~ s/</</g;
$outputcomment =~ s/>/>/g;
###################################################################
# change newlines to <br>
$commandline =~ s/\n/<br>\n/g;
$usagecomment =~ s/\n/<br>\n/g;
$inputcomment =~ s/\n/<br>\n/g;
$outputcomment =~ s/\n/<br>\n/g;
###################################################################
# see if any of the arguments of CL are real input files
@infiles = ();
@inusas = ();
# split on space, >, <, = - all are possible before a file name
foreach $f (split /\s|\>|\<|\=/, $commandline) {
chomp $f;
# ignore qualifiers - words starting with a '-'
if ($f =~ /^-/) {next;}
# split on '::' to get files embedded in a format::file USA
$f =~ s/^[']//;
$f =~ s/[']$//;
if ($f =~ /\:\:/) {
print "CL line=$f\n";
@fm = split /\:\:/, $f;
$f = pop @fm;
print "CL f=$f\n";
}
# deal with '@' in list files
$f =~ s/\@//g;
# deal with '*' in quotes
$f =~ s/[*]/\\*/g;
# fix {} braces so regex for filename doesn't throw an error on query
$xf = $f;
$xf =~ s/[\}]/\\}/g;
# check to see if this is an output file existing in the -ex directory
if (grep /^$xf$/, @outfiles) {
next;
}
# check to see if it is a real file (not a directory)
if (-f "$dir/$f" && ! -d "$dir/$f") {
# we assume all files in the *-ex directory are output files
# check for '.' or '/' at start of path
if ($f =~ /^\./ || $f =~ m#^\/#) {
#print "displaying infile=$f\n";
push @infiles, $f;
}
}
else {
if($f !~ /^pseudocap:/) {
push @inusas, $f;
}
}
}
###################################################################
# see if any of the answers to prompts are real files
# split on '::' to get files embedded in a format::file USA
foreach $line (@answers) {
chomp $line;
if (length $line) {
#print "line=$line\n";
@usas = split /\:\:/, $line;
$f = pop @usas;
#print "f=$f\n";
# deal with '@' in list files
$f =~ s/\@//;
# check to see if this is an output file existing in the -ex directory
if (($f !~ /[*]/) && grep /^$f$/, @outfiles) {
next;
}
# check to see if it is a real file (not a directory)
#print "test for file: $dir/$f\n";
if (-f "$dir/$f" && ! -d "$dir/$f") {
# we assume all files in the *-ex directory are output files
# check for '.' or '/' at start of path
if ($f =~ /^\./ || $f =~ m#^\/#) {
#print "displaying infile=$f\n";
push @infiles, $f;
}
}
else {
push @inusas, $line;
}
}
}
###################################################################
# see if any of the answers to prompts are lists of real files
# split on ',' to get files embedded in a file list 'file1,file2,file3'
foreach $line (@answers) {
chomp $line;
if (length $line) {
@filelist = split /,\s*/, $line;
foreach $f (@filelist) {
# deal with '@' in list files
$f =~ s/\@//;
# if ':' in it then ignore - not a file
if ($f =~ /\:/) {
#print "ignoring $f in list of input files\n";
next;
}
# check to see if it is a real file (not a directory)
if (-f "$dir/$f" && ! -d "$dir/$f") {
# we assume all files in the *-ex directory are output files
# check for '.' or '/' at start of path
if ($f =~ /^\./ || $f =~ m#^\/#) {
push @infiles, $f;
}
}
else {
push @inusas, $line;
}
}
}
}
###################################################################
# see if we use the test databases anywhere in the command line or answers
foreach $f (@answers, split (/\s|\>|\<|\=/, $commandline)) {
chomp $f;
@d = split (/\:/, $f);
foreach $d (@d) {
if ($d =~ /^[\{]/) {next;}
if ($d =~ /\*/) {next;}
if ($d =~ /[\[]/ && $d !~ /[\[].*[\]]/ ) {next}
if (grep /^$d$/, @testdbs) {
# check we have not made any other comments about this test database
if (! grep /$d/, @testdbsoutput) {
if ($d eq "tembl") {
$type = "nucleic acid";
}
elsif ($d eq "tedam") {
$type = "obo";
}
elsif ($d eq "edam") {
$type = "obo";
}
elsif ($d eq "tobo") {
$type = "obo";
}
elsif ($d eq "tdrcat") {
$type = "resource";
}
elsif ($d eq "ttax") {
$type = "taxonomy";
}
else {
$type = "protein";
}
$testdbcomment .= "\n'$f' is a sequence entry in the example $type database '$d'\n$p\n";
push @testdbsoutput, $d;
}
}
}
}
###################################################################
# usage documentation
###################################################################
# example count
if ($count == 1) {
$USAGE .= qq|Here is a sample session with <b>$application</b>\n$p\n|;
}
else {
$USAGE .= qq|$p\n<b>Example $count</b>\n$p\n|;
}
# usage comment
if ($usagecomment ne "") {
$USAGE .= qq|$usagecomment\n$p\n|;
}
# blank line
$USAGE .= qq|\n$p\n|;
# start table (light cyan)
$USAGE .= qq|<table width="90%"><tr><td bgcolor="$usagecolour"><pre>\n\n|;
# application name and command line (we just use the test results)
# print "Doing: \% $application $commandline\n";
$usecommandline = $commandline;
$usecommandline =~ s/[.][.]\/..\/data\/[^\/]+\///; # ../../data/(embassy)/
$usecommandline =~ s/[.][.]\/..\/data\///; # ../../data/
$usecommandline =~ s/[.][.]\/..\///; # ../../embl (etc.)
$USAGE .= qq|% $bold$application $usecommandline$unbold\n|;
# intercalate prompts and answers
@pr = ();
foreach $line (@prompts) {
$line =~ s/[.][.]\/..\/data\/[^\/]+\///; # ../../data/(embassy)/
$line =~ s/[.][.]\/..\/data\///; # ../../data/
$line =~ s/[.][.]\/..\///; # ../../embl (etc.)
$line =~ s/: (No dbtype found supporting format)/ : $1/;
push @pr, split /([^\s]+: )/, $line;
}
foreach $line (@pr) {
$USAGE .= qq|$line|;
# change ':'s in warning messages so that they don't look like prompts
# although if we get a warning, things are probably going badly wrong anyway
#print "prompt=$line\n";
$line =~ s/Warning:/Warning :/;
$line =~ s/Error:/Error :/;
$line =~ s/Fatal:/Fatal :/;
# We also get warnings from blastpgp in some domainatrix apps
$line =~ s/WARNING:/WARNING :/;
$line =~ s/posFindAlignmentDimensions:/posFindAlignmentDimensions :/;
$line =~ s/posProcessAlignment:/posProcessAlignment :/;
# print the answer in bold
#print "$line\n";
if ($line =~ /[^\s]: $/) {
$ans = shift @answers;
#print "prompt=$line\n";
#print "ans=$ans\n";
if (!defined($ans)) {
$ians = $#saveanswers - $#answers;
print STDERR "application '$application' \@answers[$ians] undefined\n";
print STDERR "$line\n";
# $ians = 0;
# foreach $sa (@saveanswers) {
# $ians++;
# print STDERR "\$saveanswers[$ians] = '$sa'\n";
# }
$ans = "\n";
}
$ans =~ s/[.][.]\/..\/data\/[^\/]+\///; # ../../data/(embassy)/
$ans =~ s/[.][.]\/..\/data\///; # ../../data/
$ans =~ s/[.][.]\/..\///; # ../../embl (etc.)
$USAGE .= "$bold$ans$unbold\n";
}
}
# have we used all of our answers?
if ($#answers != -1) {
print STDERR "WARNING ****
application '$application' example $count test $dotest
hasn't used ", $#answers+1, " answers\n";
print LOG "WARNING ****
test $dotest hasn't used ", $#answers+1, " answers\n";
}
# display any results found in the 'stdout' file
$USAGE .= qq|\n|;
foreach $r (@results) {$USAGE .= qq|$r|;}
# end stdout results with another blank line
if ($#results > -1) {$USAGE .= qq|\n|;}
# end table
$USAGE .= qq|</pre></td></tr></table>$p\n|;
# blank line
$USAGE .= qq|$p\n|;
###################################################################
# input documentation
###################################################################
# If the command line of answers contain tembl, tsw etc.
# add a comment about these being test databases.
# only add this comment once
$I = $testdbcomment;
# input comment
$I .= $inputcomment;
# foreach input file
foreach $file (@infiles) {
#print "input file=$file\n";
$shortfile = $file;
$shortfile =~ s/[.][.]\/..\/data\/[^\/]+\///; # ../../data/(embassy)/
$shortfile =~ s/[.][.]\/..\/data\///; # ../../data/
$shortfile =~ s/[.][.]\/..\///; # ../../embl (etc.)
# if this some sort of binary file?
if (checkBinary("$dir/$file")) {
$I .= $p . "<h3>File: $shortfile</h3>\n";
$I .= $p . "This file contains non-printing characters and so cannot be displayed here.\n";
# normal file that can be displayed
}
else {
# has the name has been used before
if (! grep /^$file$/, @inputfilesshown) {
push @inputfilesshown, $file;
# no - contruct new display of file
# add example number to the list of examples that use this file
$I .= displayFile($shortfile, "$dir/$file", $inputcolour);
}
}
}
# the @inusas list of inputs are possible USAs, but have not been checked.
# see if they have a ':' in them and display using entret.
# If it has an '*' then ignore it,
foreach $f (@inusas) {
if ($f =~ /\:/ && $f !~ /\*/ && $f !~ /http\:/) {
# has the name has been used before
if (! grep /^$f$/, @inputfilesshown) {
push @inputfilesshown, $f;
$I .= displayEntry($f, $inputcolour);
}
}
}
# If any new files were output for this example,
if (length $I) {
$INPUT .= qq|\n<a name="input.$count"></a>\n<h3>Input files for usage example |;
if ($count > 1) {$INPUT .= "$count";}
$INPUT .= "</h3>\n";
$INPUT .= $I;
# add a link from the usage
$USAGE .= qq|<a href="#input.$count">Go to the input files for this example</a><br>|;
}
###################################################################
# output documentation
###################################################################
$O = "";
# output comment
$O .= $outputcomment;
# foreach output file
foreach $path (@outfiles) {
#print "output file=$path\n";
# $basefile = basename($path);
if ($path !~ /^$dir\//) {next} # multiple tests
$file = $path;
$file =~ s/^$dir\///;
$filetype = `file $path`;
# if this a .gif, .ps or .png graphics file?
if ($filetype =~ /: GIF image data|: PNG image data|: PostScript /) {
# convert .ps file to gif
$giffile = "";
$origfile = $file;
if ($file =~ /([a-z0-9_]+)\.ps$/) {
$pname = $1;
$giffile = $file;
$giffile =~ s/\.[a-z]*ps2?/.gif/;
$rotate = "90<";
if(defined($rotations{$pname})){
$rotate = $rotations{$pname};
# print STDERR "rotate '$rotate'\n";
}
# add -delay to see the first page of an animated gif for 10 mins
# add -delay to see the first page of an animated gif for 10 mins
system("2>&1 convert -delay 65535 -rotate '$rotate' $path $giffile >/dev/null");
$file = $giffile;
$path = $giffile;
}
elsif ($file =~ /\.([a-z]+)ps$/) {
$giffile = $file;
$giffile =~ s/\.([a-z]+)ps/.$1.gif/;
system("2>&1 convert -delay 65535 -rotate '-90<' $path $giffile >/dev/null");
$file = $giffile;
$path = $giffile;
}
elsif ($file =~ /\.ps2$/) {
$giffile = $file;
$giffile =~ s/\.ps(\d)/.$1.gif/;
# add -delay to see the first page of an animated gif for 10 mins
system("2>&1 convert -delay 65535 -rotate '-90<' $path $giffile >/dev/null");
$file = $giffile;
$path = $giffile;
}
elsif ($filetype =~ /: PostScript /) {
$giffile = $file;
$giffile .= ".gif";
# add -delay to see the first page of an animated gif for 10 mins
system("2>&1 convert -delay 65535 -rotate '-90<' $path $giffile >/dev/null");
$file = $giffile;
$path = $giffile;
}
# rename file to be unique - application name . example count . given file name
$newfile = "$application.$count.$file";
system("cp $path $docdir/$newfile");
chmod 0664, "$docdir/$newfile";
# tidy up
if ($giffile ne "") {
unlink $giffile;
}
# display the graphics file
$O .= $p . "<h3>Graphics File: $origfile</h3>\n";
$O .= $p . qq|<img src="$newfile" alt="[$application results]">\n|;
# if this some other binary file?
}
elsif (-d $path) {
$O .= $p . "<h3>Directory: $file</h3>\n";
$O .= $p . "This directory contains output files";
if(defined($outdirfiles{$file})) {
$outtmp = $outdirfiles{$file};
$outtmp =~ s/ (\S+) $/ and $1/;
$outtmp =~ s/ $//;
$O .= ", for example $outtmp\.\n";
}
else {
$O .= ".\n$p\n";
}
}
elsif (checkBinary($path)) {
$O .= $p . "<h3>File: $file</h3>\n";
$O .= $p . "This file contains non-printing characters and so cannot be displayed here.\n";
# normal file that can be displayed
}
else {
# has the name has been used before (match to end of path in @outputfilesshown)
@o = grep /$file$/, @outputfilesshown;
if ($#o == -1) {
push @outputfilesshown, $path;
# no - contruct new display of file
#print "displaying $file\n";
$O .= displayFile($file, $path, $outputcolour);
}
else {
# do a diff of the two files
$ofile = pop @o;
system ("diff $ofile $path> diff.tmp");
if ( -s "diff.tmp" ) {
# it is a different file
$O .= displayFile($file, $path, $outputcolour);
}
unlink "diff.tmp";
}
}
}
# If any new files were output for this example,
if (length $O) {
$OUTPUT .= qq|\n<a name="output.$count"></a>\n<h3>Output files for usage example |;
if ($count > 1) {$OUTPUT .= "$count";}
$OUTPUT .= "</h3>\n";
$OUTPUT .= $O;
# add a link from the usage
$USAGE .= qq|<a href="#output.$count">Go to the output files for this example</a>$p|;
}
# force a blank line to be at the end of the usage
$USAGE .= "$p\n";
}
$testsfailed = "";
$nfailed = 0;
foreach $dotest (@dirs) {
if (!$testok{$dotest}) {
if ($nfailed) {$testsfailed .= ", "}
$testsfailed .= "$dotest";
$nfailed++;
}
}
if ($nfailed) {
if($nfailed == 1) {
errorexit("Test $testsfailed failed");
}
else {
errorexit("Tests $testsfailed failed");
}
}
###################################################################
# create the usage, input and output documentation files
writeUsage($USAGE);
writeInput($INPUT);
writeOutput($OUTPUT);
# debug
#print OUT "USAGE=\n$USAGE\n";
#print OUT "INPUT = \n$INPUT";
#print OUT "OUTPUT = \n$OUTPUT";
#close(OUT);
foreach $dotest (@dirs) {
if ($testok{$dotest}) {
if (!$testkeep{$dotest}) {
system ("rm -rf $dotest");
}
}
}
close LOG;
exit(0);
###################################################################
###################################################################
###################################################################
# Name: errorexit
# Function: leaves output files unchanged and exits with an error message
# Args: string - error message
# Returns: exits - no return
###################################################################
sub errorexit {
my $msg = $_[0];
my $usage = "Error: $msg";
my $input = "Error: $msg";
my $output = "Error: $msg";
# writeUsage($usage);
# writeInput($input);
# writeOutput($output);
if ($embassy eq "") {
print STDERR "Error: $msg\n";
print "Error: $msg\n";
}
else {
print STDERR "Error: ($embassy) $msg\n";
print "Error: ($embassy) $msg\n";
}
exit 1;
}
###################################################################
# Name: writeUsage
# Function: writes usage file
# Args: string - example usage
# Returns:
###################################################################
sub writeUsage {
my $usage = $_[0];
my $out = "$incdir/$application.usage";
open (OUT, "> $out") || die "Can't open $out";
$usage =~ s/\/data1\/[Uu]sers\/pmr\/local/\/homes\/pmr\/local/go;
$usage =~ s/\/data1\/[Uu]sers\/pmr\/devemboss/\/homes\/user/go;
$usage =~ s/\/homes\/pmr\/devemboss/\/homes\/user/go;
$usage =~ s/\/home\/pmr\/devemboss/\/homes\/user/go;
$usage =~ s/\/data\/pmr\/devemboss/\/homes\/user/go;
$usage =~ s/\/homes\/pmr/\/homes\/user/go;
$usage =~ s/\/home\/pmr/\/homes\/user/go;
$usage =~ s/\/data\/pmr/\/homes\/user/go;
$usage =~ s/\/home\/user\/local\/bin/\/shared\/software\/bin/go;
$usage =~ s/\/homes\/user\/local\/bin/\/shared\/software\/bin/go;
$usage =~ s/(Guide tree +file created: +)\[[A-Z0-9]+\]/$1\[12345678A]/go;
$usage =~ s/(GCG-Alignment file created +)\[[A-Z0-9]+\]/$1\[12345678A]/go;
$usage =~ s/domainalign\-[0-9]+[.][0-9]+/domainalign-1234567890.1234/go;
$usage =~ s/domainrep\-[0-9]+[.][0-9]+[.]/domainrep-1234567890.1234./go;
$usage =~ s/domainrep\-[0-9]+[.][0-9]+/domainrep-1234567890.1234/go;
$usage =~ s/pdbplus\-[0-9]+[.][0-9]+/pdbplus-1234567890.1234/go;
$usage =~ s/seqalign\-[0-9]+[.][0-9]+[.]/seqalign-1234567890.1234./go;
$usage =~ s/seqsearch\-[0-9]+[.][0-9]+[.]/seqsearch-1234567890.1234./go;
$usage =~ s/hmmalign\-[0-9]+[.][0-9]+/hmmalign-1234567890.1234/go;
$usage =~ s/ehmmalign\-[0-9]+[.][0-9]+/ehmmalign-1234567890.1234/go;
$usage =~ s/hmmpfam\-[0-9]+[.][0-9]+/hmmpfam-1234567890.1234/go;
$usage =~ s/ehmmpfam\-[0-9]+[.][0-9]+/ehmmpfam-1234567890.1234/go;
$usage =~ s/Localtime: ... ... +\d+ [0-9:]+ 2[0-9][0-9][0-9]$/Localtime: Mon Jul 15 12:00:00 2013/gom;
$usage =~ s/SUBMITTED iprscan-\d+-\d+/SUBMITTED-iprscan-20130715-12345678/go;
print OUT $usage;
close(OUT);
chmod 0664, $out; # rw-rw-r--
}
###################################################################
# Name: writeInput
# Function: writes input file
# Args: string - example input
# Returns:
###################################################################
sub writeInput {
my $input = $_[0];
my $out = "$incdir/$application.input";
open (OUT, "> $out") || die "Can't open $out";
$input =~ s/DATE [A-Z][a-z][a-z] [A-Z][a-z][a-z] +[0-9]+ [0-9:]+ 20[01][0-9]/DATE Mon Jul 15 12:00:00 2013/go;
$input =~ s/\/home\/user\/local\/bin/\/shared\/software\/bin/go;
$input =~ s/\/homes\/user\/local\/bin/\/shared\/software\/bin/go;
print OUT $input;
close(OUT);
chmod 0664, $out; # rw-rw-r--
}
###################################################################
# Name: writeOutput
# Function: writes output file
# Args: string - example output
# Returns:
###################################################################
sub writeOutput {
my $output = $_[0];
my $out = "$incdir/$application.output";
open (OUT, "> $out") || die "Can't open $out";
$output =~ s/caissa/emboss4.ebi.ac.uk/go;
$output =~ s/\/data1\/[Uu]sers\/pmr\/local/\/homes\/pmr\/local/go;
$output =~ s/\/data1\/[Uu]sers\/pmr\/devemboss/\/homes\/user/go;
$output =~ s/\/homes\/pmr\/devemboss/\/homes\/user/go;
$output =~ s/\/home\/pmr\/devemboss/\/homes\/user/go;
$output =~ s/\/data\/pmr\/devemboss/\/homes\/user/go;
$output =~ s/\/homes\/pmr/\/homes\/user/go;
$output =~ s/\/home\/pmr/\/homes\/user/go;
$output =~ s/\/data\/pmr/\/homes\/user/go;
$output =~ s/DATE [A-Z][a-z][a-z] [A-Z][a-z][a-z] +[0-9]+ [0-9:]+ 20[01][0-9]/DATE Mon Jul 15 12:00:00 2013/go;
$output =~ s/CreationDate: ... ... +\d+ [0-9:]+ 2[0-9][0-9][0-9]$/CreationDate: Mon Jul 15 12:00:00 2013/gom;
$output =~ s/Rundate: ... ... +\d+ 2[0-9][0-9][0-9] [0-9:]+$/Rundate: Mon Jul 15 2013 12:00:00/gom;
$output =~ s/Localtime: ... ... +\d+ [0-9:]+ 2[0-9][0-9][0-9]$/Localtime: Mon Jul 15 12:00:00 2013/gom;
$output =~ s/\#\#date 2[0-9][0-9][0-9][-][0-9][0-9][-][0-9][0-9]$/\#\#date 2013-07-15/gom;
$output =~ s/domainalign\-[0-9]+[.][0-9]+[.]/domainalign-1234567890.1234./go;
$output =~ s/domainrep\-[0-9]+[.][0-9]+[.]/domainrep-1234567890.1234./go;
$output =~ s/seqalign\-[0-9]+[.][0-9]+[.]/seqalign-1234567890.1234./go;
$output =~ s/seqsearch\-[0-9]+[.][0-9]+[.]/seqsearch-1234567890.1234./go;
$output =~ s/hmmalign\-[0-9]+[.][0-9]+/hmmalign-1234567890.1234/go;
$output =~ s/hmmpfam\-[0-9]+[.][0-9]+/hmmpfam-1234567890.1234/go;
$output =~ s/Time 0\.00[0-5][0-9][0-9][0-9] secs\./Time 0.001999 secs./go;
$output =~ s/Time 0\.[0-9][0-9] secs\./Time 0.50 secs./go;
$output =~ s/Time [1-5]\.[0-9][0-9] secs\./Time 1.50 secs./go;
$output =~ s/Time 1[0-9]\.[0-9][0-9] secs\./Time 11.50 secs./go;
$output =~ s/\%\%Creator: (\S+ [\d.]+) 2[0-9][0-9][0-9]\/[0-9[0-9]\/[0-9[0-9]/Creator: $1 2013\/07\/15/go;
$output =~ s/mse\.msf MSF: 120 Type: N \d+\/\d+\/\d+ CompCheck: 2784/mse.msf MSF: 120 Type: N 15\/07\/10 CompCheck: 2784/go;
$output =~ s/ \d+-[A-Z][a-z][a-z]-2[01][0-9][0-9] / 15-Jul-2013 /go;
print OUT $output;
close(OUT);
chmod 0664, $out; # rw-rw-r--
}
###################################################################
# Name: displayEntry
# Function: returns a string used to display a database entry
# Args: string - USA
# string - colour
# Returns: string - HTML formatted entry contents
###################################################################
sub displayEntry {
my $usa = $_[0];
my $colour = $_[1];
my $res = "";
#print "In displayEntry($usa)\n";
# if the 'file name' contains 'http:' then ignore it :-)
if ($usa =~ /http\:/) {
return $res;
}
# if the USA has a single ':', use entret, else it is a file and we use seqret
if ($usa =~ /T?EDAM\:/i) {
system ("ontoget $usa z.z -obsolete -auto");
}
elsif ($usa =~ /T?TAX(-nam)?\:/i) {
system ("taxget $usa z.z -auto");
}
elsif ($usa =~ /T?DRCAT\:/i) {
system ("drget $usa z.z -auto");
}
elsif ($usa =~ /srs\:unilib\:/i) {
system ("textget $usa z.z -auto");
}
elsif ($usa !~ /\:\:/ && $usa =~ /\S\:/) {
system ("entret $usa z.z -auto");
}
elsif ($usa =~ /\:\:/) {
system ("seqret $usa z.z -auto");
}
$res = displayFile($usa, "z.z", $colour);
unlink "z.z";
return $res;
}
###################################################################
# Name: displayFile
# Function: returns a string used to display a file
# Args: string - file name as used in the example usage
# string - path to file
# string - colour
# Returns: string - HTML formatted files contents
###################################################################
sub displayFile {
my $file = $_[0];
my $path = $_[1];
my $colour = $_[2];
my $result = "";
my @lines;
my $count;
#print STDERR "In displayFile($file)\n";
# if the 'file name' contains 'http:' then ignore it :-)
if ($file =~ /http\:/) {
return $result;
}
# if the file has the name 'z.z' (used by displayEntry) then say in the
# title that it is a database entry rather than a file
if ($path eq "z.z") {
$result = $p . "<h3>Database entry: $file</h3>\n";
}
else {
$result = $p . "<h3>File: $file</h3>\n";
}
# start table
$result .= qq|<table width="90%"><tr><td bgcolor="$colour">\n|;
# if not an .html file, put it in a PRE block
if ($file !~ /.html$/) {
$result .= qq|<pre>\n|;
}
open (F, "< $path") || die "Can't open input file $path";
@lines = <F>;
close (F);
# convert <, >, & to HTML codes if the file is not a .html file
if ($path !~ /.html$/) {
foreach my $l (@lines) {
$l =~ s/[&]/&/g;
$l =~ s/[<]/</g;
$l =~ s/[>]/>/g;
}
}
# if file is too long, cut out the middle bit;
if ($#lines > $MaxLines) {
for ($count = 0; $count < $MaxLines/2; $count++) {
if ($path =~ /.html$/) {
$lines[$count] =~ s/[&]/&/g;
$lines[$count] =~ s/[<]/</g;
$lines[$count] =~ s/[>]/>/g;
}
$result .= $lines[$count];
}
$result .= "\n\n<font color=red> [Part of this file has been deleted for brevity]</font>\n\n";
for ($count = $#lines - $MaxLines/2; $count <= $#lines; $count++) {
if ($path =~ /.html$/) {
$lines[$count] =~ s/[&]/&/g;
$lines[$count] =~ s/[<]/</g;
$lines[$count] =~ s/[>]/>/g;
}
$result .= $lines[$count];
}
}
else {
$result .= join "", @lines;
}
# if not an .html file, put it in a PRE block
if ($file !~ /.html$/) {
$result .= qq|</pre>\n|;
}
# end table
$result .= qq|</td></tr></table>$p\n|;
return $result;
}
###################################################################
# Name: checkBinary
# Function: checks to see if a file has non-printing characters in
# Args: string - path to file
# Returns: bool - true if file is binary
###################################################################
sub checkBinary {
my $file = $_[0];
my $count;
my $buf;
my $c;
open(B, "< $file") || die "Can't open file $file\n";
# get the first 1Kb characters
read B, $buf, 1024;
close(B);
#my @n = unpack('C*', $buf);
#for ($count = 0; $count <= $#n; $count++) {
# $c = pop @n;
#print "c=$c\n";
# if ($c >= 32 && $c <= 126) {next;}
# if ($c == ord("\t") || $c == ord("\n") || $c == ord("\r")) {next;}
#
#print "Binary\n";
# return 1;
# }
#
#print "Not Binary\n";
# return 0;
for ($count = 0; $count < length $buf; $count++) {
$c = ord(substr($buf, $count, 1));
if ($c >= 32 && $c <= 126) {next;}
if ($c == ord("\t") || $c == ord("\n") || $c == ord("\r")) {next;}
return 1;
}
return 0;
}
|