nerd has asked for the wisdom of the Perl Monks concerning the following question:
ThanksPerl Code 1. #!/usr/bin/perl 2. 3. use TAP3::Tap3edit; 4. use Data::Dumper; 5. use XML::Dumper; 6. 7. $Data::Dumper::Indent=1; 8. $Data::Dumper::Useqq=1; 9. 10. $filename=shift; 11. 12. if ( ! $filename ) { 13. die "Usage: $0 filename\n"; 14. } 15. 16. $tap3 = TAP3::Tap3edit->new(); 17. $tap3->decode($filename) || die $tap3->error; 18. 19. print Dumper ($tap3->structure);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: TAP & RAP files processing
by Anonymous Monk on Feb 21, 2008 at 09:13 UTC | |
by nerd (Initiate) on Feb 21, 2008 at 09:17 UTC | |
by Corion (Patriarch) on Feb 21, 2008 at 09:28 UTC |