-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtascu.tsv.ttl
4026 lines (3639 loc) · 161 KB
/
tascu.tsv.ttl
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
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
<https://tascu.vtt.fi/data/1>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/description>
"NULL" ;
<http://tascu.vtt.fi/ontology/id>
1 ;
<http://tascu.vtt.fi/ontology/name>
"Select host and product" .
<https://tascu.vtt.fi/data/2>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/comment>
"J-L: QSAR (prediction of properties from structure)." ;
<http://tascu.vtt.fi/ontology/description>
"NULL" ;
<http://tascu.vtt.fi/ontology/id>
2 ;
<http://tascu.vtt.fi/ontology/name>
"Obtain relevant data for product" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/1> .
<https://tascu.vtt.fi/data/3>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/description>
"NULL" ;
<http://tascu.vtt.fi/ontology/id>
3 ;
<http://tascu.vtt.fi/ontology/name>
"Obtain physicochemical data (Toxicity, Solubility, InChI,…) for product" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/2> .
<https://tascu.vtt.fi/data/4>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/comment>
"@Jean-Loup has a tool for toxicity estimation, training data available only for E. coli. For WP7, it is also important to know where the toxicity database is, what kind of access rights etc." ;
<http://tascu.vtt.fi/ontology/id>
4 ;
<http://tascu.vtt.fi/ontology/name>
"Estimate product toxicity for chassis" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/2> .
<https://tascu.vtt.fi/data/5>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/comment>
"Comments: In principle, most of the design pipeline needs to have been executed for the selection of a good host for a selected product." ;
<http://tascu.vtt.fi/ontology/description>
"NULL" ;
<http://tascu.vtt.fi/ontology/id>
5 ;
<http://tascu.vtt.fi/ontology/name>
"Obtain relevant data for host" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/1> .
<https://tascu.vtt.fi/data/6>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/description>
"NULL" ;
<http://tascu.vtt.fi/ontology/id>
6 ;
<http://tascu.vtt.fi/ontology/name>
"Genetic tools" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/5> .
<https://tascu.vtt.fi/data/7>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/description>
"NULL" ;
<http://tascu.vtt.fi/ontology/id>
7 ;
<http://tascu.vtt.fi/ontology/name>
"Genome sequence" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/5> .
<https://tascu.vtt.fi/data/8>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/comment>
"Strain specific GEMs may be needed for some organisms" ;
<http://tascu.vtt.fi/ontology/description>
"NULL" ;
<http://tascu.vtt.fi/ontology/id>
8 ;
<http://tascu.vtt.fi/ontology/name>
"Genome-scale metabolic model (GEM)" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/5> .
<https://tascu.vtt.fi/data/9>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/description>
"NULL" ;
<http://tascu.vtt.fi/ontology/id>
9 ;
<http://tascu.vtt.fi/ontology/name>
"Collect relevant available (bibliographic, experimental) data (candidate ‘sink’ metabolites)" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/5> .
<https://tascu.vtt.fi/data/10>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/description>
"NULL" ;
<http://tascu.vtt.fi/ontology/id>
10 ;
<http://tascu.vtt.fi/ontology/name>
"Physiological constraints" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/5> .
<https://tascu.vtt.fi/data/11>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/description>
"NULL" ;
<http://tascu.vtt.fi/ontology/id>
11 ;
<http://tascu.vtt.fi/ontology/name>
"Oxygen requirements" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/10> .
<https://tascu.vtt.fi/data/12>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/description>
"NULL" ;
<http://tascu.vtt.fi/ontology/id>
12 ;
<http://tascu.vtt.fi/ontology/name>
"Raw material requirements" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/10> .
<https://tascu.vtt.fi/data/13>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/comment>
"@Jean-Loup has a tool for toxicity estimation, training data available only for E. coli" ;
<http://tascu.vtt.fi/ontology/id>
13 ;
<http://tascu.vtt.fi/ontology/name>
"Estimate product toxicity for chassis" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/10> .
<https://tascu.vtt.fi/data/14>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/description>
"NULL" ;
<http://tascu.vtt.fi/ontology/id>
14 ;
<http://tascu.vtt.fi/ontology/name>
"Process constraints" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/5> .
<https://tascu.vtt.fi/data/15>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/description>
"NULL" ;
<http://tascu.vtt.fi/ontology/id>
15 ;
<http://tascu.vtt.fi/ontology/name>
"Technoeconomic constraints" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/1> .
<https://tascu.vtt.fi/data/16>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/description>
"NULL" ;
<http://tascu.vtt.fi/ontology/id>
16 ;
<http://tascu.vtt.fi/ontology/name>
"Estimate market value of product" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/15> .
<https://tascu.vtt.fi/data/17>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/description>
"NULL" ;
<http://tascu.vtt.fi/ontology/id>
17 ;
<http://tascu.vtt.fi/ontology/name>
"Intellectual Property (IP) constraints" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/15> .
<https://tascu.vtt.fi/data/18>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/description>
"NULL" ;
<http://tascu.vtt.fi/ontology/id>
18 ;
<http://tascu.vtt.fi/ontology/name>
"DSP considerations" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/15> .
<https://tascu.vtt.fi/data/19>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/description>
"NULL" ;
<http://tascu.vtt.fi/ontology/id>
19 ;
<http://tascu.vtt.fi/ontology/name>
"Chassis, substrate, pathway, and product selection" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/1> .
<https://tascu.vtt.fi/data/20>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/description>
"NULL" ;
<http://tascu.vtt.fi/ontology/id>
20 ;
<http://tascu.vtt.fi/ontology/name>
"Estimate economic feasibility (depends on substrate, pathway, and product)" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/19> .
<https://tascu.vtt.fi/data/21>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/description>
"NULL" ;
<http://tascu.vtt.fi/ontology/id>
21 ;
<http://tascu.vtt.fi/ontology/name>
"Selection of chassis, substrate, pathway, and product" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/19> .
<https://tascu.vtt.fi/data/22>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
22 ;
<http://tascu.vtt.fi/ontology/name>
"Design" .
<https://tascu.vtt.fi/data/23>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/comment>
"Check that the prerequisites for Computational Strain Design are fulfilled, i.e. the input includes a SBML for the host, the SBML contains a biomass/growth objective, and that the product is specified with sufficient detail (stereochemistry, chain length, etc)." ;
<http://tascu.vtt.fi/ontology/id>
23 ;
<http://tascu.vtt.fi/ontology/name>
"Receive input from \"select host and products\" step" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/22> .
<https://tascu.vtt.fi/data/331>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
331 ;
<http://tascu.vtt.fi/ontology/name>
"Receive name of production host" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/23> .
<https://tascu.vtt.fi/data/332>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
332 ;
<http://tascu.vtt.fi/ontology/name>
"Obtain SBML models for production hosts" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/23> .
<https://tascu.vtt.fi/data/333>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
333 ;
<http://tascu.vtt.fi/ontology/name>
"Obtain annotated genomes of production hosts" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/23> .
<https://tascu.vtt.fi/data/334>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
334 ;
<http://tascu.vtt.fi/ontology/name>
"Receive name of product" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/23> .
<https://tascu.vtt.fi/data/24>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/description>
"NULL" ;
<http://tascu.vtt.fi/ontology/id>
24 ;
<http://tascu.vtt.fi/ontology/name>
"Receive input from #Upscale #Test-HighThroughput #Test-Bioreactor and #build" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/22> .
<https://tascu.vtt.fi/data/25>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/description>
"NULL" ;
<http://tascu.vtt.fi/ontology/id>
25 ;
<http://tascu.vtt.fi/ontology/name>
"Physiological constraints" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/24> .
<https://tascu.vtt.fi/data/26>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/description>
"NULL" ;
<http://tascu.vtt.fi/ontology/id>
26 ;
<http://tascu.vtt.fi/ontology/name>
"Oxygen requirements, pH, solvent, carbon source, substrate and product toxicity, product related energetics, light, temperature" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/25> .
<https://tascu.vtt.fi/data/27>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/comment>
"(TODO write the steps @NTUA)" ;
<http://tascu.vtt.fi/ontology/description>
"NULL" ;
<http://tascu.vtt.fi/ontology/id>
27 ;
<http://tascu.vtt.fi/ontology/name>
"Process constraints." ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/24> .
<https://tascu.vtt.fi/data/28>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/comment>
"Product separation requirements; e.g. low pH, minimum titer, unwanted side products that significantly increase the separation cost, etc." ;
<http://tascu.vtt.fi/ontology/id>
28 ;
<http://tascu.vtt.fi/ontology/name>
"Pressure, ..." ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/27> .
<https://tascu.vtt.fi/data/29>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
29 ;
<http://tascu.vtt.fi/ontology/name>
"Execution of Design" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/22> .
<https://tascu.vtt.fi/data/30>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/comment>
"We might need to rethink this 'Design the chassis' step. Right now it is a bit chaotic and some of the steps inside it are copies of steps mentioned elsewhere. This step can be divided in two parts: 1) deletion of genes; 2) addition of genes. Both parts will contain mandatory genes and genes that could be beneficial (we need some sort of filter or quality check to distinguish between them) . These two types of genes need different follow-up steps. Who is responsible for this step? Maybe they could take a look at it?" ;
<http://tascu.vtt.fi/ontology/id>
30 ;
<http://tascu.vtt.fi/ontology/name>
"Design production strain" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/29> .
<https://tascu.vtt.fi/data/300>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/comment>
"Read literature on known production pathways. -Which reactions are problematic? -What hurdles have they encountered (and how was it solved)? -Compound toxicity? -Enzyme promisquity? Databases -KEGG: pathways, reactions, cofactors, promisquity, known ko/genes, in which organisms are enzymes for those reactions known? -MetaCyc: pathways, reactions, cofactors, promisquity, known/predicted organisms, deltaG? -BRENDA: known substrates, organisms, activators, inhibitors, binding constants, pH optimum, pH tolerance, rate information, mutations" ;
<http://tascu.vtt.fi/ontology/description>
"Read literature on known production pathways and search for data in databases." ;
<http://tascu.vtt.fi/ontology/id>
300 ;
<http://tascu.vtt.fi/ontology/name>
"Information search" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/30> .
<https://tascu.vtt.fi/data/326>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
326 ;
<http://tascu.vtt.fi/ontology/name>
"Freedom to operate (IPR considerations)" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/300> .
<https://tascu.vtt.fi/data/327>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
327 ;
<http://tascu.vtt.fi/ontology/name>
"Known pathways in literature" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/300> .
<https://tascu.vtt.fi/data/330>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
330 ;
<http://tascu.vtt.fi/ontology/name>
"Known pathways in reaction databases" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/300> .
<https://tascu.vtt.fi/data/328>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/description>
"Search patent literature for similar pathways and individual modifications." ;
<http://tascu.vtt.fi/ontology/id>
328 ;
<http://tascu.vtt.fi/ontology/name>
"Patent search" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/300> .
<https://tascu.vtt.fi/data/31>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
31 ;
<http://tascu.vtt.fi/ontology/name>
"Computational metabolic design" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/30> .
<https://tascu.vtt.fi/data/32>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/description>
"NULL" ;
<http://tascu.vtt.fi/ontology/id>
32 ;
<http://tascu.vtt.fi/ontology/name>
"Computational product pathway design" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/31> .
<https://tascu.vtt.fi/data/33>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/comment>
"Convert RetroPath output to complete reactions. Check MetaNetX reactions for correctness and electron balancing. For every unknown cofactor, propose plausible cofactors for the chassis considered." ;
<http://tascu.vtt.fi/ontology/id>
33 ;
<http://tascu.vtt.fi/ontology/name>
"Enumerate pathway options (Retropath,…)" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/32> .
<https://tascu.vtt.fi/data/34>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/description>
"NULL" ;
<http://tascu.vtt.fi/ontology/id>
34 ;
<http://tascu.vtt.fi/ontology/name>
"Screen pathway options based on quality criteria" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/33> .
<https://tascu.vtt.fi/data/321>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
321 ;
<http://tascu.vtt.fi/ontology/name>
"Convert reaction rules to complete reactions" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/32> .
<https://tascu.vtt.fi/data/322>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/comment>
"E.g. define cofactors where cofactors are unknown." ;
<http://tascu.vtt.fi/ontology/id>
322 ;
<http://tascu.vtt.fi/ontology/name>
"Refine pathways" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/32> .
<https://tascu.vtt.fi/data/35>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/comment>
"Score pathways. Estimate e.g. membrane toxicity of pathway intermediates. Estimate thermodynamic feasibility of reactions in pathway. If necessary, use OBE to find distributed bottlenecks." ;
<http://tascu.vtt.fi/ontology/id>
35 ;
<http://tascu.vtt.fi/ontology/name>
"Score pathways without chassis" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/32> .
<https://tascu.vtt.fi/data/39>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
39 ;
<http://tascu.vtt.fi/ontology/name>
"Membrane toxicity of intermediates" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/35> .
<https://tascu.vtt.fi/data/38>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/comment>
"Use eQuilibrator if no other tool available for pH-dependent thermodynamics." ;
<http://tascu.vtt.fi/ontology/id>
38 ;
<http://tascu.vtt.fi/ontology/name>
"Thermodynamic feasibility verification" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/35> .
<https://tascu.vtt.fi/data/323>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/comment>
"Optional" ;
<http://tascu.vtt.fi/ontology/id>
323 ;
<http://tascu.vtt.fi/ontology/name>
"Optimized Bottleneck Energetics" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/35> .
<https://tascu.vtt.fi/data/40>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
40 ;
<http://tascu.vtt.fi/ontology/name>
"Chassis embedment" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/31> .
<https://tascu.vtt.fi/data/41>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
41 ;
<http://tascu.vtt.fi/ontology/name>
"Receive input from product pathway design" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/40> .
<https://tascu.vtt.fi/data/42>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
42 ;
<http://tascu.vtt.fi/ontology/name>
"Map metabolites between pathway and chassis" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/40> .
<https://tascu.vtt.fi/data/36>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/comment>
"Add pathway to SBML for chassis. Match pathway metabolites to chassis metabolites. Verify matches by structural comparison. Also check stereochemistry. Prefer starting pathways from cytosolic metabolites. If pathway generates side products, i.e. compounds that aren't chassis metabolites, find the reactions that connects them to the metabolic network of the chassis." ;
<http://tascu.vtt.fi/ontology/id>
36 ;
<http://tascu.vtt.fi/ontology/name>
"Add production pathway to chassis SBML in silico" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/40> .
<https://tascu.vtt.fi/data/316>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
316 ;
<http://tascu.vtt.fi/ontology/name>
"Fill metabolic gaps" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/40> .
<https://tascu.vtt.fi/data/37>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
37 ;
<http://tascu.vtt.fi/ontology/name>
"Screen potential substrates in silico" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/40> .
<https://tascu.vtt.fi/data/44>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/comment>
"Anaerobic, aerobic, peroxisome active/inactive, etc." ;
<http://tascu.vtt.fi/ontology/id>
44 ;
<http://tascu.vtt.fi/ontology/name>
"Screen growth conditions" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/40> .
<https://tascu.vtt.fi/data/45>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
45 ;
<http://tascu.vtt.fi/ontology/name>
"Growth-product coupling. (e.g. OptKnock, RobustKnock, Minimal Cut Sets)" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/40> .
<https://tascu.vtt.fi/data/49>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/comment>
"Check that oxygen consumption is reasonable. VTT has a SOP" ;
<http://tascu.vtt.fi/ontology/id>
49 ;
<http://tascu.vtt.fi/ontology/name>
"Calculate expected yields" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/40> .
<https://tascu.vtt.fi/data/317>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
317 ;
<http://tascu.vtt.fi/ontology/name>
"Estimate productivities" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/40> .
<https://tascu.vtt.fi/data/324>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
324 ;
<http://tascu.vtt.fi/ontology/name>
"Evaluate and choose pathways" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/31> .
<https://tascu.vtt.fi/data/52>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/comment>
"The remaining tasks relating to enzyme design could be moved to enzyme design." ;
<http://tascu.vtt.fi/ontology/id>
52 ;
<http://tascu.vtt.fi/ontology/name>
"Genetic design for chassis" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/30> .
<https://tascu.vtt.fi/data/43>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/comment>
"(e.g. genome re-annotation, literature search. Find the enzymes of the metabolites from the reference databases, and look in the genome whether homologous enzymes exist natively)." ;
<http://tascu.vtt.fi/ontology/id>
43 ;
<http://tascu.vtt.fi/ontology/name>
"Check for native enzymes with activity for heterologous metabolites" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/52> .
<https://tascu.vtt.fi/data/72>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
72 ;
<http://tascu.vtt.fi/ontology/name>
"Genome reannotation" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/43> .
<https://tascu.vtt.fi/data/46>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
46 ;
<http://tascu.vtt.fi/ontology/name>
"Search for native homologues of enzymes acting on the heterologous metabolites" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/43> .
<https://tascu.vtt.fi/data/50>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
50 ;
<http://tascu.vtt.fi/ontology/name>
"Additional trait design" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/52> .
<https://tascu.vtt.fi/data/47>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
47 ;
<http://tascu.vtt.fi/ontology/name>
"Propose desirable traits" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/50> .
<https://tascu.vtt.fi/data/51>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
51 ;
<http://tascu.vtt.fi/ontology/name>
"Bioprospecting for traits" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/50> .
<https://tascu.vtt.fi/data/48>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
48 ;
<http://tascu.vtt.fi/ontology/name>
"Pathway improvement by mutations, supporting/auxiliary pathways, enzymes/cofactor specificity, genetic modifications" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/52> .
<https://tascu.vtt.fi/data/71>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
71 ;
<http://tascu.vtt.fi/ontology/name>
"Select promoter types" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/52> .
<https://tascu.vtt.fi/data/54>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
54 ;
<http://tascu.vtt.fi/ontology/name>
"Evaluate and choose strains" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/52> .
<https://tascu.vtt.fi/data/325>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
325 ;
<http://tascu.vtt.fi/ontology/name>
"Describe genetic constructs in SBOL format" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/52> .
<https://tascu.vtt.fi/data/74>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
74 ;
<http://tascu.vtt.fi/ontology/name>
"Store the list of enzyme functions" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/30> .
<https://tascu.vtt.fi/data/318>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
318 ;
<http://tascu.vtt.fi/ontology/name>
"Store the list of gene deletions" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/30> .
<https://tascu.vtt.fi/data/319>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
319 ;
<http://tascu.vtt.fi/ontology/name>
"Store the list of genotypes" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/30> .
<https://tascu.vtt.fi/data/320>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
320 ;
<http://tascu.vtt.fi/ontology/name>
"Store the list of promoter types" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/30> .
<https://tascu.vtt.fi/data/73>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/comment>
"This should serve also enzyme screening and protein production; should be expanded if these other applications are relevant. #EnzymeDesign." ;
<http://tascu.vtt.fi/ontology/id>
73 ;
<http://tascu.vtt.fi/ontology/name>
"Select and/or design enzyme" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/29> .
<https://tascu.vtt.fi/data/75>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
75 ;
<http://tascu.vtt.fi/ontology/name>
"TODO write the steps @INRA" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/73> .
<https://tascu.vtt.fi/data/307>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
307 ;
<http://tascu.vtt.fi/ontology/name>
"Retrieve the list of enzyme functions" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/73> .
<https://tascu.vtt.fi/data/56>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/comment>
"#RoundRobinNeeded but comparison difficult" ;
<http://tascu.vtt.fi/ontology/id>
56 ;
<http://tascu.vtt.fi/ontology/name>
"Generate candidate sequences (Enzyme search)" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/73> .
<https://tascu.vtt.fi/data/58>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
58 ;
<http://tascu.vtt.fi/ontology/name>
"Function-based in silico screening of candidate sequences" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/73> .
<https://tascu.vtt.fi/data/55>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
55 ;
<http://tascu.vtt.fi/ontology/name>
"Choose enzyme sequences" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/73> .
<https://tascu.vtt.fi/data/57>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
57 ;
<http://tascu.vtt.fi/ontology/name>
"Optimize gene sequences" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/73> .
<https://tascu.vtt.fi/data/59>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
59 ;
<http://tascu.vtt.fi/ontology/name>
"Remove mobile regulatory elements" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/73> .
<https://tascu.vtt.fi/data/60>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
60 ;
<http://tascu.vtt.fi/ontology/name>
"Send list of gene additions" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/73> .
<https://tascu.vtt.fi/data/301>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/comment>
"Applies equally to production strains, enzyme screening hosts, and protein production hosts." ;
<http://tascu.vtt.fi/ontology/id>
301 ;
<http://tascu.vtt.fi/ontology/name>
"Design DNA constructs for expression host" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/29> .
<https://tascu.vtt.fi/data/53>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
53 ;
<http://tascu.vtt.fi/ontology/name>
"Freedom to operate with regards to the tools #IPRConsiderations" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/301> .
<https://tascu.vtt.fi/data/308>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
308 ;
<http://tascu.vtt.fi/ontology/name>
"Retrieve the list of gene deletions" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/301> .
<https://tascu.vtt.fi/data/309>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
309 ;
<http://tascu.vtt.fi/ontology/name>
"Retrieve the list of gene additions" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/301> .
<https://tascu.vtt.fi/data/310>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/comment>
"All cargo defined earlier based on modeling desired phenotype." ;
<http://tascu.vtt.fi/ontology/id>
310 ;
<http://tascu.vtt.fi/ontology/name>
"Retrieve the list of promoter types" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/301> .
<https://tascu.vtt.fi/data/311>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/comment>
"May be combinatorial." ;
<http://tascu.vtt.fi/ontology/id>
311 ;
<http://tascu.vtt.fi/ontology/name>
"Select promoters" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/301> .
<https://tascu.vtt.fi/data/312>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/comment>
"May be combinatorial." ;
<http://tascu.vtt.fi/ontology/id>
312 ;
<http://tascu.vtt.fi/ontology/name>
"Select integration sites/loci" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/301> .
<https://tascu.vtt.fi/data/61>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
61 ;
<http://tascu.vtt.fi/ontology/name>
"Select genome editing strategy" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/301> .
<https://tascu.vtt.fi/data/62>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/description>
"NULL" ;
<http://tascu.vtt.fi/ontology/id>
62 ;
<http://tascu.vtt.fi/ontology/name>
"CRISPR/Cas9 #SopNeeded" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/61> .
<https://tascu.vtt.fi/data/63>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/description>
"NULL" ;
<http://tascu.vtt.fi/ontology/id>
63 ;
<http://tascu.vtt.fi/ontology/name>
"MAGE: genome engineering #SopNeeded" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/61> .
<https://tascu.vtt.fi/data/313>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
313 ;
<http://tascu.vtt.fi/ontology/name>
"Select vectors/plasmids/DNA constructs" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/301> .
<https://tascu.vtt.fi/data/64>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/id>
64 ;
<http://tascu.vtt.fi/ontology/name>
"Select vector assembly strategy" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/301> .
<https://tascu.vtt.fi/data/65>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/description>
"NULL" ;
<http://tascu.vtt.fi/ontology/id>
65 ;
<http://tascu.vtt.fi/ontology/name>
"SEVA/METABRICK, Moclo, Gibson pathway engineering @Wageningen" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/64> .
<https://tascu.vtt.fi/data/66>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/description>
"NULL" ;
<http://tascu.vtt.fi/ontology/id>
66 ;
<http://tascu.vtt.fi/ontology/name>
"#TODO add the list of tasks needed #ToBeReviewed" ;
<http://tascu.vtt.fi/ontology/parent>
<https://tascu.vtt.fi/data/65> .
<https://tascu.vtt.fi/data/67>
a <http://tascu.vtt.fi/ontology/Step> ;
<http://tascu.vtt.fi/ontology/description>
"NULL" ;