GBrowse
view release on metacpan or search on metacpan
bin/gtf2gff3.pl view on Meta::CPAN
# #The next phase is equal to this phase
# #plus the modulus 3 of the length wrapped
# #at 2.
# $next_phase = $feature->{phase} + $hang_5;
# $next_phase -= 3 if $next_phase > 2;
# This was update 5/24/10 in response to an
# e-mail from Leighton Prichard regarding
# errors in the GFF3 spec. The code above
# calculates the phase correctly, but the
# formula suggested by Leighton is cleaner.
$next_phase = ($feature->{phase} - $length) % 3;
}
return ($feature, $next_phase);
}
#-----------------------------------------------------------------------------
sub validate_and_build_gene {
my $trnscs = shift;
( run in 0.623 second using v1.01-cache-2.11-cpan-3cd7ad12f66 )