Skip to content

Commit

Permalink
Ignore more calculated properties on conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
garrettjstevens committed Sep 20, 2024
1 parent 3d39e44 commit d81c5e7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/apollo-shared/src/GFF3/gff3ToAnnotationFeature.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,10 @@ function convertChildren(
const [firstChildFeatureLocation] = childFeature
if (
firstChildFeatureLocation.type === 'three_prime_UTR' ||
firstChildFeatureLocation.type === 'five_prime_UTR'
firstChildFeatureLocation.type === 'five_prime_UTR' ||
firstChildFeatureLocation.type === 'intron' ||
firstChildFeatureLocation.type === 'start_codon' ||
firstChildFeatureLocation.type === 'stop_codon'
) {
continue
}
Expand Down

0 comments on commit d81c5e7

Please sign in to comment.