Perfect! I have been looking for just such a solution this morn and appreciate your post - here is one I just put together really quick ...
to chunk up a given fasta file (unaligned sequences) in to N files for submission of multiple smaller jobs on a cluster:
#!/usr/bin/perl -w
use strict;
my $num_ch = $ARGV[0] or die "must pass the # of chunks $!";
open (FH,"<$ARGV[1]") or die "must pass the file name to make chunks
+of $!";
my @lines = ();
$/ = ">";
while (<FH>){
chomp;
next if /^$/; # get rid of blank lines
push @lines,">$_";
}
close FH;
my $num_rec = scalar(@lines);
print "number of records : $num_rec\n";
#die "Chunks exceed records!!" unless ($num_rec >= $num_ch);
sub write_em {
my $output = shift()."_chunk.fa";
my $ar_ref = shift;
open (QRTR,">$output") or die "Cannot open $output : $!";
print QRTR @$ar_ref;
close (QRTR) or die "cannot close $output : $!";
}
my $cnt = 0;
my $rng = int($num_rec/$num_ch) + ($num_rec%$num_ch ? 1 : 0);
for (1..$num_ch) {
write_em($_,[@lines[$cnt..($_ == $num_ch ? $#lines : ($cnt+($r
+ng-1)))]]);
$cnt += $rng;
}
Feel free to comment or point me in the right direction where I have gone astray - this just scratched a specific itch ...
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.