in reply to Re: Return all the data from child to parent with Parallel::Forkmanager
in thread Return all the data from child to parent with Parallel::Forkmanager
Also, why not just:
my $ok = eval { read_genome(); read_mapfile(); read_GTF(); read_RM(); 1; }; if( ! $ok ) { warn "Got error while reading: $@"; };
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Return all the data from child to parent with Parallel::Forkmanager
by Anonymous Monk on Aug 18, 2017 at 15:21 UTC | |
by Corion (Patriarch) on Aug 18, 2017 at 20:38 UTC |