2
|
1 #!/usr/bin/env perl
|
|
2
|
|
3 use warnings;
|
|
4 use strict;
|
|
5 use File::Copy;
|
|
6
|
|
7 # EXPECT 20 FILE HANDLES, SOME OF WHICH MAY BE 'None'
|
|
8 die("Missing arguments; expected at least 20, got ".scalar(@ARGV)."\n") unless @ARGV >= 20;
|
|
9 my $outdir=shift @ARGV;
|
|
10 my $newbler_metrics=shift @ARGV;
|
|
11 my $read_status=shift @ARGV;
|
|
12 my $trimmed_reads_fasta=shift @ARGV;
|
|
13 my $trimmed_reads_qual=shift @ARGV;
|
|
14 my $alignment_info=shift @ARGV;
|
|
15 my $all_contigs_fasta=shift @ARGV;
|
|
16 my $all_contigs_qual=shift @ARGV;
|
|
17 my $contigs_ace=shift @ARGV;
|
|
18 my $contigs_consed_ace=shift @ARGV;
|
|
19 my $contig_graph=shift @ARGV;
|
|
20 my $pair_align=shift @ARGV;
|
|
21 my $pair_status=shift @ARGV;
|
|
22 my $scaffolds_fasta=shift @ARGV;
|
|
23 my $scaffolds_qual=shift @ARGV;
|
|
24 my $scaffolds_agp=shift @ARGV;
|
3
|
25 my $contig_scaffolds_agp=shift @ARGV;
|
2
|
26 my $tag_pair_align=shift @ARGV;
|
|
27 my $trim_status=shift @ARGV;
|
|
28 my $large_contigs_fasta=shift @ARGV;
|
|
29 my $large_contigs_qual=shift @ARGV;
|
|
30
|
|
31 # REMOVE PARAMETERS FOR OPTIONAL FILES WHICH WERE NOT PROVIDED
|
|
32
|
|
33 my @cmd=removeUnusedOptions(@ARGV);
|
|
34
|
|
35 # RUN COMMAND
|
|
36 my $stderr;
|
3
|
37 eval { $stderr=`runAssembly @cmd 2>&1`; };
|
2
|
38 if ( $@ ) {
|
|
39 print STDERR "Newbler ERROR: $stderr\n";
|
|
40 `cat $outdir/assembly/454NewblerProgress.txt 1>&2`;
|
|
41 die($@);
|
|
42 }
|
|
43
|
|
44 get_outfile("$outdir/454NewblerMetrics.txt", $newbler_metrics);
|
|
45 get_outfile("$outdir/454ReadStatus.txt", $read_status);
|
|
46 get_outfile("$outdir/454TrimmedReads.fna", $trimmed_reads_fasta);
|
|
47 get_outfile("$outdir/454TrimmedReads.qual", $trimmed_reads_qual);
|
|
48 get_outfile("$outdir/454AlignmentInfo.tsv", $alignment_info);
|
|
49 get_outfile("$outdir/454AllContigs.fna", $all_contigs_fasta);
|
|
50 get_outfile("$outdir/454AllContigs.qual", $all_contigs_qual);
|
|
51 get_outfile("$outdir/454Contigs.ace", $contigs_ace);
|
|
52 get_outfile("$outdir/consed/edit_dir/454Contigs.ace.1", $contigs_consed_ace);
|
|
53 get_outfile("$outdir/454ContigGraph.txt", $contig_graph);
|
|
54 get_outfile("$outdir/454PairAlign.txt", $pair_align);
|
|
55 get_outfile("$outdir/454PairStatus.txt", $pair_status);
|
|
56 get_outfile("$outdir/454Scaffolds.fna", $scaffolds_fasta);
|
|
57 get_outfile("$outdir/454Scaffolds.qual", $scaffolds_qual);
|
|
58 get_outfile("$outdir/454Scaffolds.txt", $scaffolds_agp);
|
3
|
59 get_outfile("$outdir/454ContigScaffolds.txt", $contig_scaffolds_agp);
|
2
|
60 get_outfile("$outdir/454TagPairAlign.txt", $tag_pair_align);
|
|
61 get_outfile("$outdir/454TrimStatus.txt", $trim_status);
|
|
62 get_outfile("$outdir/454LargeContigs.fna", $large_contigs_fasta);
|
|
63 get_outfile("$outdir/454LargeContigs.qual", $large_contigs_qual);
|
|
64 exit;
|
|
65
|
|
66 # EVERY 'None' ARG AND IT'S PRECEEDING OPTION TAG ARE DISCARDED
|
|
67 sub removeUnusedOptions {
|
|
68 my @cmd=();
|
|
69 my $prev;
|
|
70 foreach (@_) {
|
|
71 unless ($_ eq 'None') {
|
|
72 push @cmd, $prev if defined($prev);
|
|
73 $prev=$_;
|
|
74 } else {
|
|
75 $prev=undef;
|
|
76 }
|
|
77 }
|
|
78 push @cmd, $prev if defined($prev);
|
|
79 return @cmd;
|
|
80 }
|
|
81
|
|
82 sub get_outfile {
|
|
83 my ($src, $dest)=@_;
|
|
84 # make sure dest defined and src exist; skip if dest is 'None'
|
|
85 if ( $dest and $dest ne 'None' and $src and -f $src ) {
|
|
86 move($src,$dest);
|
|
87 }
|
|
88 }
|
|
89
|
|
90 __END__
|