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
braker.pl
line 6691 $err_stopCodonExcludedFromCDS = nice grep -c "exon doesn't end in stop codon" $errorfile if ($v > 3);
nice grep -c "exon doesn't end in stop codon" $errorfile
line 6696 $err_stopCodonExcludedFromCDS = grep -c "exon doesn't end in stop codon" $errorfile if ($v > 3);
grep -c "exon doesn't end in stop codon" $errorfile
line 6698 my $err_rate = $err_stopCodonExcludedFromCDS / $t_b_t;
if --verbosity were set below 3, all these three variables would have no values, then stopCodonExcludedFromCDS will be always set to be true!!!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
braker.pl
line 6691 $err_stopCodonExcludedFromCDS =
nice grep -c "exon doesn't end in stop codon" $errorfile
if ($v > 3);line 6696 $err_stopCodonExcludedFromCDS =
grep -c "exon doesn't end in stop codon" $errorfile
if ($v > 3);line 6698 my $err_rate = $err_stopCodonExcludedFromCDS / $t_b_t;
if --verbosity were set below 3, all these three variables would have no values, then stopCodonExcludedFromCDS will be always set to be true!!!
The text was updated successfully, but these errors were encountered: