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 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191
|
#!/usr/bin/perl
#
##########################################################################################################################
# #
# autoAug.pl #
# train and run AUGUSTUS automatically #
# #
# usage: #
# autoAug.pl [OPTIONS] -g=genome.fa -t=trainingfile -s=speciesname -c=cdnafile #
# #
##########################################################################################################################
use warnings;
use Getopt::Long;
use Cwd;
use File::Spec::Functions qw(rel2abs);
use File::Basename qw(dirname basename);
BEGIN {
$0=rel2abs($0);
our $directory = dirname($0);
}
use lib $directory;
use helpMod qw(find checkFile check_fasta_headers relToAbs uptodate);
use Term::ANSIColor qw(:constants);
use DBI;
use strict;
my $scriptPath=dirname($0); # the path of directory where this script placed
my $genome; # name of sequece file
my $genome_clean; # genome file that has been cleaned of DOS whitespaces and linebreaks
my $trainingset; # name of training set file
my $species; # species name
my $hints; # hints file name
my $havehints=0; # have hints at all or not?
my $estali; # est file for make UTR-Training
my $positionWD=cwd(); # working superdirectory where program is called from
my $pasa=''; # switch it on to create training set, est set, hints file with PASA
my $pasapolyAhints; # use PASA Poly A hints as hints for the prediction
my $fasta_cdna; # fasta file for PASA
my $verbose=2; # verbose level
my $webaugustus=0; # run in WebAUGUSTUS - adapt error messages to webservice or standalone
my $singleCPU=0; # run everything sequentially without interruption
my $cpus=1; # n is the number of CPUs to use (default: 1)
my $maxIntronLen = 100000; # maximal length of an intron, used by PASA and BLAT
my $noninteractive; # parameter for autoAugPred.pl
my $cname="fe"; # parameter for autoAugPred.pl:cluster name
my $optrounds=1; # optimization rounds
my $useGMAPforPASA=0; # use GMAP instead of BLAT (only for PASA)
my $useexisting=0; # start with and change existing config, parameter and result files
my $utr=1; # default value: with "utr" if cDNA exists
my $flanking_DNA=''; # length of flanking DNA, default value is min{ave. gene length, 10000}
my $help=0; # print usage
my $useexistingopt = "";
my $autoAugDir_abinitio;
my $autoAugDir_hints;
my $autoAugDir_hints_utr;
my $autoAugDir_utr;
my $autoAugDir;
my $shells_path;
my $trainDir; # directory for creating the training set
my $index=0;
my $shellDir;
my $aug;
my $perlCmdString; # to store perl commands
my $cmdString; # to store shell commands
my $string; # temp string for perl-scripts, which will be called in this script
# usage
my $usage = <<_EOH_;
Function: train AUGUSTUS and run AUGUSTUS completely and automatically
Usage:
autoAug.pl [OPTIONS] --species=sname --genome=genome.fa --cdna=cdna.fa --trainingset=genesfile
autoAug.pl [OPTIONS] --species=sname --genome=genome.fa --cdna=cdna.fa --pasa --useGMAPforPASA
autoAug.pl [OPTIONS] --species=sname --genome=genome.fa --trainingset=genesfile [--estali=cdna.psl] [--hints=hints.gff]
--genome=fasta fasta file with DNA sequences for training
--trainingset=genesfile genesfile contains training genes in Genbank, GFF or protein FASTA format
--species=sname species name as used by AUGUSTUS
--hints=hints.gff hints for gene predictions with AUGUSTUS
--estali=cdna.psl cDNA alignments in PSL format (as generated by BLAT and GMAP) are used to construct UTRs
--pasa use PASA to construct a training set
--cdna=cdna.fa a fasta file with cDNA sequences (ESTs, mRNA)
--pasapolyAhints use PASA polyA hints as hints for the prediction
options:
--useexisting use and change the present config and parameter files if they exist for 'species'
--verbose print more status info. Cumulative option, e.g. use -v -v -v to make this script very verbose
--webaugustus run in WebAUGUSTUS - adapt error messages to this webservice
--noutr do not train and predict UTRs.
--workingdir=/path/to/wd/ In the working directory results and temporary files are stored.
Default: current working directory
--singleCPU run the complete program sequentially instead of parallel execution of jobs on a cluster
--cpus=n n is the number of CPUs to use (default: 1), if cpus > 1 install pblat (parallelized blat) for better performance
--noninteractive bypass all manual interaction when using a SGE cluster
--cname=yourClusterName cluster name, only use it when "noninteractive" default:fe
--index=i step index, default:0
--optrounds=n optimization rounds - each meta parameter is optimized this often (default 1)
--maxIntronLen=n maximal length of an intron as used by PASA and BLAT, not by AUGUSTUS (default 100000)
--useGMAPforPASA use GMAP instead of BLAT in the PASA run
--help print this usage information
_EOH_
;
if (@ARGV==0) {print "$usage\n"; exit(0);}
GetOptions( 'genome=s' => \$genome,
'trainingset=s' => \$trainingset,
'species=s' => \$species,
'hints=s' => \$hints,
'estali=s' => \$estali,
'workingdir=s' => \$positionWD,
'pasa!' => \$pasa,
'singleCPU!' => \$singleCPU,
'cpus=i' => \$cpus,
'cdna=s' => \$fasta_cdna,
'verbose+' => \$verbose,
'webaugustus!' => \$webaugustus,
'noninteractive' => \$noninteractive,
'cname=s' => \$cname,
'index=i' => \$index,
'optrounds=i' => \$optrounds,
'maxIntronLen=i' => \$maxIntronLen,
'useGMAPforPASA!' => \$useGMAPforPASA,
'useexisting!' => \$useexisting,
'utr!' => \$utr,
'help!' => \$help,
'pasapolyAhints!' => \$pasapolyAhints
);
if ($help) {print "$usage\n"; exit(0);}
############ make some regular checks ##############
# check upfront whether any common problems will occur later. So the user doesn't have to wait a long time to
# find out that some programs are not installed.
check_upfront();
# directory structure:
# $positionWD = cwd - $rootDir = autoAug - = trainingSet
# - = autoAugTrain
# - = autoAugPred_abinitio
# - = autoAugPred_hints
# - = autoAugPred_hints_utr
# - = results
# check the write permission of $positionWD before building of the work directory
die("Do not have write permission for $positionWD.\nPlease use command 'chmod' to reset permission " .
"or specify another working directory\n") if (! -w $positionWD);
my $rootDir="$positionWD/autoAug";
die ("$rootDir already exists. Reuse with --useexisting or use another directory with --workingdir=dir")
if (!$useexisting && -d $rootDir);
$cmdString = "augustus --version 2>&1";
system("$cmdString")==0 or die("Augustus is not installed - failed to execute: $cmdString!\n");
print "\n";
if (! -d $rootDir) {
mkdir "$rootDir" or die ("Could not create directory $rootDir\n");
}
$autoAugDir_abinitio = "$rootDir/autoAugPred_abinitio";
$autoAugDir_hints = "$rootDir/autoAugPred_hints";
$autoAugDir_hints_utr = "$rootDir/autoAugPred_hints_utr";
$autoAugDir_utr = "$rootDir/autoAugPred_utr";
my $AUGUSTUS_CONFIG_PATH=$ENV{'AUGUSTUS_CONFIG_PATH'};
# show error information and stop the program if $species not specified
die("Error: Need to specify the species!\n$usage") unless($species);
# check species directory
die("$AUGUSTUS_CONFIG_PATH/species/$species already exists. Choose another species name or delete this directory to start from scratch.\n")
if (-d "$AUGUSTUS_CONFIG_PATH/species/$species" && !$useexisting && ($noninteractive || $index==0));
# check genome file
$genome = checkFile($genome, "fasta", $usage);
check_fasta_headers($genome);
# show error information and stop the program if the specified $positionWD couldn't be found
# overwrite $positionWD with absolute path
$positionWD=relToAbs($positionWD);
die("Error: Did not find the directory $positionWD! Please specify a valid one for \"workingdir\"! \n") unless (-d $positionWD);
$useexistingopt = "--useexisting" if ($useexisting);
my $verboseString;
$verboseString='' if ($verbose==0);
$verboseString="-v" if ($verbose==1);
$verboseString='-v -v' if ($verbose==2);
$verboseString='-v -v -v' if ($verbose>2);
#print "First column: verbosity level x, only print this line if $verbose >= x \n\n\n";
$havehints = (defined($hints) || defined($fasta_cdna) || defined($estali));
$fasta_cdna = checkFile($fasta_cdna, "fasta", $usage) if (defined($fasta_cdna));
if (defined($fasta_cdna)) {
print "1 Checking fasta headers in file $fasta_cdna...\n" if ($verbose>=1);
check_fasta_headers($fasta_cdna);
}
$trainingset = checkFile($trainingset,"training genes", $usage) if($index==0 && defined($trainingset));
$hints = checkFile($hints,"hints", $usage) if (defined($hints));
$estali = checkFile($estali,"EST alignment", $usage) if (defined($estali));
training_set_dirs() if($index==0);
# Clean genome file from DOS whitespaces/linebreaks
if (!uptodate([$genome], [$genome_clean])){
print "3 Cleaning genome file from DOS whitespaces/linebreaks...\n" if ($verbose>2);
$genome_clean = "$rootDir/seq/genome_clean.fa";
$string = find("cleanDOSfasta.pl");
$perlCmdString = "perl $string $genome > $genome_clean";
print "3 $perlCmdString\n" if ($verbose>2);
system("$perlCmdString")==0 or die ("failed to execute: $perlCmdString!\n");
unless(-e $genome_clean){die("Clean genome file $genome_clean does not exist!\n");}
}
if($pasa && $index==0){
$trainingset = "$trainDir/training/training.gb";
if (!uptodate([$genome_clean,$fasta_cdna], [$trainingset])){
construct_training_set();
} else {
print ("1 Skipping training set construction with PASA. Using existing file $trainingset.\n") if ($verbose>=1);
}
}
if($index==0 && (!defined($hints) || !defined($estali))){
if (!uptodate(["$rootDir/seq/genome_clean.fa"],["$rootDir/seq/genome.summary", "$rootDir/seq/contigs.gff"])){
prepare_genome();
}
if (defined($fasta_cdna) &&
!uptodate([$fasta_cdna, "$rootDir/seq/genome_clean.fa"],
["$rootDir/cdna/cdna.psl", "$rootDir/cdna/cdna.f.psl", "$rootDir/hints/hints.E.gff"])){
alignments_and_hints();
} else {
print "1 Using existing cDNA alignments and hints.\n" if ($verbose>=1);
}
$hints = "$rootDir/hints/hints.E.gff";
$estali = "$rootDir/cdna/cdna.f.psl";
}
autoTrain_no_utr() if ($noninteractive or $index==0);
if ($noninteractive){
autoAug_noninteractive("",""); # without hints
autoAug_noninteractive("1","") if ($havehints); # with hints
if ($utr && defined($hints)){
autoTrain_with_utr();
autoAug_noninteractive("1","1");
}
} else {
autoAug_prepareScripts("","") if ($index==0);
$index++ if ($singleCPU);
if($index==1){
autoAug_continue("",""); # without hints
autoAug_prepareScripts("1","") if ($havehints);# with hints
$index++ if ($singleCPU);
}
if($index==2){
autoAug_continue("1","") if ($havehints);# with hints
if ($utr && ($havehints)){
autoTrain_with_utr();
autoAug_prepareScripts("1","1");
}
$index++ if ($singleCPU);
}
autoAug_continue("1","1") if ($index==3 && $utr && ($havehints));
}
collect() if($noninteractive or $index==3);
############### sub functions ##############
##################### construct training set with pasa ######################
sub training_set_dirs {
# build directory for training set construction (e.g. PASA)
chdir $rootDir or die ("Could not change to directory $rootDir.\n");
$trainDir="$rootDir/trainingSet";
if (! -d $trainDir){
print "3 mkdir $trainDir\n" if ($verbose>=3);
mkdir "$trainDir" or die("\nError: Could not create directory $trainDir under "
. cwd() .".\n");
}
if (! -d "seq"){
print "3 mkdir $rootDir/seq\n" if ($verbose>=3);
mkdir "seq" or die("\nError: Could not create directory seq.\n");
}
if (! -d "hints"){
print "3 mkdir $rootDir/hints\n" if ($verbose>=3);
mkdir "hints" or die("\nError: Could not create directory hints.\n");
}
if (! -d "cdna"){
print "3 mkdir $rootDir/cdna\n" if ($verbose>=3);
mkdir "cdna" or die("\nError: Could not create directory cdna.\n");
}
# build subdirectory structure
chdir "$trainDir" or die("\nError: Could not cd to directory $trainDir.\n");
for(("gbrowse","pasa","training")){
mkdir "$_" if (! -d $_);
print "3 mkdir $trainDir/$_\n" if ($verbose>=3);
}
print "2 All necessary directories have been created under $trainDir.\n" if ($verbose>=2);
# build symbolic link for $genome
print "3 cd $rootDir/seq\n" if ($verbose>=3);
chdir "$rootDir/seq";
if (!uptodate([$genome], ["genome.fa"])){
print "3 ln -s $genome genome.fa\n" if($verbose>=3);
system("ln -s $genome genome.fa")==0 or die("\nfailed to execute ln -s $genome genome.fa\n");
}
}
sub DropDataBase {
my $hostname = shift;
my $database = shift;
my $user = shift;
my $pass = shift;
my $dbh = shift;
my $dsn = "DBI:mysql:database=mysql;host=$hostname";
# Constructor and Connection
$dbh = DBI::->connect( $dsn, $user, $pass, { 'RaiseError' => 1, 'AutoCommit' => 1 } ) or die DBI::errstr;
my $sth = $dbh->prepare("SHOW DATABASES;");
$sth->execute();
my $dbexists = 0;
while (my @db = $sth->fetchrow_array()) {
$dbexists |= ($db[0] eq $database); # db is array of length 1 holding dbname
}
if ($dbexists) {
print "1 Dropping MySQL database $database on host $hostname.\n" if ($verbose>=1);
$sth = $dbh->prepare("DROP DATABASE $database;");
$sth->execute();
} else {
print "3 MySQL database $database does not exist on $hostname.\n" if ($verbose>=1);
}
$dbh->disconnect();
}
sub construct_training_set{
print "\n\n1 ####### Step 0 at ".(scalar localtime()).": Creating training set with genes using PASA #######\n\n" if ($verbose>=1);
my $PASAHOME=$ENV{'PASAHOME'};
die("Error: The environment variable PASAHOME is undefined.\n") unless $PASAHOME;
# run seqclean
print "3 cd $trainDir/pasa\n" if ($verbose>=3);
chdir "$trainDir/pasa" or die ("Cannot change directory to $trainDir/pasa\n");
if (!uptodate([$fasta_cdna], ["transcripts.fasta"])){
print "3 ln -fs $fasta_cdna transcripts.fasta\n" if ($verbose>=3);
system("ln -fs $fasta_cdna transcripts.fasta")==0 or die ("failed to execute: ln -fs $fasta_cdna transcripts.fasta\n");
}
if (!uptodate(["transcripts.fasta"], ["transcripts.fasta.clean"])){
count_fasta_entries("$trainDir/pasa/transcripts.fasta");
$perlCmdString="seqclean transcripts.fasta 1>seqclean.stdout 2>seqclean.stderr";
print "2 Running \"$perlCmdString\" ".(scalar localtime())." ..." if ($verbose>=2);
system("$perlCmdString")==0 or die ("failed to execute: $perlCmdString\n");
print " Finished! ".(scalar localtime())."\n" if ($verbose>=2);
} else {
print ("2 Skipping seqclean. Using existing transcripts.fasta.clean.\n") if ($verbose>=2);
}
# set appropriate values in file "alignAssembly.config"
my $pasaDBname = "PASA$species";
$pasaDBname =~ s/\./_/g; # replace "." by "_" in species name for MySQL database because it is not allowed there
if (!uptodate(["$PASAHOME/pasa_conf/pasa.alignAssembly.Template.txt"], ["alignAssembly.config"])){
$cmdString = "cp $PASAHOME/pasa_conf/pasa.alignAssembly.Template.txt alignAssembly.config";
print "3 $cmdString\n" if ($verbose>=3);
system("$cmdString")==0 or die ("failed to execute: $cmdString\n");
print "3 Setting appropriate values in alignAssembly.config\n" if ($verbose>=3);
open(CONFIG, "alignAssembly.config") or die ("Cannot open file alignAssembly.config!\n");
open(TEMP, ">temp") or die("\nCannot open file temp\n");
while(<CONFIG>){
s/MYSQLDB=<__MYSQLDB__>/MYSQLDB=$pasaDBname/; # the database name used in old PASA versions
s/DATABASE=<__DATABASE__>/DATABASE=$pasaDBname/; # the database name used in newer PASA versions
s/^DATABASE=(.*)$/DATABASE=$1\nMYSQLDB=$1/; # the renaming wasn't carried out in all PASA scripts, so provide both versions
s/<__MAX_INTRON_LENGTH__>/$maxIntronLen/;
s/<__MIN_PERCENT_ALIGNED__>/0.8/;
s/<__MIN_AVG_PER_ID__>/0.9/;
print TEMP;
}
close(CONFIG);
close(TEMP);
$cmdString="rm alignAssembly.config; mv temp alignAssembly.config; chmod a+x alignAssembly.config";
print "3 $cmdString\n" if ($verbose>=3);
system("$cmdString")==0 or die ("failed to execute: $cmdString\n");
print "3 Adjusted alignAssembly.config\n" if ($verbose>=3);
} else {
print ("2 Using existing alignAssembly.config.\n") if ($verbose>=3);
}
# executing the Alignment Assembly
if (!uptodate([$genome_clean, "alignAssembly.config", "transcripts.fasta", "transcripts.fasta.clean"],
["$pasaDBname.assemblies.fasta.transdecoder.genome.gff3", "pasa_asmbls_to_training_set.stdout"])){
$cmdString="ln -fs $genome_clean genome.fasta";
print "3 $cmdString\n" if ($verbose>=3);
system("$cmdString")==0 or die("\nfailed to execute $cmdString\n");
my $gmapoption = "blat";
$gmapoption = "gmap" if ($useGMAPforPASA);
print "3 Reading MySQL variables from $PASAHOME/pasa_conf/\n" if ($verbose>=3);
open(my $config_fh, "<", "$PASAHOME/pasa_conf/conf.txt") or die("\nCould not open $PASAHOME/pasa_conf/conf.txt!\n");
my $MYSQLSERVER;
my $MYSQL_RO_USER;
my $MYSQL_RO_PASSWORD;
my $MYSQL_RW_USER;
my $MYSQL_RW_PASSWORD;
while(my $line = <$config_fh>){
next if ($line =~ /^\s*#/); # discard comments
$MYSQLSERVER=$1 if ($line =~ /MYSQLSERVER=(.*)/);
$MYSQL_RO_USER=$1 if ($line =~ /MYSQL_RO_USER=(.*)/);
$MYSQL_RO_PASSWORD=$1 if ($line =~ /MYSQL_RO_PASSWORD=(.*)/);
$MYSQL_RW_USER=$1 if ($line =~ /MYSQL_RW_USER=(.*)/);
$MYSQL_RW_PASSWORD=$1 if ($line =~ /MYSQL_RW_PASSWORD=(.*)/);
}
close($config_fh);
print "0 WARNING: MYSQL_RO_PASSWORD is empty!\n" if (! $MYSQL_RO_PASSWORD);
my $dbh;
if ($useexisting) {
&DropDataBase("$MYSQLSERVER","$pasaDBname","$MYSQL_RW_USER","$MYSQL_RW_PASSWORD",\$dbh);
}
if (! -e "$PASAHOME/Launch_PASA_pipeline.pl"){
die("Error: Script Launch_PASA_pipeline.pl not found. Ensure that this script exists in PASAHOME folder: $PASAHOME.\n");
}
$perlCmdString = "perl $PASAHOME/Launch_PASA_pipeline.pl "
."-c alignAssembly.config -C -R -g $genome_clean "
."-t transcripts.fasta.clean -T -u transcripts.fasta --ALIGNERS $gmapoption --CPU $cpus "
."1>Launch_PASA_pipeline.stdout 2>Launch_PASA_pipeline.stderr";
my $abortString;
$abortString = "\nFailed to execute, possible reasons could be:\n";
$abortString.= "1. Fasta headers in cDNA or genome file were not unique";
$abortString.= " (the sequence name up to the first space).\n";
$abortString.= "2. Fasta headers in cDNA file were too long";
$abortString.= " (max 90 characters)(the sequence name up to the first space).\n";
$abortString.= "3. Fasta headers in cDNA file contains square brackets, commas or other non-letter or non-number characters.";
$abortString.= " (in sequence name up to the first space).\n";
if (!$webaugustus) {
$abortString.= "4. There is already a database named \"$pasaDBname\" on your mysql host.\n";
$abortString.= "5. The software \"slclust\" is not installed correctly, try to install it";
$abortString.= " again (see the details in the PASA documentation).\n";
$abortString.= "Inspect $trainDir/pasa/Launch_PASA_pipeline.stderr for PASA error messages.\n";
}
print "2 Executing the Alignment Assembly: \"$perlCmdString\" ".(scalar localtime())." ..." if ($verbose>=2);
system("$perlCmdString")==0 or die ("$abortString");
print " Finished ".(scalar localtime())."\n" if ($verbose>=2);
$perlCmdString="perl $PASAHOME/scripts/pasa_asmbls_to_training_set.dbi "
."--pasa_transcripts_fasta $pasaDBname.assemblies.fasta "
."--pasa_transcripts_gff3 $pasaDBname.pasa_assemblies.gff3 "
."1>pasa_asmbls_to_training_set.stdout 2>pasa_asmbls_to_training_set.stderr";
print "2 Running \"$perlCmdString\" ".(scalar localtime())." ..." if ($verbose>=2);
if (system("$perlCmdString") != 0) {
# check if it is an error like here: https://github.com/TransDecoder/TransDecoder/issues/71 and try to circumvent it
if (! -e "pasa_asmbls_to_training_set.stderr") { # check if error file exists
print "\n2 file pasa_asmbls_to_training_set.stderr doesn't exists.\n" if ($verbose>=2);
die (" failed to execute: $perlCmdString\n");
}
open CHK_ARRAY, "pasa_asmbls_to_training_set.stderr"; # check if a TransDecoder.Predict error occured
my @chk_array = <CHK_ARRAY>;
close CHK_ARRAY;
if (grep(/^Error.*TransDecoder\.Predict.*/,@chk_array) eq 0) {
print "\n2 This is not a TransDecoder.Predict Error\n" if ($verbose>=2);
die (" failed to execute: $perlCmdString\n");
}
print "\n2 failed to execute: $perlCmdString\n" if ($verbose>=2);
print "2 Try pasa asmbls to training set without refinement - see https://github.com/TransDecoder/TransDecoder/issues/71\n" if ($verbose>=2);
if (! -e "$PASAHOME/scripts/pasa_asmbls_to_training_set_no_refine_starts.dbi") {
my $sedCmdString = "sed 's#\\(.*TransDecoder\\.Predict.*\\)# \$transdecoder_params \\.= \" --no_refine_starts \";\\n\\1#g' $PASAHOME/scripts/pasa_asmbls_to_training_set.dbi > $PASAHOME/scripts/pasa_asmbls_to_training_set_no_refine_starts.dbi";
print "2 Create asmbl script without refinement: $sedCmdString\n" if ($verbose>=2);
system($sedCmdString);
if (! -e "$PASAHOME/scripts/pasa_asmbls_to_training_set_no_refine_starts.dbi") {
print "2 Could not create script \"$PASAHOME/scripts/pasa_asmbls_to_training_set_no_refine_starts.dbi\"\n" if ($verbose>=2);
die (" failed to execute: $perlCmdString\n");
}
}
$perlCmdString="perl $PASAHOME/scripts/pasa_asmbls_to_training_set_no_refine_starts.dbi "
."--pasa_transcripts_fasta $pasaDBname.assemblies.fasta "
."--pasa_transcripts_gff3 $pasaDBname.pasa_assemblies.gff3 "
."1>pasa_asmbls_to_training_set_no_refine_starts.stdout 2>pasa_asmbls_to_training_set_no_refine_starts.stderr";
print "2 Running \"$perlCmdString\" ".(scalar localtime())." ..." if ($verbose>=2);
system("$perlCmdString")==0 or die ("failed to execute: $perlCmdString\n");
}
print " Finished ".(scalar localtime())."\n" if ($verbose>=2);
print ("2 Cleaning up after PASA ...\n") if ($verbose>=2);
my @filesToDelete=("output.assembly_building.out" ,
"output.tophits" ,
"output.tophits.btab" ,
"blat_validations" ,
"BLAT_DIR" ,
"output.alignment_assemblies.out" ,
"output.subclusters.out");
foreach my $file (@filesToDelete) {
$perlCmdString="rm -rf $file";
print "3 Deleting $file\n" if ($verbose>=3);
system("$perlCmdString");
}
#dropping pasa database
&DropDataBase("$MYSQLSERVER","$pasaDBname","$MYSQL_RW_USER","$MYSQL_RW_PASSWORD",\$dbh);
} else {
print ("2 Skipping PASA training set creation. Using existing $pasaDBname.assemblies.fasta.transdecoder.genome.gff3.\n") if ($verbose>=2);
}
# find complete genes in candidate training file
if (!uptodate(["$pasaDBname.assemblies.fasta.transdecoder.genome.gff3"], ["trainingSetComplete.gff"])){
print "3 cd ../training\n" if ($verbose>=3);
chdir "../training" or die ("Could not change directory to training!\n");
$cmdString = "grep complete ../pasa/$pasaDBname.assemblies.fasta.transdecoder.cds | perl -pe ".'\'s/>(\S+).*/$1\$/\' | perl -pe \'s#\\.#\\\\.#g\' 1> pasa.complete.lst';
# lines in file pasa.complete.lst are later used as regex in grep - so all metacharachters have to be escaped (currently only for done for dots as PASA uses no other metacharachters)
print "3 $cmdString\n" if ($verbose>=3);
system("$cmdString")==0 or die("\nfailed to execute $cmdString\n");
if (! -e "pasa.complete.lst" || -z "pasa.complete.lst"){
die ("PASA has not constructed any complete training gene. Training aborted because of insufficient data.\n");
}
# $cmdString="grep -f pasa.complete.lst ../pasa/$pasaDBname.assemblies.fasta.transdecoder.genome.gff3 >trainingSetComplete.temp.gff";
# replaced by this much faster code:
$cmdString="split -l 100 pasa.complete.lst pasa.complete.lst.split. ;"
."for FILE in pasa.complete.lst.split.* ; do grep -f \"\$FILE\" ../pasa/$pasaDBname.assemblies.fasta.transdecoder.genome.gff3 >> trainingSetComplete.temp.gff; done ; "
."rm -f pasa.complete.lst.split.*";
print "2 Running \"$cmdString\" ".(scalar localtime())." ..." if ($verbose>=2);
system("$cmdString")==0 or die("\nfailed to execute $cmdString\n");
print " Finished! ".(scalar localtime())."\n" if ($verbose>=2);
# sort trainingSetComplete.temp.gff for gff2gbSmallDNA.pl later
$cmdString='cat trainingSetComplete.temp.gff | perl -pe \'s/\t\S*(asmbl_\d+).*/\t$1/\' | sort '
.'-n -k 4 | sort -s -k 9 | sort -s -k 1,1 > trainingSetComplete.gff';
print "2 Running \"$cmdString\" ".(scalar localtime())." ..." if ($verbose >=2);
system("$cmdString")==0 or die("\nfailed to execute $cmdString\n");
print " Finished! ".(scalar localtime())."\n" if ($verbose >=2);
}
# calculate the average gene length
my $file_fh;
open($file_fh, "<", "../pasa/$pasaDBname.assemblies.fasta.transdecoder.genome.gff3") or die("\nCould not open ../pasa/$pasaDBname.assemblies.fasta.transdecoder.genome.gff3\n");
my $sum=0;
my $n=0;
while(my $line = <$file_fh>){
if($line =~ /\tgene\t/){
my @fields = split(/\t/, $line);
my $len=$fields[4]-$fields[3]+1;
$sum+=$len;
$n++;
}
}
close($file_fh);
print "1 Average gene length in the training set is " . sprintf ("%.2f", ($sum/$n)) . "\n" if ($verbose >=1);
# set flanking DNA
$flanking_DNA = int($sum/$n);
$flanking_DNA = 10000 if ($flanking_DNA > 10000);
$flanking_DNA = 1000 if ($flanking_DNA < 1000);
print "2 The length of flanking DNA is set as $flanking_DNA accordingly.\n" if ($verbose>=2);
# convert file format from gff to gb
$string=find("gff2gbSmallDNA.pl");
print "3 Found script $string.\n" if ($verbose>=3);
$perlCmdString="perl $string trainingSetComplete.gff $genome_clean $flanking_DNA "
."trainingSetComplete.gb 1>gff2gbSmallDNA.stdout 2>gff2gbSmallDNA.stderr";
print "3 $perlCmdString\n" if ($verbose>=3);
system("$perlCmdString")==0 or die ("failed to execute: $perlCmdString\n");
# let etraining find prolematic genbank entries
# count the number of entries in trainingSetComplete.gb
my $num_TSC=`grep -c ^LOCUS trainingSetComplete.gb`;
$num_TSC*=1;
print "1 The training set trainingSetComplete.gb contains $num_TSC entries\n" if ($verbose>=1);
# set "stopCodonExcludedFromCDS" to true
print "2 Now trying to find out whether the CDS in the training set contain or exclude the stop codon.\n" if ($verbose >=2);
my $genericPath="$AUGUSTUS_CONFIG_PATH/species/generic";
my $genericPathTrain="$AUGUSTUS_CONFIG_PATH/species/${species}_generic";
$cmdString = "cp -r $genericPath $genericPathTrain";
print "3 $cmdString\n" if ($verbose>=3);
system("$cmdString")==0 or die ("failed to execute: $cmdString\n");
chdir "$genericPathTrain" or die ("Could not change directory to $genericPathTrain\n");
print "3 cd $genericPathTrain\n" if ($verbose>=3);
$cmdString='cat generic_parameters.cfg | perl -pe \'s/(stopCodonExcludedFromCDS ).*/$1true /\' > '."${species}_generic_parameters.cfg";
print "3 $cmdString\n" if ($verbose>=3);
system("$cmdString")==0 or die ("failed to execute: $cmdString\n");
print "3 Set value of \"stopCodonExcludedFromCDS\" in ${species}_generic_parameters.cfg to \"true\"\n" if ($verbose>=3);
# first try with etraining
# print "3 mv $trainDir/pasa/trainingSetComplete.gb $trainDir/training/trainingSetComplete.gb\n";
# $cmdString="mv $trainDir/pasa/trainingSetComplete.gb $trainDir/training/trainingSetComplete.gb";
# system("$cmdString")==0 or die("\nfailed to move trainingSetComplete.gb to $trainDir/training\n");
print "3 cd $trainDir/training\n" if ($verbose>=3);
chdir "$trainDir/training" or die ("Could not change directory to $trainDir/training\n");
$cmdString="etraining --species=${species}_generic trainingSetComplete.gb 1>train.out 2>train.err";
print "3 Running \"$cmdString\" ".(scalar localtime())." ... " if ($verbose>=3);
system("$cmdString")==0 or die("\nfailed to execute: $cmdString\n");
print " Finished! ".(scalar localtime())."\n" if ($verbose>=3);
print "3 train.out and train.err have been made under $trainDir/training.\n" if ($verbose>=3);
# set "stopCodonExcludedFromCDS" to false and run etraining again if necessary
my $err_stopCodonExcludedFromCDS=`grep -c "exon doesn't end in stop codon" train.err`;
my $err_rate=$err_stopCodonExcludedFromCDS/$num_TSC;
print "3 Error rate caused by \"exon doesn't end in stop codon\" is $err_rate\n" if ($verbose>=3);
if($err_rate>=0.5){
print "3 The appropriate value for \"stopCodonExcludedFromCDS\" seems to be \"false\".\n" if ($verbose>=3);
chdir "$genericPathTrain" or die ("Can not chdir to $genericPathTrain.\n");
system('cat generic_parameters.cfg | perl -pe \'s/(stopCodonExcludedFromCDS ).*/$1false /\' > '."${species}_generic_parameters.cfg")==0 or die ("failed to execute: $!\n");
print "3 Set value of \"stopCodonExcludedFromCDS\" in ${species}_generic_parameters.cfg to \"false\"\n" if ($verbose>=3);
print "3 Try etraining again: \"etraining --species=${species}_generic training.gb.train >train.out \" ..." if ($verbose>=3);
chdir "$trainDir/training/" or die ("Can not change directory to $trainDir/training.");
$cmdString="etraining --species=${species}_generic trainingSetComplete.gb 1>train.out 2>train.err";
print "3 Running \"$cmdString\" ".(scalar localtime())."... " if ($verbose>=3);
system("$cmdString")==0 or die("\nfailed to execute: $cmdString\n");
print " Finished! ".(scalar localtime())."\n" if ($verbose>=3);
print "3 train.out and train.err have been made again under $trainDir/training.\n" if ($verbose>=3);
print "2 Stop codons seem to be contained by CDS. Setting stopCodonExcludedFromCDS to false\n" if ($verbose>=2);
}
else{
print "2 Stop codons seem to be exluded from CDS. Setting stopCodonExcludedFromCDS to true\n" if ($verbose>=2);
}
$cmdString = "rm -rf $genericPathTrain";
print "3 $cmdString\n" if ($verbose>=3);
system("$cmdString")==0 or die ("failed to execute: $cmdString\n");
print "1 Now filtering problematic genes from training set...\n" if ($verbose>=1);
# extract badlist
$perlCmdString='cat train.err | perl -ne \'print "$1\n" if /in sequence (\S+):/\' > badlist';
print "3 Running \"$perlCmdString\" ...\n" if ($verbose>=3);
system("$perlCmdString")==0 or die ("failed to execute: $perlCmdString\n");
# check whether only a small fraction of all entries created a problem, if >10%, output a warning
my $bad_num=`wc -l < badlist`;
$bad_num*=1;
print "3 The number of all entries that created a problem is $bad_num\n" if ($verbose>=3);
my $frac=$bad_num/$num_TSC;
if($frac>=0.5){
print "3 WARNING: The fraction of all entries that created a problem is ".($bad_num/$num_TSC)."\n" if ($verbose>=3);
}
# create file training.gb without erroneous genes
$string=find("filterGenes.pl");
print "3 Found script $string.\n" if ($verbose>=3);
$perlCmdString="perl $string badlist trainingSetComplete.gb > training.gb";
print "3 Running \"$perlCmdString\" ".(scalar localtime())." ..." if ($verbose>=3);
system("$perlCmdString")==0 or die("\nfailed to execute: $perlCmdString!\n");
print " Finished! ".(scalar localtime())."\n" if ($verbose>=3);
print "\n1 ####### Finished step 0 at ".(scalar localtime()).": All files are stored in $trainDir #######\n\n" if ($verbose>=1);
}
sub prepare_genome{
# create summary of genome
print "3 cd $rootDir/seq\n" if ($verbose>=3);
chdir "$rootDir/seq" or die ("Could not change directory to ../seq\n");
my $string=find("summarizeACGTcontent.pl");
$perlCmdString="perl $string $rootDir/seq/genome_clean.fa > genome.summary";
print "3 Running \"$perlCmdString\" ".(scalar localtime())." ..." if ($verbose>=3);
system("$perlCmdString")==0 or die("\nfailed to execute: $perlCmdString!\n");
print " Finished! ".(scalar localtime())."\n" if ($verbose>=3);
# create contigs gbrowse file
$cmdString='cat genome.summary | grep "bases." | perl -pe \'s/(\d+)\sbases.\s+(\S*) BASE.*/$2\tassembly\tcontig\t1\t$1\t.\t.\t.\tContig $2/\' > contigs.gff';
print "3 Running \"$cmdString\" ".(scalar localtime())." ..." if ($verbose>=3);
system("$cmdString")==0 or die("\nfailed to execute: $cmdString!\n");
print " Finished! ".(scalar localtime())."\n" if ($verbose>=3);
}
sub alignments_and_hints{
# BLAT cdna files. find blat, pslCDnaFilter minId(???)
print "3 cd $rootDir/cdna\n" if ($verbose>=3);
chdir "$rootDir/cdna" or die ("Could not change directory to $rootDir/cdna\n");
if (!uptodate([$fasta_cdna], ["cdna.fa"])){
system("ln -fs $fasta_cdna cdna.fa")==0 or die ("failed to execute: ln -fs $fasta_cdna cdna.fa");
}
# blat
# maxIntron=5000 to be determined
if (!uptodate(["../seq/genome_clean.fa", "cdna.fa"], ["cdna.psl"])){
print "1 Aligning cDNA to genome with BLAT...\n" if ($verbose>=1);
if ($cpus > 1 && check_command_exists("pblat")) {
$cmdString="pblat -threads=$cpus";
}
else {
$cmdString="blat";
}
$cmdString.=" -noHead -minIdentity=80 -maxIntron=$maxIntronLen ../seq/genome_clean.fa cdna.fa cdna.psl 1>blat.stdout 2>blat.stderr";
print "3 Running \"$cmdString\" ".(scalar localtime())." ..." if ($verbose>=3);
my $abortString = "\nProgram aborted. BLAT threw an error message.\nPossibly \"BLAT\" is not installed or not in your PATH or your genome or cDNA file contained non-unique fasta headers.\n";
system("$cmdString")==0 or die("$abortString");
print "Finished! ".(scalar localtime())."\n" if ($verbose>=3);
if($verbose>=2){
open(BLAT, "blat.stdout") or die ("Cannot open blat.stdout!\n");
while(defined (my $i=<BLAT>)){
print '2'." $i";
}
close(BLAT);
}
} else {
print "1 Reusing existing BLAT alignment.\n" if ($verbose>=1);
}
# pslCDnaFilter
$cmdString="pslCDnaFilter -minId=0.9 -localNearBest=0.005 -ignoreNs -bestOverlap "
."cdna.psl cdna.f.psl 1>pslCDnaFilter.stdout 2>pslCDnaFilter.stderr";
print "3 $cmdString\n" if ($verbose>=3);
if (system("$cmdString") != 0) {
print "WARNING: Could not successfully find and run pslCDnaFilter. Please install this program.\n";
print "Will continue anyways with unfiltered alignments. Expect worse results.\n";
system("ln -s cdna.psl cdna.f.psl");
}
# create gbrowse files
$string=find("blat2gbrowse.pl");
print "3 Found script $string.\n" if ($verbose>=3);
$perlCmdString="perl $string --source=CDNA cdna.f.psl cdna.gbrowse";
print "3 Running \"$perlCmdString\" ".(scalar localtime())." ..." if ($verbose>3);
system("$perlCmdString")==0 or die("\nFailed to execute: $perlCmdString!\n");
print " Finished! ".(scalar localtime())."\n" if ($verbose>3);
# create hints
print "1 Creating hints from cDNA alignments ...\n" if ($verbose>=1);
chdir "../hints" or die("\nCould not change directory to ../hints\n");
$string=find("blat2hints.pl");
$perlCmdString="perl $string --in=../cdna/cdna.f.psl --out=hints.E.gff --minintronlen=35 --trunkSS 1>blat2hints.stdout 2>blat2hints.stderr";
print "2 Running \"$perlCmdString\" ".(scalar localtime())." ..." if ($verbose>=2);
system("$perlCmdString")==0 or die("\nfailed to execute: $perlCmdString!\n");
print " Finished! ".(scalar localtime())."\n" if ($verbose>=2);
if ($pasapolyAhints) {
chdir "../trainingSet" or die ("\nCould not change directory to ../\n");
my $pasapolyAfile=checkFile("pasa/output.polyAsites.fasta");
if (defined $pasapolyAfile) {
print "2 Converting $pasapolyAfile into a hintfile\n" if ($verbose>=2);
$string=find("pasapolyA2hints.pl");
$perlCmdString="perl $string $pasapolyAfile > pasa/output.polyAsites.gff";
print "2 Running \"$perlCmdString\" ".(scalar localtime())." ..." if ($verbose>=2);
system("$perlCmdString")==0 or die("\nfailed to execute: $perlCmdString!\n");
print " Finished! ".(scalar localtime())."\n" if ($verbose>=2);
my $pasapolyAhintfile=checkFile("pasa/output.polyAsites.gff");
if (defined $pasapolyAhintfile) {
print "2 Appending PASA-polyA-hint file to the cDNA hint file\n";
$perlCmdString="cat ../hints/hints.E.gff $pasapolyAhintfile > ../hints/hints.E.gff.temp";
print "3 Running $perlCmdString.\n" if ($verbose>=3);
system("$perlCmdString")==0 or die("\nfailed to execute: $perlCmdString!\n");
rename("../hints/hints.E.gff.temp","../hints/hints.E.gff");
}
}
}
chdir $positionWD;
$estali="$rootDir/cdna/cdna.f.psl";
}
####################### train AUGUSTUS without UTR #########################
sub autoTrain_no_utr{
print "\n1 ####### Step 1 at ".(scalar localtime()).": Training AUGUSTUS (no UTR models) #######\n" if ($verbose>=1);
$trainingset = checkFile($trainingset, "training", $usage);
# run autoAugTrain.pl
$perlCmdString="perl $scriptPath/autoAugTrain.pl --cpus=$cpus -t=$trainingset -s=$species $useexistingopt -g=$genome_clean -w=$rootDir $verboseString --opt=$optrounds";
print "\n2 $perlCmdString\n" if ($verbose>=2);
system("$perlCmdString")==0 or die ("failed to execute: $perlCmdString\n");
print "\n1 ####### Finished step 1 at ".(scalar localtime()).": All files are stored in $rootDir/autoAugTrain #######\n" if ($verbose>=1);
}
###################### prepare scripts for AUGUSTUS ######################
sub autoAug_prepareScripts{
my $hints_switch=shift; # for AUGUSTUS with hints
my $utr_switch=shift; # for AUGUSTUS with UTR
if($verbose>=1){
my $string="Preparing scripts for AUGUSTUS";
print "\n\n1 ";
print "####### Step 2 at ".(scalar localtime()).": $string without hints and UTR #######" if (!$hints_switch && !$utr_switch);
print "####### Step 4 at ".(scalar localtime()).": $string with hints, without UTR #######" if ( $hints_switch && !$utr_switch);
print "####### Step 7 at ".(scalar localtime()).": $string with hints and UTR #######" if ( $hints_switch && $utr_switch);
print "\n";
}
$autoAugDir = $autoAugDir_abinitio if (!$hints_switch && !$utr_switch);
$autoAugDir = $autoAugDir_hints if ($hints_switch && !$utr_switch);
$autoAugDir = $autoAugDir_hints_utr if ($hints_switch && $utr_switch);
$autoAugDir = $autoAugDir_utr if (!$hints_switch && $utr_switch);
my $hintsString = "";
my $utrString = "";
$hintsString = "--hints=$hints" if ($hints_switch);
$utrString = "--utr" if ($utr_switch);
$perlCmdString = "perl $scriptPath/autoAugPred.pl -g=$genome_clean --species=$species -w=$rootDir $utrString " .
"$verboseString $hintsString $useexistingopt";
$perlCmdString .= " --singleCPU" if ($singleCPU);
$perlCmdString .= " --cpus=$cpus";
print "2 $perlCmdString\n" if ($verbose>=2);
system("$perlCmdString")==0 or die("\nfailed to execute $perlCmdString\n");
my $stepNum;
$stepNum=2 if (!$hints_switch && !$utr_switch);
$stepNum=4 if ( $hints_switch && !$utr_switch);
$stepNum=7 if ( $hints_switch && $utr_switch);
print "\n1 ####### Finished step $stepNum at ".(scalar localtime()).": The scripts are stored in $autoAugDir/shells #######\n" if ($verbose>=1);
my $estString;
$estString = "--estali=your.cdna.psl" if ($index==1 && !defined($estali));
$estString = "--estali=$estali" if ($index==1 && $pasa);
my $pasaString ="--pasa" if ($pasa);
# show prompt
my $sum=$index+1;
if (!$singleCPU) {
print "\n\nWhen above jobs are finished, continue by running the command\n";
print "autoAug.pl --species=$species --genome=$genome_clean --useexisting "
. "--hints=$hints $estString $verboseString $pasaString --index=$sum\n\n";
}
}
########################### deal with results of AUGUSTUS ############################
sub autoAug_continue{
my $hints_switch=shift; # for AUGUSTUS with hints
my $utr_switch=shift; # for AUGUSTUS with UTR
if($verbose>=1){
my $string="Continue to predict genome structure with AUGUSTUS";
print "\n1 ";
print "####### Step 3 at ".(scalar localtime()).": $string without hints, no UTR #######" if (!$hints_switch && !$utr_switch);
print "####### Step 5 at ".(scalar localtime()).": $string with hints, no UTR #######" if ( $hints_switch && !$utr_switch);
print "####### Step 8 at ".(scalar localtime()).": $string with hints, containing UTR #######" if ( $hints_switch && $utr_switch);
print "\n";
}
my $hintsString = "";
my $utrString = "";
$hintsString = "--hints=$hints" if ($hints_switch);
$utrString = " --utr" if ($utr_switch);
$estali="$rootDir/cdna/cdna.f.psl" if ($pasa);
my $mainDir;
$mainDir = "$autoAugDir_abinitio" if ($index==1);
$mainDir = "$autoAugDir_hints" if ($index==2);
$mainDir = "$autoAugDir_utr" if ($index==3);
$shellDir = "$mainDir/shells";
$perlCmdString = "perl $scriptPath/autoAugPred.pl --species=$species --genome=$rootDir/seq/genome_clean.fa --continue --workingdir=$rootDir $verboseString $hintsString $utrString $useexistingopt";
$perlCmdString .= " --singleCPU" if ($singleCPU);
$perlCmdString .= " --cpus=$cpus";
my $abortString = "\nError executing\n$perlCmdString\n";
print "3 $perlCmdString\n" if ($verbose >= 3);
chdir $positionWD;
system("$perlCmdString")==0 or die ("$abortString");
$aug = "$shellDir/../predictions/augustus.gff" if($index==2);
my $stepNum;
$stepNum=3 if (!$hints_switch && !$utr_switch);
$stepNum=5 if ( $hints_switch && !$utr_switch);
$stepNum=8 if ( $hints_switch && $utr_switch);
print "\n1 ####### Finished step $stepNum at ".(scalar localtime()).": All files are stored in $mainDir #######\n" if ($verbose>=1);
}
################## run AUGUSTUS completely automatically ##################
sub autoAug_noninteractive{
my $hints_switch=shift; # for AUGUSTUS with hints
my $utr_switch=shift; # for AUGUSTUS with UTR
my $hintsString="";
my $utrString="";
$hintsString="--hints=$hints" if ($hints_switch);
$utrString="--utr" if ($utr_switch);
my $string;
$string="ab initio (without hints and utr)" if(!$hints_switch && !$utr_switch);
$string="with hints" if($hints_switch && !$utr_switch);
$string="with hints and utr" if($hints_switch && $utr_switch);
print "\n\n1 ####### Now predicting genes $string in the whole sequence...#######\n" if ($verbose>=1);
$perlCmdString="perl $scriptPath/autoAugPred.pl -g=$genome_clean --species=$species $hintsString $utrString --noninteractive --cname=$cname -w=$rootDir $verboseString $useexistingopt";
$perlCmdString .= " --cpus=$cpus";
print "2 \"$perlCmdString\" ...\n" if ($verbose>1);
system("$perlCmdString")==0 or die ("failed to execute: $perlCmdString!\n");
print "\n####### Finished predicting genes $string #######\n";
}
################# training AUGUSTUS with UTR ####################
sub autoTrain_with_utr{
my $stepNum;
$stepNum=6 if (!$noninteractive);
$stepNum=8 if ( $noninteractive);
print "\n1 ####### Step $stepNum at ".(scalar localtime()).": Training AUGUSTUS with UTR #######\n" if ($verbose>=1);
my $augString;
$augString="--aug=$autoAugDir_hints/predictions/augustus.gff";
if(-d $rootDir){
$perlCmdString="perl $scriptPath/autoAugTrain.pl --cpus=$cpus -g=$genome_clean -s=$species --utr -e=$estali $augString -w=$rootDir $verboseString --opt=$optrounds --useexisting";
}else{
$perlCmdString="perl $scriptPath/autoAugTrain.pl --cpus=$cpus -g=$genome_clean -s=$species --utr -e=$estali $augString -w=$rootDir $verboseString --opt=$optrounds $useexistingopt";
}
print "\n2 $perlCmdString\n" if ($verbose>=2);
system("$perlCmdString")==0 or die ("failed to execute: $perlCmdString\n");
print "\n1 ####### Finished step $stepNum at ".(scalar localtime()).": All files are stored in $rootDir/training/utr #######\n" if ($verbose>=1);
}
########################### collect all important files in one directory #######################
sub collect{
my $stepNum;
$stepNum=7 if (!$noninteractive);
$stepNum=9 if ( $noninteractive);
print "\n1 ####### Step $stepNum at ".(scalar localtime()).": Collecting important files #######\n" if ($verbose>=1);
my $summary_dir = "$rootDir/results";
if (!$useexisting && -d $summary_dir){
print STDERR "Directory $summary_dir already exists. Use --useexisting or move it.\n";
exit(1);
}
system("mkdir -p $summary_dir")==0 or die("\nCould not create directory $summary_dir.\n");
# build subdir structure
chdir "$summary_dir" or die("\nError: cannot change directory to $summary_dir!\n");
for(("gbrowse", "hints","predictions","seq", "genes", "config")){mkdir "$_" if (! -d $_);}
print "3 All necessary directories have been created under $summary_dir.\n" if ($verbose>=3);
# collect gbrowse files
print "3 cd gbrowse\n" if ($verbose>=3);
chdir "gbrowse";
system ("ln -sf $genome genome.fa") if (!uptodate([$genome], ["genome.fa"]));
$cmdString = "cp $rootDir/seq/contigs.gff contigs.gff";
system("$cmdString")==0 or die("\nfailed to execute: $cmdString\n");
if (-f "$rootDir/cdna/cdna.gbrowse"){
$cmdString = "ln -sf $rootDir/cdna/cdna.gbrowse cdna.gbrowse";
system("$cmdString")==0 or die("\nfailed to execute: $cmdString\n");
}
if (defined($fasta_cdna) && -f $fasta_cdna){
$cmdString = "ln -sf $fasta_cdna cdna.fa";
system("$cmdString")==0 or die("\nfailed to execute: $cmdString\n");
}
foreach((["$autoAugDir_abinitio/gbrowse/augustus.abinitio.gbrowse", "augustus.abinitio.gbrowse"],
["$autoAugDir_hints/gbrowse/augustus.E.gbrowse", "augustus.E.gbrowse"],
["$autoAugDir_utr/gbrowse/augustus.UTR.gbrowse", "augustus.UTR.gbrowse"],
["$rootDir/autoAugTrain/gbrowse/utr.train.gbrowse", "utr.train.gbrowse"])){
if (-f $_->[0]){
$cmdString = "cp $_->[0] $_->[1]";
print "3 $cmdString\n" if ($verbose>=3);
system("$cmdString")==0 or die ("Could not execute $cmdString");
}
}
# collect the hints file
print "3 cd ../hints\n" if ($verbose>=3);
chdir "../hints";
if($pasa){
$cmdString="ln -sf $rootDir/hints/hints.E.gff hints.E.gff";
system("$cmdString")==0 or die("\nfailed to execute: $cmdString\n");
print "3 $cmdString\n" if ($verbose>=3);
} elsif ($havehints) {
$cmdString="ln -sf $hints hints.E.gff";
system("$cmdString")==0 or die("\nfailed to execute: $cmdString\n");
print "3 $cmdString\n" if ($verbose>=3);
}
# collect prediction files
print "3 cd ../predictions\n" if ($verbose >= 3);
chdir "../predictions";
foreach((["$autoAugDir_abinitio/predictions/augustus.gff", "augustus.abinitio.gff"],
["$autoAugDir_abinitio/predictions/augustus.aa", "augustus.abinitio.aa"],
["$autoAugDir_hints/predictions/augustus.gff", "augustus.hints.gff"],
["$autoAugDir_hints/predictions/augustus.aa", "augustus.hints.aa"],
["$autoAugDir_utr/predictions/augustus.gff", "augustus.utr.hints.gff"],
["$autoAugDir_utr/predictions/augustus.aa", "augustus.utr.hints.aa"])){
if (-f $_->[0]){
$cmdString = "cp $_->[0] $_->[1]";
print "3 $cmdString\n" if ($verbose>=3);
system("$cmdString")==0 or die ("Could not execute $cmdString");
}
}
# make a link for genome.fa
chdir "../seq";
$cmdString="ln -s $genome genome.fa" if (!uptodate([$genome], ["genome.fa"]));
system("$cmdString")==0 or die("\nfailed to execute: $cmdString\n");
print "3 $cmdString\n" if ($verbose>=3);
# collect config files
my $configDir="$AUGUSTUS_CONFIG_PATH/species/$species";
print '3 cd ../config'."\n" if ($verbose>=3);
chdir "../config";
if(-e "*.orig*"){
$cmdString = "cp $configDir/* . ; rm *.orig*;";
print "3 $cmdString\n" if ($verbose>=3);
system("$cmdString")==0 or die ("failed to execute: $cmdString\n");
}
# collect files with gb format
print "3 cd ../genes\n" if ($verbose>=3);
chdir "../genes";
foreach(("find $rootDir/autoAugTrain -name \"*.gb\" | grep -v tmp_opt_ > tempgbn",
"find $rootDir/autoAugTrain -name \"*.gb.*\" | grep -v .gb.lst >> tempgbn")){
system("$_")==0 or die("\nfailed to execute: $!\n");
print "3 $_\n" if ($verbose>=3);
}
open(TP, "tempgbn") or die ("Cannot open the file \"tempgbn\"!\n");
while(defined (my $i=<TP>)){
$i =~ /^(\/.*\/)(.*)\n$/;
if(-f "$2"){
$cmdString="ln -fs $1$2 $2"."_another";
system("$cmdString")==0 or die("\nfailed to execute: $cmdString\n");
print "3 $cmdString\n" if ($verbose>=3);
}
else{
$cmdString="ln -s $1$2 $2";
system("$cmdString")==0 or die("\nfailed to execute: $cmdString\n");
print "3 $cmdString\n" if ($verbose>=3);
}
}
print "3 rm tempgbn\n" if ($verbose>=3);
system("rm tempgbn")==0 or die die("failed to execute: $!\n");
print "\n1 ####### Finished step $stepNum at ".(scalar localtime()).": All files are stored in $summary_dir #######\n" if ($verbose>=1);
print "\n1 ####### Done autoAug.pl #######\n" if ($verbose>=1);
print "" . (scalar localtime()) . "\n" if ($verbose>=1);
}
# check upfront whether any common problems will occur later. So the user doesn't have to wait a long time to
# find out that some programs are not installed.
# TODO: put more checks in here
sub check_upfront{
print "2 checking for installed programs ... " if ($verbose>=2);
die("Error: The environment variable AUGUSTUS_CONFIG_PATH is not defined.\n") unless $ENV{'AUGUSTUS_CONFIG_PATH'};
die("Error: The environment variable PASAHOME is undefined.\n") if ($pasa && !defined($ENV{'PASAHOME'}));
if (system("which augustus > /dev/null") != 0){
print STDERR "Error: augustus not installed. Please install first.\n";
exit (1);
}
if (defined($fasta_cdna)){
if (system("which blat > /dev/null") != 0){
print STDERR "Error: blat not installed. Please install first.\n";
exit (1);
}
}
if ($useGMAPforPASA && $pasa){
if (system("which gmap > /dev/null") != 0){
print STDERR "Error: 'gmap' not installed. Install GMAP first or use BLAT.\n";
exit(1);
}
}
if ($pasa){
if (system("which seqclean > /dev/null") != 0){
print STDERR "Error: seqclean script not installed. Install seqclean first or if it is available in a PASAHOME subdirectory add this to PATH.\n";
exit(1);
}
}
find("gff2gbSmallDNA.pl");
find("summarizeACGTcontent.pl");
print "ok.\n" if ($verbose>=2);
}
sub count_fasta_entries{
my $fastaFile=shift;
my $fc = 0;
open(FASTA, "<", $fastaFile) or die("Could not open fasta file $fastaFile!\n");
while(<FASTA>){
if(m/^>/){$fc++;}
}
close(FASTA) or die("Could not close fasta file $fastaFile!\n");
if($fc<=100){print STDERR "WARNING: Fasta file $fastaFile contained less than 100 entries. At least 100 genes are required for training AUGUSTUS. It is impossible to generate this number of genes with the given data! If PASA will be unable to generate at least one gene structure, the pipeline will die, later!\n";}
}
sub check_command_exists {
my $command=shift;
my $status = system("which $command > /dev/null");
return !$status;
}
|