in reply to Re^2: parsing metadata
in thread parsing metadata
Yes they are iRods meta data. But they are printed on screen and I don't want to push them to a file and create more overhead. I was trying something along like this:
And I getforeach my $re(@results){ next if $re =~/^AVUs defined/; warn $re; my $attribute= $1 if($re =~ /^attribute:\s+(.*)/); + my $value = $1 if($re =~ /^value: (.*)/); + | warn $attribute,$value;
attribute: md5 EVAL_ERROR: Use of uninitialized value $value in warn at Access.pl lin +e 125. A problem occurred at /nfs/users/nfs_a/aj6/CGP/Fluidigm/perl/scripts/L +oadGenotypingResults.pl line 61.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: parsing metadata
by AppleFritter (Vicar) on Sep 05, 2014 at 15:51 UTC | |
|
Re^4: parsing metadata
by Anonymous Monk on Sep 05, 2014 at 16:07 UTC |