Mercurial > repos > nikhil-joshi > mirdeep2_and_targetspy
view mirdeep2/target_spy_wrapper.pl @ 1:798fe7ba8b5e default tip
uploading ucsc browser species file
author | nikhil-joshi |
---|---|
date | Mon, 19 Sep 2011 19:07:09 -0400 |
parents | 5b9519f4b165 |
children |
line wrap: on
line source
#!/usr/bin/perl use File::Temp qw/ tempfile tempdir /; use File::Copy qw/ copy /; use Cwd; $mirna_file = $ARGV[0]; $trans_file = $ARGV[1]; $targets = $ARGV[2]; # do all the dirty work in a temp directory $cwd = cwd(); $tempdir = tempdir(CLEANUP => 1); copy ("/opt/Bio/galaxy-dist/tools/mirdeep2/target_spy_wrapper.sh", $tempdir); chdir ($tempdir); $ret_ts = `sh target_spy_wrapper.sh $mirna_file $trans_file`; if ($ret_ts ne "") {die "TargetSpy error"} copy ("targets", $targets); chdir($cwd);