@teselagen/sequence-utils 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (81) hide show
  1. package/DNAComplementMap.d.ts +30 -0
  2. package/addGapsToSeqReads.d.ts +4 -0
  3. package/adjustAnnotationsToInsert.d.ts +1 -0
  4. package/adjustBpsToReplaceOrInsert.d.ts +1 -0
  5. package/aliasedEnzymesByName.d.ts +2 -0
  6. package/aminoAcidToDegenerateDnaMap.d.ts +32 -0
  7. package/aminoAcidToDegenerateRnaMap.d.ts +32 -0
  8. package/annotateSingleSeq.d.ts +7 -0
  9. package/annotationTypes.d.ts +3 -0
  10. package/autoAnnotate.d.ts +8 -0
  11. package/bioData.d.ts +396 -0
  12. package/calculateNebTa.d.ts +4 -0
  13. package/calculateNebTm.d.ts +3 -0
  14. package/calculatePercentGC.d.ts +1 -0
  15. package/calculateTm.d.ts +2 -0
  16. package/computeDigestFragments.d.ts +27 -0
  17. package/condensePairwiseAlignmentDifferences.d.ts +1 -0
  18. package/convertAACaretPositionOrRangeToDna.d.ts +1 -0
  19. package/convertDnaCaretPositionOrRangeToAA.d.ts +1 -0
  20. package/cutSequenceByRestrictionEnzyme.d.ts +1 -0
  21. package/defaultEnzymesByName.d.ts +2 -0
  22. package/degenerateDnaToAminoAcidMap.d.ts +2 -0
  23. package/degenerateRnaToAminoAcidMap.d.ts +2 -0
  24. package/deleteSequenceDataAtRange.d.ts +1 -0
  25. package/diffUtils.d.ts +7 -0
  26. package/doesEnzymeChopOutsideOfRecognitionSite.d.ts +1 -0
  27. package/featureTypesAndColors.d.ts +12 -0
  28. package/filterAminoAcidSequenceString.d.ts +1 -0
  29. package/filterSequenceString.d.ts +1 -0
  30. package/findNearestRangeOfSequenceOverlapToPosition.d.ts +2 -0
  31. package/findOrfsInPlasmid.d.ts +1 -0
  32. package/findSequenceMatches.d.ts +1 -0
  33. package/generateAnnotations.d.ts +2 -0
  34. package/generateSequenceData.d.ts +19 -0
  35. package/getAllInsertionsInSeqReads.d.ts +1 -0
  36. package/getAminoAcidDataForEachBaseOfDna.d.ts +20 -0
  37. package/getAminoAcidFromSequenceTriplet.d.ts +1 -0
  38. package/getAminoAcidStringFromSequenceString.d.ts +1 -0
  39. package/getCodonRangeForAASliver.d.ts +4 -0
  40. package/getComplementAminoAcidStringFromSequenceString.d.ts +1 -0
  41. package/getComplementSequenceAndAnnotations.d.ts +1 -0
  42. package/getComplementSequenceString.d.ts +1 -0
  43. package/getCutsiteType.d.ts +1 -0
  44. package/getCutsitesFromSequence.d.ts +1 -0
  45. package/getDegenerateDnaStringFromAAString.d.ts +1 -0
  46. package/getDegenerateRnaStringFromAAString.d.ts +1 -0
  47. package/getDigestFragmentsForCutsites.d.ts +1 -0
  48. package/getDigestFragmentsForRestrictionEnzymes.d.ts +1 -0
  49. package/getInsertBetweenVals.d.ts +1 -0
  50. package/getLeftAndRightOfSequenceInRangeGivenPosition.d.ts +4 -0
  51. package/getMassOfAaString.d.ts +9 -0
  52. package/getOrfsFromSequence.d.ts +10 -0
  53. package/getOverlapBetweenTwoSequences.d.ts +9 -0
  54. package/getPossiblePartsFromSequenceAndEnzymes.d.ts +1 -0
  55. package/getReverseAminoAcidStringFromSequenceString.d.ts +1 -0
  56. package/getReverseComplementAminoAcidStringFromSequenceString.d.ts +1 -0
  57. package/getReverseComplementAnnotation.d.ts +1 -0
  58. package/getReverseComplementSequenceAndAnnotations.d.ts +1 -0
  59. package/getReverseComplementSequenceString.d.ts +1 -0
  60. package/getReverseSequenceString.d.ts +1 -0
  61. package/getSequenceDataBetweenRange.d.ts +1 -0
  62. package/getVirtualDigest.d.ts +13 -0
  63. package/guessIfSequenceIsDnaAndNotProtein.d.ts +1 -0
  64. package/index.d.ts +85 -0
  65. package/index.js +53 -0
  66. package/index.mjs +17927 -0
  67. package/insertGapsIntoRefSeq.d.ts +1 -0
  68. package/insertSequenceDataAtPosition.d.ts +2 -0
  69. package/insertSequenceDataAtPositionOrRange.d.ts +1 -0
  70. package/isEnzymeType2S.d.ts +1 -0
  71. package/mapAnnotationsToRows.d.ts +3 -0
  72. package/package.json +11 -0
  73. package/prepareCircularViewData.d.ts +1 -0
  74. package/prepareRowData.d.ts +6 -0
  75. package/proteinAlphabet.d.ts +255 -0
  76. package/rotateBpsToPosition.d.ts +1 -0
  77. package/rotateSequenceDataToPosition.d.ts +1 -0
  78. package/shiftAnnotationsByLen.d.ts +5 -0
  79. package/threeLetterSequenceStringToAminoAcidMap.d.ts +898 -0
  80. package/tidyUpAnnotation.d.ts +11 -0
  81. package/tidyUpSequenceData.d.ts +1 -0
