# HG changeset patch # User jtilman # Date 1356911111 18000 # Node ID f3b45062843e0c5c8c577549c3d24ea88dd8681c # Parent 589b4866f537c3e596c67e1e9e8cc7b9d9d23a6d Uploaded Flexbar perl tool wrapper file flexbar.pl diff -r 589b4866f537 -r f3b45062843e flexbar.pl --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/flexbar.pl Sun Dec 30 18:45:11 2012 -0500 @@ -0,0 +1,42 @@ +#!/usr/bin/env perl + +# Author: Johannes T. Roehr + +use warnings; +use strict; + +my $flexbarDir = ""; + +my $pwd = $ENV{PWD}; + +my $lastIdx = $#ARGV; +my $format = $ARGV[$lastIdx]; +my $folder = $ARGV[$lastIdx - 1]; +my $id = $ARGV[$lastIdx - 2]; +my $outFile = $ARGV[$lastIdx - 3]; + +my $call = join " ", @ARGV[0..($lastIdx - 4)]; + +system $flexbarDir . $call .' --target reads > '. $outFile; + +foreach(<$pwd ."/reads"*>){ + + if(/^\.\//){ + my $file = $pwd ."/". $_; + + s/^\.\///; + my $fileType; + + $fileType = $1 if /\.(\w+)$/; + $fileType = $format if /\.\w+fast\w$/; + $fileType = 'tabular' if $fileType eq 'lengthdist'; + + s/_//g; + + my $name = "primary_". $id ."_". $_ ."_visible_". $fileType; + + rename $file, $name; + rename $name, $folder; + } +} +