Mercurial > repos > yufei-luo > s_mart
view 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 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);