Mercurial > repos > mcharles > rapsosnp
annotate rapsodyn/CreateMatrixMultiple.pl @ 13:827da1a9a326 draft
Uploaded
author | mcharles |
---|---|
date | Mon, 19 Jan 2015 10:38:29 -0500 |
parents | 0a6c1cfe4dc8 |
children | 56d328bce3a7 |
rev | line source |
---|---|
10 | 1 #!/usr/bin/perl |
2 #V1.0.0 | |
3 use strict; | |
4 use warnings; | |
5 use Getopt::Long; | |
6 | |
7 | |
8 my $input_matrix_files; | |
9 GetOptions ( | |
10 "input_matrix_files=s" => \$input_matrix_files | |
11 ) or die("Error in command line arguments\n"); | |
12 | |
13 my @files = split(/,/,$input_matrix_files); | |
14 for (my $i=0;$i<=$#files;$i++){ | |
15 print $files[$i],"\n"; | |
16 } | |
17 |