diff SMART/DiffExpAnal/listInputs.pl @ 31:0ab839023fe4

Uploaded
author m-zytnicki
date Tue, 30 Apr 2013 14:33:21 -0400
parents 94ab73e8a190
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/SMART/DiffExpAnal/listInputs.pl	Tue Apr 30 14:33:21 2013 -0400
@@ -0,0 +1,13 @@
+#!/usr/bin/perl -w
+
+use strict;
+
+my $in_file1 = $ARGV[0];
+my $in_file2 = $ARGV[1];
+my $out_file = $ARGV[2];
+
+open(OUT, ">$out_file");
+print OUT "label\tfiles\tgroup\n";
+print OUT "fileID=1\t$in_file1\tgroup1\n";
+print OUT "fileID=2\t$in_file2\tgroup2\n";
+close(OUT);