Mercurial > repos > yufei-luo > s_mart
view SMART/DiffExpAnal/listInputs.pl @ 18:94ab73e8a190
Uploaded
author | m-zytnicki |
---|---|
date | Mon, 29 Apr 2013 03:20:15 -0400 |
parents | |
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);