We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello,
in some cases installation may be performed with a perl intreperter different for the one avaiable on user path. (it is our case).
so in order to use the same perl interpreter it would be nice to change the perl calls to $^X that refers to the running perl used by the scripts.
perl
$^X
as example in autoAugTrain.pl change $cmdString = "grep complete ../pasa/$pasaDBname.assemblies.fasta.transdecoder.cds | perl -pe ".'\'s/>(\S+).*/$1\$/\' | perl -pe \'s#\\.#\\\\.#g\' 1> pasa.complete.lst'; to $cmdString = "grep complete ../pasa/$pasaDBname.assemblies.fasta.transdecoder.cds | $^X -pe ".'\'s/>(\S+).*/$1\$/\' | $^X -pe \'s#\\.#\\\\.#g\' 1> pasa.complete.lst';
autoAugTrain.pl
$cmdString = "grep complete ../pasa/$pasaDBname.assemblies.fasta.transdecoder.cds | perl -pe ".'\'s/>(\S+).*/$1\$/\' | perl -pe \'s#\\.#\\\\.#g\' 1> pasa.complete.lst';
$cmdString = "grep complete ../pasa/$pasaDBname.assemblies.fasta.transdecoder.cds | $^X -pe ".'\'s/>(\S+).*/$1\$/\' | $^X -pe \'s#\\.#\\\\.#g\' 1> pasa.complete.lst';
this could be applied to the following perl scripts.
autoAug.pl autoAugPred.pl autoAugTrain.pl evalCGP.pl eval_dualdecomp.pl eval_multi_gtf.pl hal2maf_split.pl optimize_augustus.pl parseSim4Output.pl peptides2hints.pl runAllSim4.pl writeResultsPage.pl
NB augustify.py and fix_in_frame_stop_codon_genes.py required a manual edition (in our case) in order to set perl interpreter to the correct one.
augustify.py
fix_in_frame_stop_codon_genes.py
regards
Eric
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
in some cases installation may be performed with a perl intreperter different for the one avaiable on user path.
(it is our case).
so in order to use the same perl interpreter it would be nice to change the
perl
calls to$^X
that refers to the running perl used by the scripts.as example in
autoAugTrain.pl
change
$cmdString = "grep complete ../pasa/$pasaDBname.assemblies.fasta.transdecoder.cds | perl -pe ".'\'s/>(\S+).*/$1\$/\' | perl -pe \'s#\\.#\\\\.#g\' 1> pasa.complete.lst';
to
$cmdString = "grep complete ../pasa/$pasaDBname.assemblies.fasta.transdecoder.cds | $^X -pe ".'\'s/>(\S+).*/$1\$/\' | $^X -pe \'s#\\.#\\\\.#g\' 1> pasa.complete.lst';
this could be applied to the following perl scripts.
NB
augustify.py
andfix_in_frame_stop_codon_genes.py
required a manual edition (in our case) in order to setperl
interpreter to the correct one.regards
Eric
The text was updated successfully, but these errors were encountered: