comparison deseq/differential_expression_analysis_pipeline_for_rnaseq_data-a03838a6eb54/DiffExpAnal/listInputs.pl @ 10:6e573fd3c41b draft

Uploaded
author yufei-luo
date Mon, 13 May 2013 10:06:30 -0400
parents
children
comparison
equal deleted inserted replaced
9:a03838a6eb54 10:6e573fd3c41b
1 #!/usr/bin/perl -w
2 ###
3 ###Yufei LUO
4 ###
5
6
7
8 use strict;
9
10 my $in_file1 = $ARGV[0];
11 my $in_file2 = $ARGV[1];
12 my $out_file = $ARGV[2];
13
14 open(OUT, ">$out_file");
15 print OUT "label\tfiles\tgroup\n";
16 print OUT "fileID=1\t$in_file1\tgroup1\n";
17 print OUT "fileID=2\t$in_file2\tgroup2\n";
18 close(OUT);