monkfan has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/bin/perl -w use strict; my @ARGV = ("file1.fasta","file2.fasta","file3.fasta"); # etc, there are 50 of this. for (@ARGV) { run_code ($_); } sub run_code { my $file=shift; # some algo specific parameters. # process my file here }
|
|---|