Hi @PatrickRWright
the script blast2homfile.pl shows two uninitialized variables (skip_sort and evalcorr) in if statements
as far as I get it, perl variables are initialized "undefined", which is considered FALSE.
thus the current script will
- always run the sorting
(!$skip_sort)
- and ignore the eval correction
($evalcorr)
is the following (default) initialization correct:
$skip_sort=0 # ie. FALSE
$evalcorr=0 # ie. FALSE
which I would like to add to the top of the script..
Thanks for feedback,
Martin
Hi @PatrickRWright
the script
blast2homfile.plshows two uninitialized variables (skip_sortandevalcorr) inifstatementsCopraRNA/coprarna_aux/blast2homfile.pl
Line 9 in 6097464
as far as I get it, perl variables are initialized "undefined", which is considered FALSE.
thus the current script will
(!$skip_sort)($evalcorr)is the following (default) initialization correct:
which I would like to add to the top of the script..
Thanks for feedback,
Martin