annotate tools/emboss_5/emboss_cpgplot_wrapper.pl @ 1:cdcb0ce84a1b

Uploaded
author xuebing
date Fri, 09 Mar 2012 19:45:15 -0500
parents 9071e359b9a3
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
1 #! /usr/bin/perl -w
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
2 use strict;
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
3 use File::Copy;
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
4
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
5 my $cmd_string = join (" ",@ARGV);
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
6 my $results = `$cmd_string`;
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
7 my @files = split("\n",$results);
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
8 my $fileNameOut = $ARGV[14];
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
9 move($fileNameOut.".1.png",$fileNameOut);