view SMART/DiffExpAnal/listInputs.pl @ 34:529e3e6a0954

Deleted selected files
author m-zytnicki
date Tue, 30 Apr 2013 14:35:27 -0400
parents 94ab73e8a190
children
line wrap: on
line source

#!/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);