-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathAnnotationFeatureModel.ts
More file actions
460 lines (450 loc) · 14.4 KB
/
AnnotationFeatureModel.ts
File metadata and controls
460 lines (450 loc) · 14.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
/* eslint-disable @typescript-eslint/no-unsafe-member-access */
/* eslint-disable @typescript-eslint/no-unsafe-call */
import { getSession, intersection2 } from '@jbrowse/core/util'
import {
type IAnyModelType,
type IMSTMap,
type Instance,
type SnapshotIn,
type SnapshotOrInstance,
cast,
getParentOfType,
getSnapshot,
types,
} from 'mobx-state-tree'
import { ApolloAssembly } from '.'
const LateAnnotationFeature = types.late(
(): IAnyModelType => AnnotationFeatureModel,
)
export interface TranscriptPartLocation {
min: number
max: number
}
export interface TranscriptPartNonCoding extends TranscriptPartLocation {
type: 'fivePrimeUTR' | 'threePrimeUTR' | 'intron' | 'exon'
}
export interface TranscriptPartCoding extends TranscriptPartLocation {
type: 'CDS'
phase: 0 | 1 | 2
}
export type TranscriptPart = TranscriptPartCoding | TranscriptPartNonCoding
type TranscriptParts = TranscriptPart[]
export const AnnotationFeatureModel = types
.model('AnnotationFeatureModel', {
_id: types.identifier,
/**
* User-facing identifier for this feature (where _id is the internal
* identifier)
*/
featureId: types.maybe(types.string),
/** Unique ID of the reference sequence on which this feature is located */
refSeq: types.string,
/**
* Type of feature. Can be any string, but is usually an ontology term,
* e.g. "gene" from the
* {@link http://sequenceontology.org/browser/current_release/term/SO:0000704 |Sequence Ontology}.
*/
type: types.string,
/**
* Coordinate of the edge of the feature that is closer to the beginning of
* the reference sequence. This can be thought of as the "start" of features
* on the positive strand. Uses interbase (0-based half-open) coordinates.
*/
min: types.number,
/**
* Coordinate of the edge of the feature that is closer to the end of the
* reference sequence. This can be thought of as the "end" of features on
* the positive strand. Uses interbase (0-based half-open) coordinates.
*/
max: types.number,
/**
* The strand on which the feature is located. `+1` for the positive (a.k.a.
* plus or forward) and `-1` for the negative (a.k.a minus or reverse)
* strand.
*/
strand: types.maybe(types.union(types.literal(1), types.literal(-1))),
/** Child features of this feature */
children: types.maybe(types.map(LateAnnotationFeature)),
/**
* Additional attributes of the feature. This could include name, source,
* note, dbxref, etc.
*/
attributes: types.map(types.array(types.string)),
})
.views((self) => ({
get length() {
return self.max - self.min
},
/**
* Possibly different from `min` because "The GFF3 format does not enforce a
* rule in which features must be wholly contained within the location of
* their parents"
*/
get minWithChildren() {
let { min } = self
const children = self.children as Children
if (!children) {
return min
}
for (const [, child] of children) {
min = Math.min(min, child.min)
}
return min
},
/**
* Possibly different from `max` because "The GFF3 format does not enforce a
* rule in which features must be wholly contained within the location of
* their parents"
*/
get maxWithChildren() {
let { max } = self
const children = self.children as Children
if (!children) {
return max
}
for (const [, child] of children) {
max = Math.max(max, child.max)
}
return max
},
hasDescendant(featureId: string) {
const children = self.children as Children
if (!children) {
return false
}
for (const [id, child] of children) {
if (id === featureId) {
return true
}
if (child.hasDescendant(featureId)) {
return true
}
}
return false
},
get transcriptExonParts(): TranscriptParts {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const session = getSession(self) as any
const { apolloDataStore } = session
const { featureTypeOntology } = apolloDataStore.ontologyManager
if (
!featureTypeOntology.isTypeOf(self.type, 'transcript') &&
!featureTypeOntology.isTypeOf(self.type, 'pseudogenic_transcript')
) {
throw new Error(
'Feature is not a transcript or equivalent, cannot calculate exon locations',
)
}
const children = self.children as Children
if (!children) {
throw new Error('No exons in transcript')
}
const sortedChildren = [...children.values()]
.filter((child) => featureTypeOntology.isTypeOf(child.type, 'exon'))
.sort((a, b) => a.min - b.min)
let lastMax = self.min
const parts: TranscriptParts = []
for (const child of sortedChildren) {
if (child.min > lastMax) {
parts.push({
min: lastMax,
max: child.min,
type: 'intron',
})
}
parts.push({
min: child.min,
max: child.max,
type: 'exon',
})
lastMax = child.max
}
if (lastMax < self.max) {
parts.push({
min: lastMax,
max: self.max,
type: 'intron',
})
}
if (self.strand === -1) {
parts.reverse()
}
return parts
},
get transcriptParts(): TranscriptParts[] {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const session = getSession(self) as any
const { apolloDataStore } = session
const { featureTypeOntology } = apolloDataStore.ontologyManager
if (
!featureTypeOntology.isTypeOf(self.type, 'transcript') &&
!featureTypeOntology.isTypeOf(self.type, 'pseudogenic_transcript')
) {
throw new Error(
'Only features of type "transcript" or equivalent can calculate CDS locations',
)
}
const children = self.children as Children
if (!children) {
throw new Error('no CDS or exons in transcript')
}
const cdsChildren = [...children.values()].filter((child) =>
featureTypeOntology.isTypeOf(child.type, 'CDS'),
)
const transcriptParts: TranscriptParts[] = []
if (cdsChildren.length === 0) {
transcriptParts.push(this.transcriptExonParts)
return transcriptParts
}
for (const cds of cdsChildren) {
const { max: cdsMax, min: cdsMin } = cds
const parts: TranscriptParts = []
let hasIntersected = false
const exonLocations: TranscriptPartLocation[] = []
for (const [, child] of children) {
if (featureTypeOntology.isTypeOf(child.type, 'exon')) {
exonLocations.push({ min: child.min, max: child.max })
}
}
exonLocations.sort(({ min: a }, { min: b }) => a - b)
for (const child of exonLocations) {
const lastPart = parts.at(-1)
if (lastPart) {
parts.push({ min: lastPart.max, max: child.min, type: 'intron' })
}
const [start, end] = intersection2(
cdsMin,
cdsMax,
child.min,
child.max,
)
let utrType: 'fivePrimeUTR' | 'threePrimeUTR'
if (hasIntersected) {
utrType = self.strand === 1 ? 'threePrimeUTR' : 'fivePrimeUTR'
} else {
utrType = self.strand === 1 ? 'fivePrimeUTR' : 'threePrimeUTR'
}
if (start !== undefined && end !== undefined) {
hasIntersected = true
if (start === child.min && end === child.max) {
parts.push({ min: start, max: end, phase: 0, type: 'CDS' })
} else if (start === child.min) {
parts.push(
{ min: start, max: end, phase: 0, type: 'CDS' },
{ min: end, max: child.max, type: utrType },
)
} else if (end === child.max) {
parts.push(
{ min: child.min, max: start, type: utrType },
{ min: start, max: end, phase: 0, type: 'CDS' },
)
} else {
parts.push(
{ min: child.min, max: start, type: utrType },
{ min: start, max: end, phase: 0, type: 'CDS' },
{
min: end,
max: child.max,
type:
utrType === 'fivePrimeUTR'
? 'threePrimeUTR'
: 'fivePrimeUTR',
},
)
}
} else {
parts.push({ min: child.min, max: child.max, type: utrType })
}
}
parts.sort(({ min: a }, { min: b }) => a - b)
if (self.strand === -1) {
parts.reverse()
}
let nextPhase: 0 | 1 | 2 = 0
const phasedParts = parts.map((loc) => {
if (loc.type !== 'CDS') {
return loc
}
const phase = nextPhase
nextPhase = ((3 - ((loc.max - loc.min - phase + 3) % 3)) % 3) as
| 0
| 1
| 2
return { ...loc, phase }
})
transcriptParts.push(phasedParts)
}
return transcriptParts
},
}))
.views((self) => ({
get cdsLocations(): TranscriptPartCoding[][] {
const { transcriptParts } = self
return transcriptParts.map((transcript) =>
transcript.filter((transcriptPart) => transcriptPart.type === 'CDS'),
)
},
get looksLikeGene(): boolean {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const session = getSession(self) as any
const { apolloDataStore } = session
const { featureTypeOntology } = apolloDataStore.ontologyManager
if (!featureTypeOntology) {
return false
}
const children = self.children as Children
if (!children?.size) {
return false
}
const isGene =
featureTypeOntology.isTypeOf(self.type, 'gene') ||
featureTypeOntology.isTypeOf(self.type, 'pseudogene')
if (!isGene) {
return false
}
for (const [, child] of children) {
if (
featureTypeOntology.isTypeOf(child.type, 'transcript') ||
featureTypeOntology.isTypeOf(child.type, 'pseudogenic_transcript')
) {
const { children: grandChildren } = child
if (!grandChildren?.size) {
return false
}
return [...grandChildren.values()].some((grandchild) =>
featureTypeOntology.isTypeOf(grandchild.type, 'exon'),
)
}
}
return false
},
}))
.actions((self) => ({
setAttributes(attributes: Map<string, string[]>) {
self.attributes.clear()
for (const [key, value] of attributes.entries()) {
self.attributes.set(key, value)
}
},
setAttribute(key: string, value: string[]) {
self.attributes.merge({ [key]: value })
},
setType(type: string) {
self.type = type
},
setRefSeq(refSeq: string) {
self.refSeq = refSeq
},
setMin(min: number) {
if (min > self.max) {
throw new Error(`Min "${min + 1}" is greater than max "${self.max}"`)
}
if (self.min !== min) {
self.min = min
}
},
setMax(max: number) {
if (max < self.min) {
throw new Error(`Max "${max}" is less than Min "${self.min}"`)
}
if (self.max !== max) {
self.max = max
}
},
setStrand(strand?: 1 | -1) {
self.strand = strand
},
addChild(childFeature: AnnotationFeatureSnapshot) {
if (self.children && self.children.size > 0) {
const existingChildren = getSnapshot<
Record<string, AnnotationFeatureSnapshot>
>(self.children)
self.children.clear()
for (const [, child] of Object.entries({
...existingChildren,
[childFeature._id]: childFeature,
}).sort(([, a], [, b]) => a.min - b.min)) {
self.children.put(child)
}
} else {
self.children = cast({})
self.children?.put(childFeature)
}
},
deleteChild(childFeatureId: string) {
self.children?.delete(childFeatureId)
},
}))
.actions((self) => ({
update({
children,
max,
min,
refSeq,
strand,
}: {
refSeq: string
min: number
max: number
strand?: 1 | -1
children?: SnapshotOrInstance<typeof self.children>
}) {
self.setRefSeq(refSeq)
self.setMin(min)
self.setMax(max)
self.setStrand(strand)
if (children) {
self.children = cast(children)
}
},
}))
// This views block has to be last to avoid:
// "'parent' is referenced directly or indirectly in its own type annotation."
.views((self) => ({
get parent(): AnnotationFeature | undefined {
let parent: AnnotationFeature | undefined
try {
parent = getParentOfType(self, AnnotationFeatureModel)
} catch {
// pass
}
return parent
},
get topLevelFeature(): AnnotationFeature {
let feature = self
let parent
do {
try {
parent = getParentOfType(feature, AnnotationFeatureModel)
feature = parent
} catch {
parent = undefined
}
} while (parent)
return feature as AnnotationFeature
},
get assemblyId(): string {
return getParentOfType(self, ApolloAssembly)._id
},
}))
export type Children = IMSTMap<typeof AnnotationFeatureModel> | undefined
// eslint disables because of
// https://mobx-state-tree.js.org/tips/typescript#using-a-mst-type-at-design-time
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
interface AnnotationFeatureRaw
extends Instance<typeof AnnotationFeatureModel> {}
// This type isn't exactly right, since "children" is actually an IMSTMap and
// not a Map, but it's better than typing it as any.
export interface AnnotationFeature
extends Omit<AnnotationFeatureRaw, 'children'> {
children?: Map<string | number, AnnotationFeature>
}
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
interface AnnotationFeatureSnapshotRaw
extends SnapshotIn<typeof AnnotationFeatureModel> {}
export interface AnnotationFeatureSnapshot
extends AnnotationFeatureSnapshotRaw {
/** Child features of this feature */
children?: Record<string, AnnotationFeatureSnapshot>
}