Skip to content

Commit

Permalink
Added a Check Installations macro to help find pathing issues. Incorp…
Browse files Browse the repository at this point in the history
…orated frame skipping capacity to SEQ and CSQ conversion. v 2.9
  • Loading branch information
gtatters committed Jun 14, 2023
1 parent 280f1b6 commit cbfc0c6
Show file tree
Hide file tree
Showing 2 changed files with 523 additions and 180 deletions.
4 changes: 2 additions & 2 deletions scripts/split.pl
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
#print $i;
# then save
for (my $i = 0; $i<$len; $i++) {
$outfilename = ">$folder/$outfilebase" . sprintf("%05d",++$n) . $outext;
$outfilename = ">$folder/$outfilebase" . sprintf("%06d",++$n) . $outext;
open(OUT, $outfilename);
binmode(OUT, ":raw");
print OUT $content[$ind[$i]];
Expand All @@ -124,7 +124,7 @@

# Split infilename based on $pat
for my $content (split(/(?=$pat)/, $file)) {
$outfilename = ">$folder/$outfilebase" . sprintf("%05d",++$n) . $outext;
$outfilename = ">$folder/$outfilebase" . sprintf("%06d",++$n) . $outext;
open(OUT, $outfilename);
binmode(OUT, ":raw");
print OUT $content;
Expand Down

0 comments on commit cbfc0c6

Please sign in to comment.