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
|
#!/usr/bin/env perl
use strict;
use warnings;
use lib ("$ENV{TRINITY_HOME}/PerlLib/");
use Fasta_reader;
use Cwd;
use Data::Dumper;
use Carp;
use Getopt::Long qw(:config no_ignore_case bundling pass_through);
use List::Util qw (shuffle);
my $VERBOSITY_LEVEL = 10;
my $help_flag;
my $ref_trans_fa;
my $BFLY_JAR = "/usr/share/java/Butterfly.jar";
my $INCLUDE_REF_TRANS = 0;
my $OUT_DIR = "testing_dir";
my $MIN_CONTIG_LENGTH = 200;
my $min_per_id = 90;
my $usage = <<__EOUSAGE__;
################################################################################
#
# * Required:
#
# --ref_trans|R <string> reference transcriptome
#
# --left <string> left reads fa file
#
# --right <string> right reads fa file
#
# * Common Opts:
#
# --bfly_jar|B <string> Butterfly jar file
#
# --out_dir|O <string> output directory name (default: $OUT_DIR)
#
# * include FL seq opts:
#
# --incl_ref_trans include the ref transcript as a long
# read (default: off)
#
# * Misc Opts:
#
# --incl_ref_dot include dot files for the reference sequences
#
# -V <int> verbosity level (default: 12)
#
# --acc <string> restrict to a specific accession (gene or transcript)
#
# --paired_as_single treat paired reads as single reads
#
# --min_contig_length <int> minimum contig length for Trinity assembly. default: $MIN_CONTIG_LENGTH
#
# --strict weld all, no pruning or path merging.
#
# --no_cleanup no cleaning up of trinity output.
#
# --strand_specific sets to strand-specific mode (RF)
#
# --bfly_opts <string> butterfly additional opts
#
############################################################################################
__EOUSAGE__
;
my $NO_CLEANUP = 0;
my $INCLUDE_REF_DOT_FILES = 0;
my $PAIRED_AS_SINGLE = "";
my $SHUFFLE = 0;
my $MAX_ISOFORMS = -1;
my $STRICT = 0;
my $strand_specific_flag = 0;
my $left_file = "";
my $right_file = "";
my $BFLY_OPTS;
&GetOptions ( 'h' => \$help_flag,
# required
'ref_trans|R=s' => \$ref_trans_fa,
'left=s' => \$left_file,
'right=s' => \$right_file,
# optional
'out_dir|O=s' => \$OUT_DIR,
'bfly_jar|B=s' => \$BFLY_JAR,
'incl_ref_trans' => \$INCLUDE_REF_TRANS,
'strict' => \$STRICT,
'V=i' => \$VERBOSITY_LEVEL,
'incl_ref_dot' => \$INCLUDE_REF_DOT_FILES,
'paired_as_single' => \$PAIRED_AS_SINGLE,
'min_contig_length=i' => \$MIN_CONTIG_LENGTH,
'no_cleanup' => \$NO_CLEANUP,
'strand_specific' => \$strand_specific_flag,
'min_per_id=i' => \$min_per_id,
'bfly_opts=s' => \$BFLY_OPTS,
);
if ($help_flag) {
die $usage;
}
unless ($ref_trans_fa && $BFLY_JAR && $left_file && $right_file) {
die $usage;
}
$NO_CLEANUP = 1; ## NEEDED NOW for iworm and bfy pruning assessment
unless ($ENV{TRINITY_HOME}) {
$ENV{TRINITY_HOME} = "/usr/lib/trinityrnaseq";
}
my $reconstructions_log_file = "$OUT_DIR.reconstruction_summary.txt";
if ($PAIRED_AS_SINGLE) {
$PAIRED_AS_SINGLE = "--TREAT_PAIRS_AS_SINGLE";
}
main: {
my $BASEDIR = cwd();
unless ($ref_trans_fa =~ /^\//) {
$ref_trans_fa = "$BASEDIR/$ref_trans_fa";
}
unless (-d $OUT_DIR) {
&process_cmd("mkdir -p $OUT_DIR");
}
chdir $OUT_DIR or die "Error, cannot cd to $OUT_DIR";
my ($num_reco_FL, $num_ref_entries, $num_trans_reco,
$has_all_iworm_kmers, $has_all_precious_edges,
$num_LR_threaded) = &execute_seq_pipe($ref_trans_fa, $left_file, $right_file);
# num_FL: number of transcripts reconstructed as full-length
# num_entries: number of reference isoforms
# num_transcripts: total number of Trinity transcripts reconstructed.
open (my $ofh, ">audit.txt") or die $!;
my $captured_all = ($num_reco_FL == $num_ref_entries) ? "YES" : "NO";
my $header = join("\t", "ref_fa", "num_ref", "num_FL", "num_reco", "captured_all", "iworm_ok", "bfly_edges_ok",
"num_LR_threaded", "all_LR_threaded_ok");
my $all_LR_threaded_ok = ($num_LR_threaded == $num_ref_entries) ? "YES" : "NO";
my $summary = join("\t", $ref_trans_fa,
$num_ref_entries,
$num_reco_FL,
$num_trans_reco,
$captured_all,
$has_all_iworm_kmers,
$has_all_precious_edges,
$num_LR_threaded,
$all_LR_threaded_ok);
$summary = "$header\n$summary\n";
print $ofh $summary;
print $summary;
close $ofh;
&process_cmd("echo " . cwd() . "/audit.txt | /usr/lib/trinityrnaseq/util/misc/sim_test_framework/audit_summary_stats.reexamine.pl | tee audit2.txt");
exit(0);
}
####
sub execute_seq_pipe {
my ($ref_trans_fa, $left_file, $right_file) = @_;
my $cmd = "ln -sf $ref_trans_fa $left_file $right_file .";
&process_cmd($cmd);
if (-d "trinity_out_dir") {
`rm -rf ./trinity_out_dir`;
}
my $num_entries = `grep '>' $ref_trans_fa | wc -l `;
$num_entries =~ /(\d+)/ or die "Error, cannot parse number of entries from $ref_trans_fa";
$num_entries = $1;
# run Trinity
my $bfly_jar_txt = "";
if ($BFLY_JAR) {
$bfly_jar_txt = " --bfly_jar $BFLY_JAR ";
}
$cmd = "set -o pipefail; $ENV{TRINITY_HOME}/Trinity --seqType fa --max_memory 4G --bflyHeapSpaceMax 10G --max_reads_per_graph 10000000 --group_pairs_distance 10000 --verbose_level 2 --CPU 1 ";
if ($NO_CLEANUP) {
$cmd .= " --no_cleanup ";
}
else {
$cmd .= " --full_cleanup ";
}
if ($INCLUDE_REF_TRANS) {
$cmd .= " --long_reads $ref_trans_fa ";
}
$cmd .= " --left $left_file --right $right_file ";
if ($strand_specific_flag) {
$cmd .= " --SS_lib_type RF ";
}
$cmd .= " --CPU 2 $bfly_jar_txt --inchworm_cpu 1 --min_contig_length $MIN_CONTIG_LENGTH --trinity_complete @ARGV";
my $bfly_opts = " --bfly_opts \"--generate_intermediate_dot_files -R 1 --generate_intermediate_dot_files $PAIRED_AS_SINGLE --stderr -V $VERBOSITY_LEVEL $BFLY_OPTS\" ";
if ($STRICT) {
$cmd .= " --no_bowtie --chrysalis_debug_weld_all "
. " --iworm_opts \"--no_prune_error_kmers --min_assembly_coverage 1 --min_seed_entropy 0 --min_seed_coverage 1 \" ";
$bfly_opts = " --bfly_opts \"--dont-collapse-snps --no_pruning --no_path_merging --no_remove_lower_ranked_paths --NO_EM_REDUCE --MAX_READ_SEQ_DIVERGENCE=0 --NO_DP_READ_TO_VERTEX_ALIGN --generate_intermediate_dot_files -R 1 -F 100000 --generate_intermediate_dot_files $PAIRED_AS_SINGLE --stderr -V $VERBOSITY_LEVEL $BFLY_OPTS\" ";
}
else {
#$cmd .= " --no_bowtie --chrysalis_debug_weld_all ";
#$cmd .= " --iworm_opts \" --min_seed_entropy 1 \" --min_glue 1 ";
}
$cmd .= " $bfly_opts 2>&1 | tee trin.log";
{
open (my $ofh, ">runTrinity.cmd") or die $!;
print $ofh $cmd;
close $ofh;
}
&process_cmd($cmd);
if ($NO_CLEANUP) {
rename("trinity_out_dir/Trinity.fasta", "trinity_out_dir.Trinity.fasta");
}
## check inchworm kmer content of reference sequences
&process_cmd("$ENV{TRINITY_HOME}/util/misc/print_kmers.pl $ref_trans_fa 24 > ref_kmers");
my $iworm_file = (-s "trinity_out_dir/inchworm.K25.L25.fa") ? "trinity_out_dir/inchworm.K25.L25.fa" : "trinity_out_dir/inchworm.K25.L25.DS.fa";
my $has_all_iworm_kmers = &check_inchworm_kmer_content($ref_trans_fa, $iworm_file);
## examine pruning of precious edges
my ($has_all_precious_edges) = &check_pruning("trin.log", "ref_kmers");
## see if all LR are threaded through the graph
my $num_LR_threaded = &count_num_LR_threaded("trin.log");
if ($INCLUDE_REF_DOT_FILES) {
# generate sequence graphs just refseqs
$cmd = "$ENV{TRINITY_HOME}/util/misc/Monarch --misc_seqs $ref_trans_fa --graph refseqs.dot";
if (! -s "refseqs.dot") {
&process_cmd($cmd);
}
# generate sequence graphs just refseqs
$cmd = "$ENV{TRINITY_HOME}/util/misc/Monarch --misc_seqs $ref_trans_fa,trinity_out_dir/inchworm.K25.L25.fa --graph refseqs_w_iworm.dot";
if (! -s "refseqs_w_iworm.dot") {
&process_cmd($cmd);
}
# generate sequence graphs combining all
$cmd = "$ENV{TRINITY_HOME}/util/misc/Monarch --misc_seqs $ref_trans_fa,trinity_out_dir/inchworm.K25.L25.fa,trinity_out_dir.Trinity.fasta --graph all_compare.dot";
if (! -s "all_compare.dot") {
&process_cmd($cmd);
}
}
# compare refseqs to the trinity assemblies
$cmd = "$ENV{TRINITY_HOME}/util/misc/illustrate_ref_comparison.pl $ref_trans_fa trinity_out_dir.Trinity.fasta $min_per_id | tee ref_compare.ascii_illus";
&process_cmd($cmd);
## get number of transcripts reconstructed:
$cmd = "grep '>' trinity_out_dir.Trinity.fasta | wc -l";
my $result = `$cmd`;
$result =~ s/^\s+//g;
my ($num_transcripts, @rest) = split(/\s+/, $result);
# reconstruction test
$cmd = "$ENV{TRINITY_HOME}/Analysis/FL_reconstruction_analysis/FL_trans_analysis_pipeline.pl --target $ref_trans_fa --query trinity_out_dir.Trinity.fasta --no_reuse --out_prefix FL.test --allow_non_unique_mappings --min_per_length 90 --min_per_id $min_per_id | tee FL_analysis.txt";
&process_cmd("echo $cmd > FL.cmd");
my @results = `$cmd`;
print @results;
chomp @results;
shift @results;
shift @results;
$result = shift @results;
$result =~ s/^\s+//;
my @pts = split(/\s+/, $result);
my $num_FL = $pts[2] || 0;
my $got_all_flag = 0;
if ($num_FL == $num_entries) {
print STDERR "-got all FL ($num_FL reconstructed / $num_entries total reconstructed).\n";
$got_all_flag = 1;
#print STDERR Dumper(\@pts);
}
else {
print STDERR "** missed at least one reconstructed isoform ($num_FL reconstructed / $num_entries total reconstructed).\n";
}
# cleanup really needed after all.
unless ($NO_CLEANUP) {
system("rm -rf ./trinity_out_dir");
}
return ($num_FL, $num_entries, $num_transcripts, $has_all_iworm_kmers, $has_all_precious_edges, $num_LR_threaded);
}
####
sub process_cmd {
my ($cmd) = @_;
print STDERR "CMD: $cmd\n";
my $ret = system($cmd);
if ($ret) {
die "Error, cmd: $cmd died with ret $ret";
}
return;
}
####
sub check_inchworm_kmer_content {
my ($ref_trans_fa, $iworm_file) = @_;
my $cmd = "$ENV{TRINITY_HOME}/Inchworm/bin/inchworm --threadFasta $ref_trans_fa --reads $iworm_file > $iworm_file.ref_kmer_check";
&process_cmd($cmd);
my $has_all_kmers = "YES";
open (my $fh, "$iworm_file.ref_kmer_check") or die $!;
while (<$fh>) {
chomp;
my @x = split(/\t/);
my $kmer_info = $x[1];
if ($kmer_info && $kmer_info =~ /:/) {
my ($kmer, $count) = split(/:/, $kmer_info);
if ($count == 0) {
print "Inchworm missing kmer: $kmer\n";
$has_all_kmers = "NO";
}
}
}
close $fh;
return($has_all_kmers);
}
####
sub check_pruning {
my ($log_file, $ref_kmers_file) = @_;
my $pruned_ref_edges = `/usr/lib/trinityrnaseq/util/misc/sim_test_framework/util/find_pruned_edges_shouldve_kept.pl $ref_kmers_file $log_file`;
if ($pruned_ref_edges =~ /\w/) {
print "Pruned precious edges: $pruned_ref_edges\n";
return("NO");
}
else {
print "no pruning of precious edges\n";
return("YES");
}
}
####
sub count_num_LR_threaded {
my ($logfile) = @_;
# FINAL BEST PATH for LR$|ENST00000479454.1;ASZ1_mutated is [1, 228, 373, 2906, 598, 2885, 771] with total mm: 55
# No read mapping found for: LR$|ENST00000465832.1;ASZ1_mutated
my $num_LR_threaded = 0;
open(my $fh, $logfile) or die "Error, cannot open file $logfile";
while(<$fh>) {
chomp;
if (/FINAL BEST PATH for LR\$/) {
print "$_\n";
$num_LR_threaded++;
}
elsif (/No read mapping found for: LR\$/) {
print "$_\n";
}
}
close $fh;
return($num_LR_threaded);
}
|