Mercurial > repos > yufei-luo > s_mart
comparison SMART/DiffExpAnal/listInputs.pl @ 31:0ab839023fe4
Uploaded
author | m-zytnicki |
---|---|
date | Tue, 30 Apr 2013 14:33:21 -0400 |
parents | 94ab73e8a190 |
children |
comparison
equal
deleted
inserted
replaced
30:5677346472b5 | 31:0ab839023fe4 |
---|---|
1 #!/usr/bin/perl -w | |
2 | |
3 use strict; | |
4 | |
5 my $in_file1 = $ARGV[0]; | |
6 my $in_file2 = $ARGV[1]; | |
7 my $out_file = $ARGV[2]; | |
8 | |
9 open(OUT, ">$out_file"); | |
10 print OUT "label\tfiles\tgroup\n"; | |
11 print OUT "fileID=1\t$in_file1\tgroup1\n"; | |
12 print OUT "fileID=2\t$in_file2\tgroup2\n"; | |
13 close(OUT); |