- {transcriptItems.map((item, index) => (
-
-
- {featureTypeOntology.isTypeOf(item.type, 'three_prime_UTR')
- ? '3 UTR'
- : // eslint-disable-next-line unicorn/no-nested-ternary
- featureTypeOntology.isTypeOf(item.type, 'five_prime_UTR')
- ? '5 UTR'
- : 'CDS'}
-
-
- {item.startSeq}
-
- {
- handleStartChange(newStart, item.id, Number(item.oldMin))
- }}
- />
-
- {/* eslint-disable-next-line unicorn/no-nested-ternary */}
- {item.strand === -1 ? '-' : item.strand === 1 ? '+' : ''}
-
- {
- handleEndChange(newEnd, item.id, Number(item.oldMax))
- }}
- />
-
- {item.endSeq}
-
-
- ))}
-
+