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
|
#!/usr/bin/env perl
use strict;
use warnings;
use threads;
no strict qw(subs refs);
use lib ("/usr/lib/trinityrnaseq/PerlLib");
use File::Basename;
use Cwd;
use Carp;
use Getopt::Long qw(:config no_ignore_case pass_through);
use Fastq_reader;
use Fasta_reader;
use threads;
use Data::Dumper;
use COMMON;
use DB_File;
$ENV{PATH} = "/usr/lib/trinityrnaseq/trinity-plugins/BIN:$ENV{PATH}";
open (STDERR, ">&STDOUT"); ## capturing stderr and stdout in a single stdout stream
my $SYMLINK = ($ENV{NO_SYMLINK}) ? "cp" : "ln -sf";
## Jellyfish
my $max_memory;
# Note: For the Trinity logo below the backslashes are quoted in order to keep
# them from quoting the character than follows them. "\\" keeps "\ " from occuring.
my $output_directory = cwd();
my $help_flag;
my $seqType;
my @left_files;
my @right_files;
my $left_list_file;
my $right_list_file;
my @single_files;
my $SS_lib_type;
my $CPU = 2;
my $MIN_KMER_COV_CONST = 2; ## DO NOT CHANGE
my $max_cov;
my $pairs_together_flag = 0;
my $max_CV = 10000; # effectively turning this off
my $KMER_SIZE = 25;
my $MIN_COV = 0;
my $__devel_report_kmer_cov_stats = 0;
my $PARALLEL_STATS = 0;
my $JELLY_S;
my $NO_SEQTK = 0;
my $usage = <<_EOUSAGE_;
###############################################################################
#
# Required:
#
# --seqType <string> :type of reads: ( 'fq' or 'fa')
# --JM <string> :(Jellyfish Memory) number of GB of system memory to use for
# k-mer counting by jellyfish (eg. 10G) *include the 'G' char
#
#
# --max_cov <int> :targeted maximum coverage for reads.
#
#
# If paired reads:
# --left <string> :left reads (if specifying multiple files, list them as comma-delimited. eg. leftA.fq,leftB.fq,...)
# --right <string> :right reads
#
# Or, if unpaired reads:
# --single <string> :single reads
#
# Or, if you have read collections in different files you can use 'list' files, where each line in a list
# file is the full path to an input file. This saves you the time of combining them just so you can pass
# a single file for each direction.
# --left_list <string> :left reads, one file path per line
# --right_list <string> :right reads, one file path per line
#
####################################
## Misc: #########################
#
# --pairs_together :process paired reads by averaging stats between pairs and retaining linking info.
#
# --SS_lib_type <string> :Strand-specific RNA-Seq read orientation.
# if paired: RF or FR,
# if single: F or R. (dUTP method = RF)
# See web documentation.
# --output <string> :name of directory for output (will be
# created if it doesn't already exist)
# default( "${output_directory}" )
#
# --CPU <int> :number of threads to use (default: = $CPU)
# --PARALLEL_STATS :generate read stats in parallel for paired reads
#
# --KMER_SIZE <int> :default $KMER_SIZE
#
# --max_CV <int> :maximum coeff of var (default: $max_CV)
#
# --min_cov <int> :minimum kmer coverage for a read to be retained (default: $MIN_COV)
#
# --no_cleanup :leave intermediate files
# --tmp_dir_name <string> default("tmp_normalized_reads");
#
###############################################################################
_EOUSAGE_
;
my $ROOTDIR = "/usr/lib/trinityrnaseq/";
my $UTILDIR = "$ROOTDIR/util/support_scripts/";
my $INCHWORM_DIR = "/usr";
unless (@ARGV) {
die "$usage\n";
}
my $NO_CLEANUP = 0;
my $TMP_DIR_NAME = "tmp_normalized_reads";
&GetOptions(
'h|help' => \$help_flag,
## general opts
"seqType=s" => \$seqType,
"left=s{,}" => \@left_files,
"right=s{,}" => \@right_files,
"single=s{,}" => \@single_files,
"left_list=s" => \$left_list_file,
"right_list=s" => \$right_list_file,
"SS_lib_type=s" => \$SS_lib_type,
"max_cov=i" => \$max_cov,
"min_cov=i" => \$MIN_COV,
"output=s" => \$output_directory,
# Jellyfish
'JM=s' => \$max_memory, # in GB
# misc
'KMER_SIZE=i' => \$KMER_SIZE,
'CPU=i' => \$CPU,
'PARALLEL_STATS' => \$PARALLEL_STATS,
'kmer_size=i' => \$KMER_SIZE,
'max_CV=i' => \$max_CV,
'pairs_together' => \$pairs_together_flag,
'no_cleanup' => \$NO_CLEANUP,
#devel
'__devel_report_kmer_cov_stats' => \$__devel_report_kmer_cov_stats,
'jelly_s=i' => \$JELLY_S,
'tmp_dir_name=s' => \$TMP_DIR_NAME,
"NO_SEQTK" => \$NO_SEQTK,
);
if ($help_flag) {
die "$usage\n";
}
if (@ARGV) {
die "Error, do not understand options: @ARGV\n";
}
unless ($seqType =~ /^(fq|fa)$/) {
die "Error, set --seqType to 'fq' or 'fa'";
}
unless ($max_memory && $max_memory =~ /^\d+G/) {
die "Error, must set --JM to number of G of RAM (ie. 10G) ";
}
if ($SS_lib_type) {
unless ($SS_lib_type =~ /^(R|F|RF|FR)$/) {
die "Error, unrecognized SS_lib_type value of $SS_lib_type. Should be: F, R, RF, or FR\n";
}
## note, if single-end reads and strand-specific, just treat it as F and don't bother revcomplementing here (waste of time)
if ($SS_lib_type eq 'R') {
$SS_lib_type = 'F';
}
}
if ($left_list_file) {
@left_files = &read_list_file($left_list_file);
}
if ($right_list_file) {
@right_files = &read_list_file($right_list_file);
}
unless (@single_files || (@left_files && @right_files)) {
die "Error, need either options 'left' and 'right' or option 'single'\n";
}
if (@left_files) {
@left_files = split(",", join(",", @left_files));
}
if (@right_files) {
@right_files = split(",", join(",", @right_files));
}
if (@single_files) {
@single_files = split(",", join(",", @single_files));
}
unless ($max_cov && $max_cov >= 2) {
die "Error, need to set --max_cov at least 2";
}
## keep the original 'xG' format string for the --JM option, then calculate the numerical value for max_memory
my $JM_string = $max_memory; ## this one is used in the Chrysalis exec string
my $sort_mem;
if ($max_memory) {
$max_memory =~ /^([\d\.]+)G$/ or die "Error, cannot parse max_memory value of $max_memory. Set it to 'xG' where x is a numerical value\n";
$max_memory = $1;
# prep the sort memory usage
$sort_mem = $max_memory;
if ($PARALLEL_STATS) {
$sort_mem = int($sort_mem/2);
unless ($sort_mem > 1) {
$sort_mem = 1;
}
}
$sort_mem .= "G";
$max_memory *= 1024**3; # convert to from gig to bytes
}
else {
die "Error, must specify max memory for jellyfish to use, eg. --JM 10G \n";
}
if ($pairs_together_flag && ! ( @left_files && @right_files) ) {
die "Error, if setting --pairs_together, must use the --left and --right parameters.";
}
my $sort_exec = &COMMON::get_sort_exec($CPU);
main: {
my $start_dir = cwd();
## create complete paths for input files:
@left_files = &create_full_path(@left_files) if @left_files;
@right_files = &create_full_path(@right_files) if @right_files;
$left_list_file = &create_full_path($left_list_file) if $left_list_file;
$right_list_file = &create_full_path($right_list_file) if $right_list_file;
@single_files = &create_full_path(@single_files) if @single_files;
$output_directory = &create_full_path($output_directory);
unless (-d $output_directory) {
mkdir $output_directory or die "Error, cannot mkdir $output_directory";
}
chdir ($output_directory) or die "Error, cannot cd to $output_directory";
my $tmp_directory = "$output_directory/$TMP_DIR_NAME";
my $CREATED_TMP_DIR_HERE_FLAG = 0;
if (! -d $tmp_directory) {
mkdir $tmp_directory or die "Error, cannot mkdir $tmp_directory";
$CREATED_TMP_DIR_HERE_FLAG = 1;
}
chdir $tmp_directory or die "Error, cannot cd to $tmp_directory";
my $trinity_target_fa = (@single_files) ? "single.fa" : "both.fa";
my @files_need_stats;
my @checkpoints;
print STDERR "-prepping seqs\n";
if ( (@left_files && @right_files) ||
($left_list_file && $right_list_file) ) {
my ($left_SS_type, $right_SS_type);
if ($SS_lib_type) {
($left_SS_type, $right_SS_type) = split(//, $SS_lib_type);
}
print STDERR "Converting input files. (both directions in parallel);";
my $thr1;
my $thr2;
if (-s "left.fa" && -e "left.fa.ok") {
$thr1 = threads->create(sub { print STDERR (" Left file exists, nothing to do;");});
}
else {
$thr1 = threads->create('prep_list_of_seqs', \@left_files, $seqType, "left", $left_SS_type);
push (@checkpoints, ["left.fa", "left.fa.ok"]);
}
if (-s "right.fa" && -e "right.fa.ok") {
$thr2 = threads->create(sub { print STDERR (" Right file exists, nothing to do;");});
}
else {
$thr2 = threads->create('prep_list_of_seqs', \@right_files, $seqType, "right", $right_SS_type);
push (@checkpoints, ["right.fa", "right.fa.ok"]);
}
$thr1->join();
$thr2->join();
if ($thr1->error() || $thr2->error()) {
die "Error, conversion thread failed";
}
&process_checkpoints(@checkpoints);
print STDERR " Done converting input files. ";
push (@files_need_stats,
[\@left_files, "left.fa"],
[\@right_files, "right.fa"]);
@checkpoints = ();
&process_cmd("cat left.fa right.fa > $trinity_target_fa") unless (-s $trinity_target_fa && -e "$trinity_target_fa.ok");
unless (-s $trinity_target_fa == ((-s "left.fa") + (-s "right.fa"))){
die "$trinity_target_fa (".(-s $trinity_target_fa)." bytes) is different from the combined size of left.fa and right.fa (".((-s "left.fa") + (-s "right.fa"))." bytes)\n";
}
push (@checkpoints, [ $trinity_target_fa, "$trinity_target_fa.ok" ]);
}
elsif (@single_files) {
## Single-mode
unless (-s "single.fa" && -e "single.fa.ok") {
&prep_list_of_seqs(\@single_files, $seqType, "single", $SS_lib_type);
}
push (@files_need_stats, [\@single_files, "single.fa"]);
push (@checkpoints, [ "single.fa", "single.fa.ok" ]);
}
else {
die "not sure what to do. "; # should never get here.
}
&process_checkpoints(@checkpoints);
print STDERR "-kmer counting.\n";
my $kmer_file = &run_jellyfish($trinity_target_fa, $SS_lib_type);
print STDERR "-generating stats files\n";
&generate_stats_files(\@files_need_stats, $kmer_file, $SS_lib_type);
print STDERR "-defining normalized reads\n";
if ($pairs_together_flag) {
&run_nkbc_pairs_together(\@files_need_stats, $kmer_file, $SS_lib_type, $max_cov, $MIN_COV, $max_CV);
} else {
&run_nkbc_pairs_separate(\@files_need_stats, $kmer_file, $SS_lib_type, $max_cov, $MIN_COV, $max_CV);
}
print STDERR "-search and capture.\n";
my @outputs;
@checkpoints = ();
my @threads;
my $thread_counter = 0;
foreach my $info_aref (@files_need_stats) {
my ($orig_file, $converted_file, $stats_file, $selected_entries) = @$info_aref;
## do multi-threading
my $base = (scalar @$orig_file == 1) ? basename($orig_file->[0]) : basename($orig_file->[0]) . "_ext_all_reads";
my $normalized_filename_prefix = $output_directory . "/$base.normalized_K${KMER_SIZE}_maxC${max_cov}_minC${MIN_COV}_maxCV${max_CV}";
my $outfile;
if ($seqType eq 'fq') {
$outfile = "$normalized_filename_prefix.fq";
}
else {
# fastA
$outfile = "$normalized_filename_prefix.fa";
}
push (@outputs, $outfile);
## run in parallel
$thread_counter += 1;
my $checkpoint_file = "$outfile.ok";
unless (-e $checkpoint_file) {
my $thread = threads->create('make_normalized_reads_file', $orig_file, $seqType, $selected_entries, $outfile, $thread_counter);
push (@threads, $thread);
push (@checkpoints, [$outfile, $checkpoint_file]);
}
}
my $num_fail = 0;
foreach my $thread (@threads) {
$thread->join();
if ($thread->error()) {
print STDERR " Error encountered with thread.\n";
$num_fail++;
}
}
if ($num_fail) {
die "Error, at least one thread died";
}
&process_checkpoints(@checkpoints);
chdir $output_directory or die "Error, cannot chdir to $output_directory";
## link them up with simpler names so they're easy to find by downstream scripts.
if (scalar @outputs == 2) {
# paired
my $left_out = $outputs[0];
my $right_out = $outputs[1];
&process_cmd("$SYMLINK $left_out left.norm.$seqType");
&process_cmd("$SYMLINK $right_out right.norm.$seqType");
}
else {
my $single_out = $outputs[0];
&process_cmd("$SYMLINK $single_out single.norm.$seqType");
}
unless ($NO_CLEANUP) {
if ($CREATED_TMP_DIR_HERE_FLAG) {
print STDERR "-removing tmp dir $tmp_directory\n";
`rm -rf $tmp_directory`;
}
}
print STDERR "\n\nNormalization complete. See outputs: \n\t" . join("\n\t", @outputs) . "\n";
exit(0);
}
####
sub build_selected_index {
my ($file, $thread_count) = @_;
my $index_href = {};
my $tied_idx_filename = $file . ".thread-${thread_count}.idx";
if (-s $tied_idx_filename) {
unlink($tied_idx_filename);
}
tie (%{$index_href}, 'DB_File', $tied_idx_filename, O_CREAT|O_RDWR, 0666, $DB_BTREE);
open(my $ifh, $file) || die "failed to read selected_entries file $file: $!";
while (my $line = <$ifh> ) {
chomp $line;
next unless $line =~ /\S/;
## want core, .... just in case.
$line =~ s|/\w$||;
#print STDERR "-want $line\n";
$index_href->{$line} = 0;
}
return ($index_href);
}
####
sub make_normalized_reads_file {
my ($source_files_aref, $seq_type, $selected_entries, $outfile, $thread_count) = @_;
print STDERR "-preparing to extract selected reads from: @$source_files_aref ...";
open (my $ofh, ">$outfile") or die "Error, cannot write to $outfile";
my @source_files = @$source_files_aref;
my $idx_href = &build_selected_index( $selected_entries, $thread_count );
print STDERR " done prepping, now search and capture.\n";
#print STDERR Dumper(\%idx);
for my $orig_file ( @source_files ) {
my $reader;
print STDERR "-capturing normalized reads from: $orig_file\n";
# if we had a consistent interface for the readers, we wouldn't have to code this up separately below... oh well.
## ^^ I enjoyed this lamentation, so I left it in the rewrite - JO
if ($seqType eq 'fq') { $reader = new Fastq_reader($orig_file) }
elsif ($seqType eq 'fa') { $reader = new Fasta_reader($orig_file) }
else { die "Error, do not recognize format: $seqType" }
while ( my $seq_obj = $reader->next() ) {
my $acc;
if ($seqType eq 'fq') {
$acc = $seq_obj->get_core_read_name();
$acc =~ s/_forward//;
$acc =~ s/_reverse//;
}
elsif ($seqType eq 'fa') {
$acc = $seq_obj->get_accession();
$acc =~ s|/[12]\s*$||;
}
#print STDERR "parsed acc: [$acc]\n";
if ( exists $idx_href->{$acc} ) {
$idx_href->{$acc}++;
my $record = '';
if ($seqType eq 'fq') {
$record = $seq_obj->get_fastq_record();
}
elsif ($seqType eq 'fa') {
$record = $seq_obj->get_FASTA_format(fasta_line_len => -1);
}
print $ofh $record;
}
}
}
## check and make sure they were all found
my %missing;
for my $k ( keys %{$idx_href} ) {
if ($idx_href->{$k} == 0) {
$missing{$k} = 1;
}
}
close $ofh;
my $not_found_count = scalar(keys %missing);
if ( $not_found_count ) {
open (my $ofh, ">$outfile.missing_accs") or die "Error, cannot write to file $outfile.missing_accs";
print $ofh join("\n", keys %missing) . "\n";
close $ofh;
die "Error, not all specified records have been retrieved (missing $not_found_count) from @source_files, see file: $outfile.missing_accs for list of missing entries";
}
return;
}
####
sub run_jellyfish {
my ($reads, $strand_specific_flag) = @_;
my $jelly_kmer_fa_file = "jellyfish.K${KMER_SIZE}.min${MIN_KMER_COV_CONST}.kmers.fa";
my $jellyfish_checkpoint = "$jelly_kmer_fa_file.success";
unless (-e $jellyfish_checkpoint) {
print STDERR "-------------------------------------------\n"
. "----------- Jellyfish --------------------\n"
. "-- (building a k-mer catalog from reads) --\n"
. "-------------------------------------------\n\n";
my $read_file_size = -s $reads;
my $jelly_hash_size = int( ($max_memory - $read_file_size)/7); # decided upon by Rick Westerman
if ($jelly_hash_size < 100e6 || $read_file_size < 5e9) {
$jelly_hash_size = 100e6; # seems reasonable for a min hash size as 100M
}
## for testing
if ($JELLY_S) {
$jelly_hash_size = $JELLY_S;
}
my $cmd = "jellyfish count -t $CPU -m $KMER_SIZE -s $jelly_hash_size ";
unless ($SS_lib_type) {
## count both strands
$cmd .= " --canonical ";
}
$cmd .= " $reads";
&process_cmd($cmd);
if (-s $jelly_kmer_fa_file) {
unlink($jelly_kmer_fa_file) or die "Error, cannot unlink $jelly_kmer_fa_file";
}
my $jelly_db = "mer_counts.jf";
## write a histogram of the kmer counts.
$cmd = "jellyfish histo -t $CPU -o $jelly_kmer_fa_file.histo $jelly_db";
&process_cmd($cmd);
$cmd = "jellyfish dump -L $MIN_KMER_COV_CONST $jelly_db > $jelly_kmer_fa_file";
&process_cmd($cmd);
unlink($jelly_db);
## if got this far, consider jellyfish done.
&process_cmd("touch $jellyfish_checkpoint");
}
return($jelly_kmer_fa_file);
}
#### (from Trinity.pl)
## WARNING: this function appends to the target output file, so a -s check is advised
# before you call this for the first time within any given script.
sub prep_seqs {
my ($initial_file, $seqType, $file_prefix, $SS_lib_type) = @_;
my $read_type = ($file_prefix eq "right") ? "2" : "1";
my $using_FIFO_flag = 0;
if ($initial_file =~ /\.gz$|\.xz$|\.bz2$/) {
($initial_file) = &add_fifo_for_gzip($initial_file);
$using_FIFO_flag = 1;
}
if ($seqType eq "fq") {
# make fasta
if ($NO_SEQTK) {
my $perlcmd = "$UTILDIR/fastQ_to_fastA.pl -I $initial_file ";
if ($SS_lib_type && $SS_lib_type eq "R") {
$perlcmd .= " --rev ";
}
$perlcmd .= " >> $file_prefix.fa 2> $file_prefix.readcount ";
&process_cmd($perlcmd);
}
else {
# using seqtk
my $cmd = "seqtk-trinity seq -A -R $read_type ";
if ($SS_lib_type && $SS_lib_type eq "R") {
$cmd =~ s/trinity seq /trinity seq -r /;
}
$cmd .= " $initial_file >> $file_prefix.fa";
&process_cmd($cmd);
}
}
elsif ($seqType eq "fa") {
if ($SS_lib_type && $SS_lib_type eq "R") {
my $cmd = "$UTILDIR/revcomp_fasta.pl $initial_file >> $file_prefix.fa";
&process_cmd($cmd);
}
else {
if ($using_FIFO_flag) {
# can't symlink it, so just cat it
my $cmd = "cat $initial_file >> $file_prefix.fa";
&process_cmd($cmd);
}
else {
## just symlink it here:
my $cmd = "cat $initial_file >> $file_prefix.fa";
&process_cmd($cmd);
}
}
}
return;
}
###
sub prep_list_of_seqs {
my ($files, $seqType, $file_prefix, $SS_lib_type) = @_;
# generates $file_prefix.fa by converting & concatenating $files of $seqType
eval {
for my $file ( @$files ) {
prep_seqs( $file, $seqType, $file_prefix, $SS_lib_type);
}
};
if ($@) {
# remove faulty output file
unlink("$file_prefix.fa");
die $@;
}
return 0;
}
###
sub create_full_path {
my (@files) = @_;
my @ret;
foreach my $file (@files) {
my $cwd = cwd();
if ($file !~ m|^/|) { # must be a relative path
$file = $cwd . "/$file";
}
push (@ret, $file);
}
if (wantarray) {
return(@ret);
}
else {
if (scalar @ret > 1) {
confess("Error, provided multiple files as input, but only requesting one file in return");
}
return($ret[0]);
}
}
###
sub read_list_file {
my ($file, $regex) = @_;
my @files;
open(my $ifh, $file) || die "failed to read input list file ($file): $!";
while (my $line = <$ifh>) {
chomp $line;
next unless $line =~ /\S/;
if ( defined $regex ) {
if ( $line =~ /$regex/ ) {
push @files, $line;
}
} else {
push @files, $line;
}
}
return @files;
}
####
sub process_cmd {
my ($cmd) = @_;
print STDERR "CMD: $cmd\n";
my $start_time = time();
my $ret = system("bash", "-c", $cmd);
my $end_time = time();
if ($ret) {
die "Error, cmd: $cmd died with ret $ret";
}
print STDERR "CMD finished (" . ($end_time - $start_time) . " seconds)\n";
return;
}
####
sub generate_stats_files {
my ($files_need_stats_aref, $kmer_file, $SS_lib_type) = @_;
my @cmds;
my $CPU_ADJ = $CPU;
if ($PARALLEL_STATS) {
$CPU_ADJ = int($CPU/2);
if ($CPU_ADJ < 1) {
$CPU_ADJ = 1;
}
}
my @checkpoints;
foreach my $info_aref (@$files_need_stats_aref) {
my ($orig_file, $converted_fa_file) = @$info_aref;
my $stats_filename = "$converted_fa_file.K$KMER_SIZE.stats";
push (@$info_aref, $stats_filename);
my $cmd = "$INCHWORM_DIR/bin/fastaToKmerCoverageStats --reads $converted_fa_file --kmers $kmer_file --kmer_size $KMER_SIZE --num_threads $CPU_ADJ ";
unless ($SS_lib_type) {
$cmd .= " --DS ";
}
if ($__devel_report_kmer_cov_stats) {
$cmd .= " --capture_coverage_info ";
}
$cmd .= " > $stats_filename";
push (@cmds, $cmd) unless (-e "$stats_filename.ok");
push (@checkpoints, ["$stats_filename", "$stats_filename.ok"]);
}
if (@cmds) {
if ($PARALLEL_STATS) {
&process_cmds_parallel(@cmds);
}
else {
&process_cmds_serial(@cmds);
}
}
&process_checkpoints(@checkpoints);
{
## sort by read name
my @cmds;
@checkpoints = ();
foreach my $info_aref (@$files_need_stats_aref) {
my $stats_file = $info_aref->[-1];
my $sorted_stats_file = $stats_file . ".sort";
# retain column headers, sort the rest.
my $cmd = "head -n1 $stats_file > $sorted_stats_file && tail -n +2 $stats_file | $sort_exec -k1,1 -T . -S $sort_mem >> $sorted_stats_file";
push (@cmds, $cmd) unless (-e "$sorted_stats_file.ok");
$info_aref->[-1] = $sorted_stats_file;
push (@checkpoints, [$sorted_stats_file, "$sorted_stats_file.ok"]);
}
if (@cmds) {
print STDERR "-sorting each stats file by read name.\n";
if ($PARALLEL_STATS) {
&process_cmds_parallel(@cmds);
}
else {
&process_cmds_serial(@cmds);
}
&process_checkpoints(@checkpoints);
}
}
return;
}
####
sub process_checkpoints {
my @checkpoints = @_;
foreach my $checkpoint (@checkpoints) {
my ($outfile, $checkpoint_file) = @$checkpoint;
if (-s "$outfile" && ! -e $checkpoint_file) {
&process_cmd("touch $checkpoint_file");
}
}
return;
}
####
sub run_nkbc_pairs_separate {
my ($files_need_stats_aref, $kmer_file, $SS_lib_type, $max_cov, $min_cov, $max_CV) = @_;
my @cmds;
my @checkpoints;
foreach my $info_aref (@$files_need_stats_aref) {
my ($orig_file, $converted_file, $stats_file) = @$info_aref;
my $selected_entries = "$stats_file.maxC$max_cov.minC$min_cov.maxCV$max_CV.accs";
my $cmd = "$UTILDIR/nbkc_normalize.pl --stats_file $stats_file "
. " --max_cov $max_cov "
. " --min_cov $MIN_COV "
. " --max_CV $max_CV > $selected_entries";
push (@cmds, $cmd) unless (-e "$selected_entries.ok");
push (@$info_aref, $selected_entries);
push (@checkpoints, [$selected_entries, "$selected_entries.ok"]);
}
&process_cmds_parallel(@cmds); ## low memory, all I/O - fine to always run in parallel.
&process_checkpoints(@checkpoints);
return;
}
####
sub run_nkbc_pairs_together {
my ($files_need_stats_aref, $kmer_file, $SS_lib_type, $max_cov, $min_cov, $max_CV) = @_;
my $left_stats_file = $files_need_stats_aref->[0]->[2];
my $right_stats_file = $files_need_stats_aref->[1]->[2];
my $pair_out_stats_filename = "pairs.K$KMER_SIZE.stats";
my $cmd = "$UTILDIR/nbkc_merge_left_right_stats.pl --left $left_stats_file --right $right_stats_file --sorted";
$cmd .= " > $pair_out_stats_filename";
&process_cmd($cmd) unless (-e "$pair_out_stats_filename.ok");
my @checkpoints = ( [$pair_out_stats_filename, "$pair_out_stats_filename.ok"] );
&process_checkpoints(@checkpoints);
unless (-s $pair_out_stats_filename) {
die "Error, $pair_out_stats_filename is empty. Be sure to check your fastq reads and ensure that the read names are identical except for the /1 or /2 designation.";
}
my $selected_entries = "$pair_out_stats_filename.C$max_cov.maxCV$max_CV.accs";
$cmd = "$UTILDIR/nbkc_normalize.pl --stats_file $pair_out_stats_filename --max_cov $max_cov "
. " --min_cov $MIN_COV --max_CV $max_CV > $selected_entries";
&process_cmd($cmd) unless (-e "$selected_entries.ok");
@checkpoints = ( [$selected_entries, "$selected_entries.ok"] );
&process_checkpoints(@checkpoints);
push (@{$files_need_stats_aref->[0]}, $selected_entries);
push (@{$files_need_stats_aref->[1]}, $selected_entries);
return;
}
####
sub process_cmds_parallel {
my @cmds = @_;
my @threads;
foreach my $cmd (@cmds) {
# should only be 2 cmds max
my $thread = threads->create('process_cmd', $cmd);
push (@threads, $thread);
}
my $ret = 0;
foreach my $thread (@threads) {
$thread->join();
if (my $error = $thread->error()) {
print STDERR "Error, thread exited with error $error\n";
$ret++;
}
}
if ($ret) {
die "Error, $ret threads errored out";
}
return;
}
####
sub process_cmds_serial {
my @cmds = @_;
foreach my $cmd (@cmds) {
&process_cmd($cmd);
}
return;
}
####
sub add_fifo_for_gzip {
my @files = @_;
foreach my $file (@files) {
if (ref $file eq "ARRAY") {
my @f = &add_fifo_for_gzip(@{$file});
$file = [@f];
}
elsif ($file =~ /\.gz$/) {
$file = "<(gunzip -c $file)";
} elsif ($file =~ /\.xz$/) {
$file = "<(xz -d -c ${file})";
} elsif ($file =~ /\.bz2$/) {
$file = "<(bunzip2 -dc ${file})";
}
}
return(@files);
}
|