@@ -0,0 +1,30 @@
1
+ export default DNAComplementMap;
2
+ declare const DNAComplementMap: {
3
+ ".": string;
4
+ a: string;
5
+ t: string;
6
+ u: string;
7
+ c: string;
8
+ g: string;
9
+ A: string;
10
+ T: string;
11
+ U: string;
12
+ C: string;
13
+ G: string;
14
+ r: string;
15
+ R: string;
16
+ y: string;
17
+ Y: string;
18
+ d: string;
19
+ D: string;
20
+ h: string;
21
+ H: string;
22
+ k: string;
23
+ K: string;
24
+ m: string;
25
+ M: string;
26
+ v: string;
27
+ V: string;
28
+ b: string;
29
+ B: string;
30
+ };
@@ -0,0 +1,4 @@
1
+ export default function addGapsToSeqReads(refSeq: any, seqReads: any): {
2
+ name: any;
3
+ sequence: any;
4
+ }[];
@@ -0,0 +1 @@
1
+ export default function adjustAnnotationsToInsert(annotationsToBeAdjusted: any, insertStart: any, insertLength: any): any[];
@@ -0,0 +1 @@
1
+ export default function adjustBpsToReplaceOrInsert(bpString: any, insertString: string | undefined, caretPositionOrRange: any): any;
@@ -0,0 +1,2 @@
1
+ export default aliasedEnzymesByName;
2
+ declare const aliasedEnzymesByName: {};
@@ -0,0 +1,32 @@
1
+ export default aminoAcidToDegenerateDnaMap;
2
+ declare const aminoAcidToDegenerateDnaMap: {
3
+ "-": string;
4
+ ".": string;
5
+ "*": string;
6
+ a: string;
7
+ b: string;
8
+ c: string;
9
+ d: string;
10
+ e: string;
11
+ f: string;
12
+ g: string;
13
+ h: string;
14
+ i: string;
15
+ j: string;
16
+ k: string;
17
+ l: string;
18
+ m: string;
19
+ n: string;
20
+ o: string;
21
+ p: string;
22
+ q: string;
23
+ r: string;
24
+ s: string;
25
+ t: string;
26
+ u: string;
27
+ v: string;
28
+ w: string;
29
+ x: string;
30
+ y: string;
31
+ z: string;
32
+ };
@@ -0,0 +1,32 @@
1
+ export default aminoAcidToDegenerateRnaMap;
2
+ declare const aminoAcidToDegenerateRnaMap: {
3
+ "-": string;
4
+ ".": string;
5
+ "*": string;
6
+ a: string;
7
+ b: string;
8
+ c: string;
9
+ d: string;
10
+ e: string;
11
+ f: string;
12
+ g: string;
13
+ h: string;
14
+ i: string;
15
+ j: string;
16
+ k: string;
17
+ l: string;
18
+ m: string;
19
+ n: string;
20
+ o: string;
21
+ p: string;
22
+ q: string;
23
+ r: string;
24
+ s: string;
25
+ t: string;
26
+ u: string;
27
+ v: string;
28
+ w: string;
29
+ x: string;
30
+ y: string;
31
+ z: string;
32
+ };
@@ -0,0 +1,7 @@
1
+ export default annotateSingleSeq;
2
+ declare function annotateSingleSeq({ fullSeq, searchSeq }: {
3
+ fullSeq: any;
4
+ searchSeq: any;
5
+ }): {
6
+ matches: any;
7
+ };
@@ -0,0 +1,3 @@
1
+ declare const _default: string[];
2
+ export default _default;
3
+ export const modifiableTypes: string[];
@@ -0,0 +1,8 @@
1
+ export function convertProteinSeqToDNAIupac(sequence: any): string;
2
+ export function convertApELikeRegexToRegex(regString?: string): string;
3
+ export function autoAnnotate({ seqsToAnnotateById, annotationsToCheckById, compareName, warnIfMoreThan }: {
4
+ seqsToAnnotateById: any;
5
+ annotationsToCheckById: any;
6
+ compareName: any;
7
+ warnIfMoreThan: any;
8
+ }): {};
package/bioData.d.ts ADDED
@@ -0,0 +1,396 @@
1
+ export const protein_letters: "ACDEFGHIKLMNPQRSTVWY";
2
+ export const extended_protein_letters: "ACDEFGHIKLMNPQRSTVWYBXZJUO.*-";
3
+ export namespace protein_letters_1to3 {
4
+ const A: string;
5
+ const C: string;
6
+ const D: string;
7
+ const E: string;
8
+ const F: string;
9
+ const G: string;
10
+ const H: string;
11
+ const I: string;
12
+ const K: string;
13
+ const L: string;
14
+ const M: string;
15
+ const N: string;
16
+ const P: string;
17
+ const Q: string;
18
+ const R: string;
19
+ const S: string;
20
+ const T: string;
21
+ const V: string;
22
+ const W: string;
23
+ const Y: string;
24
+ const O: string;
25
+ const U: string;
26
+ }
27
+ export const ambiguous_dna_letters: "GATCRYWSMKHBVDN";
28
+ export const unambiguous_dna_letters: "GATC";
29
+ export const ambiguous_rna_letters: "GAUCRYWSMKHBVDN";
30
+ export const unambiguous_rna_letters: "GAUC";
31
+ export const extended_dna_letters: "GATCBDSW";
32
+ export const ambiguous_dna_values: {
33
+ ".": string;
34
+ A: string;
35
+ C: string;
36
+ G: string;
37
+ T: string;
38
+ M: string;
39
+ R: string;
40
+ W: string;
41
+ S: string;
42
+ Y: string;
43
+ K: string;
44
+ V: string;
45
+ H: string;
46
+ D: string;
47
+ B: string;
48
+ X: string;
49
+ N: string;
50
+ };
51
+ export const ambiguous_rna_values: {
52
+ ".": string;
53
+ A: string;
54
+ C: string;
55
+ G: string;
56
+ U: string;
57
+ M: string;
58
+ R: string;
59
+ W: string;
60
+ S: string;
61
+ Y: string;
62
+ K: string;
63
+ V: string;
64
+ H: string;
65
+ D: string;
66
+ B: string;
67
+ X: string;
68
+ N: string;
69
+ };
70
+ export const ambiguous_dna_complement: {
71
+ ".": string;
72
+ A: string;
73
+ C: string;
74
+ G: string;
75
+ T: string;
76
+ M: string;
77
+ R: string;
78
+ W: string;
79
+ S: string;
80
+ Y: string;
81
+ K: string;
82
+ V: string;
83
+ H: string;
84
+ D: string;
85
+ B: string;
86
+ X: string;
87
+ N: string;
88
+ };
89
+ export const ambiguous_rna_complement: {
90
+ ".": string;
91
+ A: string;
92
+ C: string;
93
+ G: string;
94
+ U: string;
95
+ M: string;
96
+ R: string;
97
+ W: string;
98
+ S: string;
99
+ Y: string;
100
+ K: string;
101
+ V: string;
102
+ H: string;
103
+ D: string;
104
+ B: string;
105
+ X: string;
106
+ N: string;
107
+ };
108
+ export namespace unambiguous_dna_weights {
109
+ const A_1: number;
110
+ export { A_1 as A };
111
+ const C_1: number;
112
+ export { C_1 as C };
113
+ const G_1: number;
114
+ export { G_1 as G };
115
+ const T_1: number;
116
+ export { T_1 as T };
117
+ }
118
+ export namespace monoisotopic_unambiguous_dna_weights {
119
+ const A_2: number;
120
+ export { A_2 as A };
121
+ const C_2: number;
122
+ export { C_2 as C };
123
+ const G_2: number;
124
+ export { G_2 as G };
125
+ const T_2: number;
126
+ export { T_2 as T };
127
+ }
128
+ export namespace unambiguous_rna_weights {
129
+ const A_3: number;
130
+ export { A_3 as A };
131
+ const C_3: number;
132
+ export { C_3 as C };
133
+ const G_3: number;
134
+ export { G_3 as G };
135
+ const U_1: number;
136
+ export { U_1 as U };
137
+ }
138
+ export namespace monoisotopic_unambiguous_rna_weights {
139
+ const A_4: number;
140
+ export { A_4 as A };
141
+ const C_4: number;
142
+ export { C_4 as C };
143
+ const G_4: number;
144
+ export { G_4 as G };
145
+ const U_2: number;
146
+ export { U_2 as U };
147
+ }
148
+ export namespace protein_weights {
149
+ const A_5: number;
150
+ export { A_5 as A };
151
+ const C_5: number;
152
+ export { C_5 as C };
153
+ const D_1: number;
154
+ export { D_1 as D };
155
+ const E_1: number;
156
+ export { E_1 as E };
157
+ const F_1: number;
158
+ export { F_1 as F };
159
+ const G_5: number;
160
+ export { G_5 as G };
161
+ const H_1: number;
162
+ export { H_1 as H };
163
+ const I_1: number;
164
+ export { I_1 as I };
165
+ const K_1: number;
166
+ export { K_1 as K };
167
+ const L_1: number;
168
+ export { L_1 as L };
169
+ const M_1: number;
170
+ export { M_1 as M };
171
+ const N_1: number;
172
+ export { N_1 as N };
173
+ const O_1: number;
174
+ export { O_1 as O };
175
+ const P_1: number;
176
+ export { P_1 as P };
177
+ const Q_1: number;
178
+ export { Q_1 as Q };
179
+ const R_1: number;
180
+ export { R_1 as R };
181
+ const S_1: number;
182
+ export { S_1 as S };
183
+ const T_3: number;
184
+ export { T_3 as T };
185
+ const U_3: number;
186
+ export { U_3 as U };
187
+ const V_1: number;
188
+ export { V_1 as V };
189
+ const W_1: number;
190
+ export { W_1 as W };
191
+ const Y_1: number;
192
+ export { Y_1 as Y };
193
+ }
194
+ export namespace monoisotopic_protein_weights {
195
+ const A_6: number;
196
+ export { A_6 as A };
197
+ const C_6: number;
198
+ export { C_6 as C };
199
+ const D_2: number;
200
+ export { D_2 as D };
201
+ const E_2: number;
202
+ export { E_2 as E };
203
+ const F_2: number;
204
+ export { F_2 as F };
205
+ const G_6: number;
206
+ export { G_6 as G };
207
+ const H_2: number;
208
+ export { H_2 as H };
209
+ const I_2: number;
210
+ export { I_2 as I };
211
+ const K_2: number;
212
+ export { K_2 as K };
213
+ const L_2: number;
214
+ export { L_2 as L };
215
+ const M_2: number;
216
+ export { M_2 as M };
217
+ const N_2: number;
218
+ export { N_2 as N };
219
+ const O_2: number;
220
+ export { O_2 as O };
221
+ const P_2: number;
222
+ export { P_2 as P };
223
+ const Q_2: number;
224
+ export { Q_2 as Q };
225
+ const R_2: number;
226
+ export { R_2 as R };
227
+ const S_2: number;
228
+ export { S_2 as S };
229
+ const T_4: number;
230
+ export { T_4 as T };
231
+ const U_4: number;
232
+ export { U_4 as U };
233
+ const V_2: number;
234
+ export { V_2 as V };
235
+ const W_2: number;
236
+ export { W_2 as W };
237
+ const Y_2: number;
238
+ export { Y_2 as Y };
239
+ }
240
+ export const extended_protein_values: {
241
+ A: string;
242
+ B: string;
243
+ C: string;
244
+ D: string;
245
+ E: string;
246
+ F: string;
247
+ G: string;
248
+ H: string;
249
+ I: string;
250
+ J: string;
251
+ K: string;
252
+ L: string;
253
+ M: string;
254
+ N: string;
255
+ O: string;
256
+ P: string;
257
+ Q: string;
258
+ R: string;
259
+ S: string;
260
+ T: string;
261
+ U: string;
262
+ V: string;
263
+ W: string;
264
+ X: string;
265
+ Y: string;
266
+ Z: string;
267
+ "*": string;
268
+ ".": string;
269
+ "-": string;
270
+ };
271
+ export namespace atom_weights {
272
+ const H_3: number;
273
+ export { H_3 as H };
274
+ const D_3: number;
275
+ export { D_3 as D };
276
+ export const He: number;
277
+ export const Li: number;
278
+ export const Be: number;
279
+ export const B: number;
280
+ const C_7: number;
281
+ export { C_7 as C };
282
+ const N_3: number;
283
+ export { N_3 as N };
284
+ const O_3: number;
285
+ export { O_3 as O };
286
+ const F_3: number;
287
+ export { F_3 as F };
288
+ export const Ne: number;
289
+ export const Na: number;
290
+ export const Mg: number;
291
+ export const Al: number;
292
+ export const Si: number;
293
+ const P_3: number;
294
+ export { P_3 as P };
295
+ const S_3: number;
296
+ export { S_3 as S };
297
+ export const Cl: number;
298
+ export const Ar: number;
299
+ const K_3: number;
300
+ export { K_3 as K };
301
+ export const Ca: number;
302
+ export const Sc: number;
303
+ export const Ti: number;
304
+ const V_3: number;
305
+ export { V_3 as V };
306
+ export const Cr: number;
307
+ export const Mn: number;
308
+ export const Fe: number;
309
+ export const Co: number;
310
+ export const Ni: number;
311
+ export const Cu: number;
312
+ export const Zn: number;
313
+ export const Ga: number;
314
+ export const Ge: number;
315
+ export const As: number;
316
+ export const Se: number;
317
+ export const Br: number;
318
+ export const Kr: number;
319
+ export const Rb: number;
320
+ export const Sr: number;
321
+ const Y_3: number;
322
+ export { Y_3 as Y };
323
+ export const Zr: number;
324
+ export const Nb: number;
325
+ export const Mo: number;
326
+ export const Tc: number;
327
+ export const Ru: number;
328
+ export const Rh: number;
329
+ export const Pd: number;
330
+ export const Ag: number;
331
+ export const Cd: number;
332
+ export const In: number;
333
+ export const Sn: number;
334
+ export const Sb: number;
335
+ export const Te: number;
336
+ const I_3: number;
337
+ export { I_3 as I };
338
+ export const Xe: number;
339
+ export const Cs: number;
340
+ export const Ba: number;
341
+ export const La: number;
342
+ export const Ce: number;
343
+ export const Pr: number;
344
+ export const Nd: number;
345
+ export const Pm: number;
346
+ export const Sm: number;
347
+ export const Eu: number;
348
+ export const Gd: number;
349
+ export const Tb: number;
350
+ export const Dy: number;
351
+ export const Ho: number;
352
+ export const Er: number;
353
+ export const Tm: number;
354
+ export const Yb: number;
355
+ export const Lu: number;
356
+ export const Hf: number;
357
+ export const Ta: number;
358
+ const W_3: number;
359
+ export { W_3 as W };
360
+ export const Re: number;
361
+ export const Os: number;
362
+ export const Ir: number;
363
+ export const Pt: number;
364
+ export const Au: number;
365
+ export const Hg: number;
366
+ export const Tl: number;
367
+ export const Pb: number;
368
+ export const Bi: number;
369
+ export const Po: number;
370
+ export const At: number;
371
+ export const Rn: number;
372
+ export const Fr: number;
373
+ export const Ra: number;
374
+ export const Ac: number;
375
+ export const Th: number;
376
+ export const Pa: number;
377
+ const U_5: number;
378
+ export { U_5 as U };
379
+ export const Np: number;
380
+ export const Pu: number;
381
+ export const Am: number;
382
+ export const Cm: number;
383
+ export const Bk: number;
384
+ export const Cf: number;
385
+ export const Es: number;
386
+ export const Fm: number;
387
+ export const Md: number;
388
+ export const No: number;
389
+ export const Lr: number;
390
+ export const Rf: number;
391
+ export const Db: number;
392
+ export const Sg: number;
393
+ export const Bh: number;
394
+ export const Hs: number;
395
+ export const Mt: number;
396
+ }
@@ -0,0 +1,4 @@
1
+ export default function calculateNebTa(sequences: any, primerConc: any, { monovalentCationConc, polymerase }?: {
2
+ monovalentCationConc: any;
3
+ polymerase: any;
4
+ }): any;
@@ -0,0 +1,3 @@
1
+ export default function calculateNebTm(sequence: any, primerConc: any, { monovalentCationConc }?: {
2
+ monovalentCationConc: any;
3
+ }): string | number;
@@ -0,0 +1 @@
1
+ export default function calculatePercentGC(bps: any): number;
@@ -0,0 +1,2 @@
1
+ declare function _default(sequence: string, type: string, A: Double, R: Double, C: any, Na: Double): Double;
2
+ export default _default;
@@ -0,0 +1,27 @@
1
+ export function computeDigestFragments({ cutsites, sequenceLength, circular, includeOverAndUnderHangs, computePartialDigest, computeDigestDisabled, computePartialDigestDisabled, selectionLayerUpdate, updateSelectedFragment }: {
2
+ cutsites: any;
3
+ sequenceLength: any;
4
+ circular: any;
5
+ includeOverAndUnderHangs: any;
6
+ computePartialDigest: any;
7
+ computeDigestDisabled: any;
8
+ computePartialDigestDisabled: any;
9
+ selectionLayerUpdate: any;
10
+ updateSelectedFragment: any;
11
+ }): {
12
+ computePartialDigestDisabled: any;
13
+ computeDigestDisabled: any;
14
+ fragments: any[];
15
+ overlappingEnzymes: any[];
16
+ };
17
+ export function getDigestFragsForSeqAndEnzymes({ sequence, circular, enzymes, includeOverAndUnderHangs }: {
18
+ sequence: any;
19
+ circular: any;
20
+ enzymes: any;
21
+ includeOverAndUnderHangs: any;
22
+ }): {
23
+ computePartialDigestDisabled: any;
24
+ computeDigestDisabled: any;
25
+ fragments: any[];
26
+ overlappingEnzymes: any[];
27
+ };
@@ -0,0 +1 @@
1
+ export default function condensePairwiseAlignmentDifferences(referenceSeq: any, alignedSeq: any): string;
@@ -0,0 +1 @@
1
+ export default function convertAACaretPositionOrRangeToDna(rangeOrCaret: any): any;
@@ -0,0 +1 @@
1
+ export default function convertDnaCaretPositionOrRangeToAA(rangeOrCaret: any): any;
@@ -0,0 +1 @@
1
+ export default function cutSequenceByRestrictionEnzyme(pSequence: any, circular: any, restrictionEnzyme: any): any[];
@@ -0,0 +1,2 @@
1
+ export default defaultEnzymesByName;
2
+ declare const defaultEnzymesByName: {};
@@ -0,0 +1,2 @@
1
+ export default degenerateDnaToAminoAcidMap;
2
+ declare const degenerateDnaToAminoAcidMap: import("lodash").Dictionary<string>;
@@ -0,0 +1,2 @@
1
+ export default degenerateRnaToAminoAcidMap;
2
+ declare const degenerateRnaToAminoAcidMap: import("lodash").Dictionary<string>;
@@ -0,0 +1 @@
1
+ export default function deleteSequenceDataAtRange(sequenceData: any, range: any): any;
package/diffUtils.d.ts ADDED
@@ -0,0 +1,7 @@
1
+ export function getDiffFromSeqs(oldData: any, newData: any, { ignoreKeys }?: {
2
+ ignoreKeys?: any[] | undefined;
3
+ }): import("jsondiffpatch").Delta | undefined;
4
+ export function patchSeqWithDiff(oldData: any, diff: any, { ignoreKeys }?: {
5
+ ignoreKeys?: any[] | undefined;
6
+ }): any;
7
+ export function reverseSeqDiff(diff: any): import("jsondiffpatch").Delta | undefined;
@@ -0,0 +1 @@
1
+ export default function doesEnzymeChopOutsideOfRecognitionSite(enzyme: any): boolean;
@@ -0,0 +1,12 @@
1
+ export function getGenbankFeatureToColorMap(): {};
2
+ export const genbankFeatureTypes: {
3
+ name: string;
4
+ color: string;
5
+ }[];
6
+ export function getFeatureToColorMap({ includeHidden }?: {
7
+ includeHidden: any;
8
+ }): {};
9
+ export function getFeatureTypes({ includeHidden }?: {
10
+ includeHidden: any;
11
+ }): any[];
12
+ export function getMergedFeatureMap(): any;
@@ -0,0 +1 @@
1
+ export default function filterAminoAcidSequenceString(sequenceString: any, options: any): any;
@@ -0,0 +1 @@
1
+ export default function filterSequenceString(sequenceString: any, additionalValidChars: string | undefined, charOverrides: any): any;
@@ -0,0 +1,2 @@
1
+ export default findNearestRangeOfSequenceOverlapToPosition;
2
+ declare function findNearestRangeOfSequenceOverlapToPosition(sequenceToSearch: any, overlapSequence: any, positionStart: any, isLinear: any): any;
@@ -0,0 +1 @@
1
+ export default function findOrfsInPlasmid(sequence: any, circular: any, minimumOrfSize: any, useAdditionalOrfStartCodons: any): Teselagen.bio.orf.ORF[];
@@ -0,0 +1 @@
1
+ export default function findSequenceMatches(sequence: any, searchString: any, options?: {}): any[];
@@ -0,0 +1,2 @@
1
+ export default generateAnnotations;
2
+ declare function generateAnnotations(numberOfAnnotationsToGenerate: any, start: any, end: any, maxLength: any): {};
@@ -0,0 +1,19 @@
1
+ export default function generateSequenceData({ isProtein, sequenceLength, numFeatures, numParts, numPrimers, numTranslations }?: {
2
+ isProtein: any;
3
+ sequenceLength?: number | undefined;
4
+ numFeatures: any;
5
+ numParts: any;
6
+ numPrimers: any;
7
+ numTranslations: any;
8
+ }): {
9
+ circular: boolean;
10
+ name: string;
11
+ description: string;
12
+ isProtein: any;
13
+ sequence: string | false;
14
+ proteinSequence: any;
15
+ translations: {} | undefined;
16
+ features: {};
17
+ primers: {} | undefined;
18
+ parts: {};
19
+ };
@@ -0,0 +1 @@
1
+ export default function getAllInsertionsInSeqReads(seqReads: any): any[];