-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
perl conflict #44
Comments
in addition proovread fail on line 1627
should be accordingly
|
used /local/gensoft2/adm/perl-5.22/bin/per to run proovread
this cause perl warnings and false error on the bam2cns status. see logs
|
Hi Eric, my suggestion would be to Cheers |
nop !!!!! central installation policy over here is to use a specific perl. user have another perl in path. solution is to be consistent in perl usage. so use the one that was used for the inner perl calls.
this way whatever perl is used, ALL the inner calls will be performed with the same interpreter. regards Eric |
I can appreciate the conflicts with your policy and I am sorry about the inconvenience. But at the moment, I do not have time to address them by changing the source code. I was only trying to provide you with quick fix. I hope you get things running on your system anyway. |
yes it does when applying the above patch. I'm so sorry patching your source code may be time consuming for the 2 lines of code to change |
Ah, okay, I did not realize that these two changes are already enough to fix everything. I thought that you were just pointing me at the first points of conflict you encountered, and that once I start looking into it, there will be a a lot more to be fixed.. Implementing these minor fixes should not be a problem at all. Thanks |
I do not see this applied to the current tree. |
setting provread to use a specific perl not in usr path, it will fail
eg
in user path /usr/bin/perl is 5.8
and we install proovread to use #!/some/where/perl perl > 5.10
proovread will handle an incorrect perl version in his calls due to the way RealPerl is determined
my $RealPerl = "perl -I${RealLib} $RealBin";
should be
my $RealPerl = ""$^X -I${RealLib} $RealBin";
in order to get the perl it is run with
regards
Eric
The text was updated successfully, but these errors were encountered: