changeset 8:f3b45062843e

Uploaded Flexbar perl tool wrapper file flexbar.pl
author jtilman
date Sun, 30 Dec 2012 18:45:11 -0500
parents 589b4866f537
children cb6deaad121f
files flexbar.pl
diffstat 1 files changed, 42 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /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;
+	}
+}
+