forked from mgaldzic/igemsoft
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdata.js
1608 lines (1608 loc) · 83.6 KB
/
data.js
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
{
"items" : [
{
"url" : "http:\/\/2011.igem.org\/Team:Sevilla\/Software\/GPSE",
"category" : "Circuit Design, Simulation",
"team" : "Sevilla",
"update" : "2011",
"status" : "under development",
"type" : "Item",
"year" : "2011",
"label" : "GPSE (Graphical P-System Editor)",
"description" : "CAD to design biological P-Systems. The main goal of our program is to make the preparation of the files needed for the P-Systems simulators easier, more intuitive"
},
{
"url" : "http:\/\/120.126.44.58\/SynthoPrime\/ and http:\/\/2011.igem.org\/Team:NYMU-Taipei\/synthoprime",
"category" : "Repository",
"team" : "NYMU-Taipei",
"update" : "2011",
"status" : "active",
"type" : "Item",
"year" : "2011",
"label" : "SynthoPrime",
"description" : "A Synthetic Biology Primer Design Tool for Genomic Parts Creation"
},
{
"source" : "not available",
"url" : "http:\/\/2009.igem.org\/Team:Illinois-Tools\/Project",
"category" : "Metabolic Engineering",
"team" : "Illinois",
"dependency" : "Python, Django, MySQL",
"update" : "2010",
"status" : "finished",
"contact" : "Nathan Price, Kaustubh Bhalerao",
"free" : "not available",
"year" : "2009",
"type" : "Item",
"label" : "IMP Tools - Interactive Metabolic Pathway Tools",
"description" : "Determines the ideal pathway from the starting to the ending compound. For model-guided cellular engineering where new metabolic functions can be added to existing microorganisms. Assists in the design stage of synthetic biology research. Takes a user-defined input compound, output compound, and weighting scheme."
},
{
"source" : "not available",
"url" : "http:\/\/2008.igem.org\/Team:Newcastle_University\/Constraints_Repository",
"category" : "Repository",
"team" : "Newcastle University",
"update" : "2008",
"status" : "finished",
"contact" : "Anil Wipat",
"free" : "not available",
"year" : "2008",
"type" : "Item",
"label" : "Constraints Repository",
"description" : "Stores information about how parts work together, and associated parameters such as binding affinities, POPS, etc., where these are known. This was populated from the literature and by extracting hard-won knowledge from advisors."
},
{
"source" : "http:\/\/2010.igem.org\/Team:Imperial_College_London\/Software_Tool",
"url" : "http:\/\/2010.igem.org\/Team:Imperial_College_London\/Software_Tool",
"category" : "Reference",
"team" : "Imperial College London",
"dependency" : "No",
"update" : "2010",
"status" : "finished",
"contact" : "Guy-Bart Stan",
"free" : "yes",
"year" : "2010",
"type" : "Item",
"label" : "Parasight Software Tool",
"description" : "Web display of the custom sequence of the entire surface protein construct with sensitivity to different proteases. By changing the cleavage site the system can accept a wide variety of inputs. Presents the user with a sequence designed to create a \"detection model\" sensitive to one of ten pathogen proteases."
},
{
"source" : "http:\/\/cloneqc.thruhere.net\/, http:\/\/128.220.136.46\/wiki\/baderlab\/index.php\/Servers",
"url" : "http:\/\/2009.igem.org\/Team:Johns_Hopkins-BAG\/Software_Tools",
"category" : "Sequence Analysis",
"team" : "Johns Hopkins",
"dependency" : "Web",
"update" : "2009",
"status" : "active",
"contact" : "Sarah Richardson, Jef Boeke, Joel Bader",
"free" : "yes",
"year" : "2009",
"type" : "Item",
"label" : "CloneQC",
"description" : "Automates the analysis of thousands of tracefiles of sequenced DNA. Automatically calls whether or not the generated Building Block is an exact match to the designed Building Block. The program can successfully identify exact and non-exact matches, and in some cases where it isn\u2019t sure, it will ask the operator of the software to determine the status."
},
{
"source" : "https:\/\/github.com\/haydnKing\/Gibthon",
"url" : "http:\/\/gibthon.org\/",
"category" : "Assembly Planning, Gibson Assembly",
"team" : "Cambridge",
"dependency" : "Web",
"update" : "2011",
"status" : "active",
"contact" : "Haydn King, Bill Collins",
"free" : "yes",
"year" : "2011",
"type" : "Item",
"label" : "Gibthon Ligation Calculator",
"description" : [
"A simple tool for calculating reactant concentrations for DNA ligation for Gibson Assembly",
"Ligation ratio calculator for Gibson Assembly. Set the volumes and add components to calculate final volumes of the Ligation Mix."
]
},
{
"source" : "http:\/\/code.google.com\/p\/crispr-studio\/",
"url" : "http:\/\/2011.igem.org\/Team:Arizona_State\/Project\/Software",
"category" : "Sequence Generation",
"team" : "Arizona State",
"dependency" : "BLAST+",
"update" : "2010",
"status" : "finished",
"contact" : "Xiao Wang",
"free" : "yes",
"year" : "2011",
"type" : "Item",
"label" : "CRISPRstudio",
"description" : "\"We have developed a tool to assist in the development of synthetic CRISPR systems. Pick spacers from a source sequence, based on homology with the target genome, hairpinning potential, restriction sites, and known PAMs. Output arrays with various formats based on generated spacers. Display and gather CRISPR information using a database cultivated from several sources.CRISPRstudio is provided \"as is\" with no express or implied warranty for accuracy or accessibility.\""
},
{
"source" : "https:\/\/github.com\/jkdirac\/igame",
"url" : "http:\/\/2010.igem.org\/Team:USTC_Software\/Features",
"category" : "Game, Educational, Simulation, Modelling",
"team" : "USTC",
"dependency" : "COPASI",
"update" : "2010",
"status" : "finished",
"contact" : "Hao Jiang",
"free" : "yes",
"year" : "2010",
"type" : "Item",
"label" : "iGaME",
"description" : "A game to instruct non-biologists to design and improve biological systems. Players help solve complex designs of biological systems by submitting the assembly of parts and the software discovers and generates the biological model automatically. Leverages the MoDeL language (for more see BBF RFC55: Standard Biological Part Automatic Modeling Database Language (MoDeL)) to generate the model for simulation using COPASI."
},
{
"source" : "not available",
"url" : "http:\/\/2009.igem.org\/Team:Berkeley_Software\/Spectacles",
"category" : "Visualization, Sequence Design",
"team" : "Berkeley",
"dependency" : "Clotho, Eugene",
"update" : "2010",
"status" : "finished",
"contact" : "Douglas Densmore",
"free" : "not available",
"year" : "2009",
"type" : "Item",
"label" : "Spectacles",
"description" : "A visual editing framework for the design of composite biological devices and the assignment of physical samples to functional concepts. In order to design composite devices, Spectacles provides a visual editing environment. Not only does this allow for a complete drag and drop \"schematic\" editor style design experience, but it also checks and enforces Eugene based rules, provides visual cues regarding the design's properties, and is completely integrated with the rest of the Clotho design environment. The latter allows the user to assign actual parts from registries to the functional concept captured by Spectacles."
},
{
"source" : "http:\/\/2008sw.igem.org\/bccs_bristol\/src\/BSim_Source.zip",
"url" : "http:\/\/2008.igem.org\/Team:BCCS-Bristol\/Modeling-Software",
"category" : "Simulation, Visualization",
"team" : "BCCS-Bristol",
"dependency" : "Java",
"update" : "2008",
"status" : "active",
"contact" : "Mario di Bernardo",
"free" : "yes",
"year" : "2008",
"type" : "Item",
"label" : "BSim",
"description" : "View simulations in a graphical interface. It can be used to help familiarize yourself with the process of defining simulations, watch small-scale simulations, or verify the initial conditions of large-scale simulations. Simulations for: basic chemotaxis, adhesion, recruitment"
},
{
"source" : "http:\/\/2007.igem.org\/Image:Constitutive_Promoter_Analysis.zip",
"url" : "http:\/\/2007.igem.org\/Imperial\/Dry_Lab\/Software",
"category" : "Data Analysis",
"team" : "Imperial",
"dependency" : "MATLAB",
"update" : "2007",
"status" : "finished",
"contact" : "Richard Kitney, Paul Freemont",
"free" : "yes",
"year" : "2007",
"type" : "Item",
"label" : "Constitutive Synthesis of a Protein",
"description" : [
"The experimental setup involves tagging a constitutive promoter with a fluorescent protein",
"the resultant fluorescence is then recorded and it is up to the user now to perform some analysis. This routine loads the experimental data as an excel sheet, allows for graphic visualization of the results, and if need be, elimination of some samples which may seem suspect (outliers). The synthesis rate and degradation term of the milieu are defined\/estimated by the user. The routine was developed to impart control to the user over all the operations."
]
},
{
"source" : "http:\/\/genedesign.thruhere.net\/gd\/",
"url" : "http:\/\/genedesign.thruhere.net\/gd\/",
"category" : "DNA Design",
"team" : "Johns Hopkins",
"dependency" : "Web",
"update" : "2009",
"status" : "active",
"contact" : "Sarah Richardson, Jef Boeke, Joel Bader",
"free" : "yes",
"year" : "2009",
"type" : "Item",
"label" : "GeneDesign",
"description" : "Aid gene or Building Block level design. For example, codon substitutions, silent site removals, restriction site design, etc. The design of a gene or Building Block, tiling oligo order sheets can be automatically generated."
},
{
"source" : "not available",
"url" : "http:\/\/2009.igem.org\/Team:CBNU-Korea\/Project",
"category" : "DNA Design",
"team" : "CBNU-Korea",
"update" : "2009",
"status" : "finished",
"contact" : "Young-Chang Kim, Chung Sei Rhee, Sung Duck Lee, Sunshin Kim",
"free" : "not available",
"year" : "2009",
"type" : "Item",
"label" : "Essarker - An Essential Remarker for a Minimal for Synthetic Genome",
"description" : [
"Design a minimal genome synthesized through the fundamental frame comprising the essential genes of replication. A standalone software tool to manage and retrieve required sequences of genomes",
"explore the essential gene order and direction",
"and the related orthologous genes. It also identifies and visualizes the positions and orientations of genes. In addition, it shows optimal ordering of essential genes and orthologs by statistical analysis."
]
},
{
"source" : "http:\/\/biostudio.bme.jhu.edu:8080\/",
"url" : "http:\/\/biostudio.bme.jhu.edu\/home\/",
"category" : "DNA Design",
"team" : "Johns Hopkins",
"dependency" : "GBrowse, Apache, BioPerl, MySQL",
"update" : "2011",
"status" : "active",
"contact" : "Sarah Richardson, Jef Boeke, Joel Bader",
"free" : "not available",
"year" : "2009",
"type" : "Item",
"label" : "BioStudio",
"description" : "Facilitates many genome creation and editing tasks in collaborative environment on the web. Aids the editor in the design, visualization of the sequence at various levels of detail. For example to view restriction site positions and recombination sites, and the percent content of certain base pairs. Uses a revision control system. Layered on top of an existing generic genome browser called GBROWSE."
},
{
"source" : "http:\/\/sourceforge.net\/projects\/clothocad\/",
"url" : "http:\/\/www.clothocad.org\/",
"category" : "Integrated Workflow",
"team" : "UC Berkeley",
"dependency" : "Netbeans",
"update" : "2012",
"status" : "active",
"contact" : "Douglas Densmore",
"free" : "yes",
"year" : "2008",
"type" : "Item",
"label" : "Clotho",
"description" : "Engineer synthetic biological systems and manage the data which is used to create them. A mechanism to begin the process of creating standardized data, algorithms, and methodologies for synthetic biology."
},
{
"source" : "http:\/\/2007.igem.org\/Image:Degradation_Term_Analysis.zip",
"url" : "http:\/\/2007.igem.org\/Imperial\/Dry_Lab\/Software",
"category" : "Data Analysis",
"team" : "Imperial",
"dependency" : "MATLAB",
"update" : "2007",
"status" : "finished",
"contact" : "Richard Kitney, Paul Freemont",
"free" : "yes",
"year" : "2007",
"type" : "Item",
"label" : "Analysis of the Degradation of a Protein",
"description" : "The experimental setup involves obsering the natural degradation of a fluorescent protein with a fluorometer. . This routine loads the experimental data as an excel sheet, allows for graphic visualization of the results, and if need be, elimination of some samples which may seem suspect (outliers). The degradation term of the milieu is then estimated by shape matching. The routine was developed to impart control to the user over all the operations."
},
{
"source" : "http:\/\/github.com\/douglas-watson\/muigi",
"url" : "http:\/\/2011.igem.org\/Team:EPF-Lausanne\/Tools\/Microfluidics\/Tamagotchip",
"category" : "Game, Microfluidics",
"team" : "EPF-Lausanne",
"dependency" : "Microfludics hardware",
"update" : "2011",
"status" : "finished",
"contact" : "Douglas Watson",
"free" : "yes",
"year" : "2011",
"type" : "Item",
"label" : "Tamagotchip Game\/ Muigi the Microplumber",
"description" : "The tamagotchip live online microfluidics game, a web-controlled microfluidics setup, where users can view the chip live and control the valves from a web browser. From a web browser, control the setup located in our lab in Lausanne."
},
{
"source" : "http:\/\/igem.molgenrug.nl\/igem2011\/Cumulus\/Cumulus.zip",
"url" : "http:\/\/2011.igem.org\/Team:Groningen\/modeling_cumulus",
"category" : "Modelling, Data Sharing",
"team" : "Groningen",
"dependency" : "no",
"update" : "2011",
"status" : "finished",
"contact" : "Matthias Heinemann",
"free" : "yes",
"year" : "2011",
"type" : "Item",
"label" : "Cumulus",
"description" : "Cloud based modelling and data exchange program that we developed. Its purpose is to show, as a proof of concept, that it is possible to integrate both the exchange of data, the production of comprehensive models, and the sharing of computational resources into one platform. collaborative Biology Framework based on Service Oriented Architectures (SOA) and on a Web Services. This approach simplifies and harmonizes the work carried out on the Cloud and Grid platform by geographically dispersed scientists. The new collaborative SOA Cloud Framework (called Cumulus) provides an efficient and easy way to run distributed software.This capability is put to use in a parameter optimization program, (currently a genetic algorithm) to find the optimal parameters for submitted models. In other words, Cumulus makes it simple to use cloud computing resources to find parameters for models, and at the same time, leads to the sharing of information."
},
{
"source" : "https:\/\/github.com\/stjahns\/Alberta-IGEM",
"url" : "http:\/\/www.genomikon.ca\/",
"category" : "Educational, E-labnotebook, Lab manual",
"team" : "Alberta",
"dependency" : "Web",
"update" : "Not found",
"status" : "finished",
"contact" : "Mike Ellison, Doug Ridgway",
"free" : "yes",
"year" : "2010",
"type" : "Item",
"label" : "GENOMIKON",
"description" : "An interactive lab manual which walks a student through the laboratory experiment. The lab notebook component empowers students to create their own experiments and share them online. It can be used by professionals as well. The web app compliments the GENOMIKON educational kit- everything needed to build, test and operate genetic circuits and metabolic pathways."
},
{
"source" : "http:\/\/sourceforge.net\/projects\/ustcabcd\/",
"url" : "http:\/\/2009.igem.org\/Team:USTC_Software",
"category" : "Network Design",
"team" : "USTC",
"update" : "2009",
"status" : "finished",
"contact" : "Bo Ding",
"free" : "yes",
"year" : "2009",
"type" : "Item",
"label" : "ABCD - Automatic Biological Circuit Design",
"description" : "Automatically design synthetic complex biological networks with desired functions defined as dynamical behavior and input-output properties. Uses SBML."
},
{
"source" : "not available",
"url" : "http:\/\/2009.igem.org\/Team:Bologna\/Software",
"category" : "DNA Design",
"team" : "Bologna",
"dependency" : "MATLAB",
"update" : "2009",
"status" : "finished",
"contact" : "Emanuele Giordano, Giulio Zanaroli",
"free" : "not available",
"year" : "2009",
"type" : "Item",
"label" : "BASER - Best Sequence Research by Andrea and Elisa",
"description" : [
"Design synthetic DNA sequences whose transcribed RNAs: a) feature maximal free energy in the secondary structure (i.e. reducing the probability of its intra-molecular annealing)",
"b) have minimal unwanted interactions with genomic mRNA",
"c) present a minimal probability of partial\/shifted hybridization with complementary strands. These specifications are required for the proper engineering of the TRANS and CIS complementary sequences, whose functions are described in the T-REX device."
]
},
{
"source" : "not available",
"url" : "http:\/\/2009.igem.org\/Team:Paris\/Tool_introduction#top",
"category" : "Repository, LIMS",
"team" : "Paris",
"dependency" : "iOS",
"update" : "2009",
"status" : "not found",
"contact" : "Fran\u00E7ois Le F\u00E8vre",
"free" : "not available",
"year" : "2009",
"type" : "Item",
"label" : "iPhone Tool",
"description" : "Management of samples, laboratory users, instruments, standards and other laboratory functions such as invoicing, plate management, and workflow automation.) and database surfer iPhone app"
},
{
"url" : "http:\/\/www.clothocad.org\/",
"category" : "Integrated Workflow",
"team" : "BU-Wellesley",
"dependency" : "no",
"update" : "2012",
"status" : "active",
"contact" : "Douglas Densmore",
"free" : "yes",
"year" : "2011",
"type" : "Item",
"label" : "Clotho 2.0 updated",
"description" : "Clotho is a software platform for synthetic biologists. In this update created a software suite for performing automated software assembly. We also made a primer designing tool,Genbank parsing tool, a tool for viewing sequence annotations. And we redesigned the interface to make Clotho easier to use and more effective as a tool for researchers. All of these tools can interact seamlessly with the same data. Clotho is the converging point for the tools we have made at Boston University, as well as those being developed at Johns Hopkins University, UC Berkeley, and tools we have not even dreamed up yet. Clotho is a nexus. Clotho is the foundation for the automated future of biological engineering. All of these feats are accomplished without Clotho doing anything itself. At its core, Clotho is a data model and a plugin infrastructure. In other words, Clotho gives a vocabulary to describe biological objects and a way for many different types of tools to interact with these biological objects. By itself, Clotho is not a tool. However, the plugin infrastructure allows Clotho to be a rallying points for all sorts of different tools, each fulfilling the exact need of the user."
},
{
"source" : "http:\/\/synbiowave.sourceforge.net, http:\/\/www.synbiowave.org\/",
"url" : "http:\/\/2010.igem.org\/Team:Freiburg_Software",
"category" : "Collaboration, Information Sharing, Integrated Framework",
"team" : "Freiburg",
"dependency" : "Google Wave",
"update" : "Google Wave closed",
"status" : "finished",
"contact" : "Kristian M\u00FCller",
"free" : "yes",
"year" : "2010",
"type" : "Item",
"label" : "SynBioWave 2.0",
"description" : "Research collaboration by real-time sharing of parts, design and documentation. Moreover, biologists can record and share the process of creating research data. Improved user friendliness, separated the input and output from the sequence database operations by creating a linked wave for data storage. New add-ons that perform specific external tasks and feed back into the main program: 1. The \u201Cblueprint-robot\u201D, a framework easing new robot development. 2. Adding new functionality by creating add-on robots that perform tasks such as BLAST-searches, ORF-finding, translation, sequence alignments and restriction site mapping."
},
{
"source" : "http:\/\/2011.igem.org\/Team:HUST-China\/Download",
"url" : "http:\/\/2011.igem.org\/Team:HUST-China",
"category" : "Modelling, Circuit Design, Educational",
"team" : "HUST-China",
"dependency" : "Flash, Papervision 3D, Php, My SQL",
"update" : "2011",
"status" : "finished",
"contact" : "Ge,Qian",
"free" : "yes",
"year" : "2011",
"type" : "Item",
"label" : "SEA - Super E.coli Architect",
"description" : [
"Frees biological designers from technical details by helping them work as architects. Get to know synthetic biology",
"Create functional element with new function",
"Design bacteria",
"Generate gene circuits",
"Plan the experiment",
"Export systematic biology markup language(SBML). Metabolic Pathway Search will compute the optimal pathway for the best response parameter, including the enzyme, etc."
]
},
{
"source" : "http:\/\/2010.igem.org\/Team:Cambridge\/Tools\/Eglometer",
"url" : "http:\/\/2010.igem.org\/Team:Cambridge\/Tools\/Eglometer",
"category" : "Hardware Driver, Operation, Construction Instructions",
"team" : "Cambridge",
"dependency" : "Hardware, Arduino libraries: Keypad.h LiquidCrystal.h",
"update" : "2010",
"status" : "finished",
"contact" : "Jim Ajioka,Jim Haseloff, Gos Micklem",
"free" : "yes",
"year" : "2010",
"type" : "Item",
"label" : "E.glometer",
"description" : "A low cost electronic system for measuring light output, this is useful for reporter assays. Instructions on how to build and use the E.glometer are provided, along with the Arduino source code."
},
{
"source" : "http:\/\/clothocad.svn.sourceforge.net\/",
"url" : "http:\/\/www.clothocad.org\/",
"category" : "Integrated workflows",
"team" : "Berkeley",
"update" : "2012",
"status" : "active",
"contact" : "Douglas Densmore",
"free" : "yes",
"year" : "2010",
"type" : "Item",
"label" : "Clotho 2.0",
"description" : "Added the \"apps\" functionality to Clotho"
},
{
"source" : "http:\/\/2008.igem.org\/wiki\/images\/d\/d0\/StabilityProfilePlotter.zip",
"url" : "http:\/\/2008.igem.org\/Team:TUDelft\/Temperature_software",
"category" : "RNA Simulation",
"team" : "TU Delft",
"dependency" : "RNAeval, Vienna RNA",
"update" : "2008",
"status" : "finished",
"contact" : "Alexander Gultyaev, Filippo Menolascina",
"free" : "yes",
"year" : "2008",
"type" : "Item",
"label" : "Stability Profile Plotter",
"description" : "Plots the free energy data that RNAeval provides as result. A template Standard Vector Graphic (svg) file, containing the grid, must be provided to the tool, which will then add the plot to this grid. Automatic production of a grid would be a nice improvement of this tool."
},
{
"source" : "not available",
"url" : "http:\/\/2008.igem.org\/Chemotaxis_Modeling",
"category" : "Simulation",
"team" : "Tsinghua",
"update" : "2008",
"status" : "finished",
"contact" : "Xue Gao, Guoqiang Chen, Zhirong Sun",
"free" : "not available",
"year" : "2008",
"type" : "Item",
"label" : "Chemotaxis modelling",
"description" : "Simulate the motion of a single bacterium"
},
{
"source" : "not available",
"url" : "http:\/\/2011.igem.org\/Team:Dundee\/Software",
"category" : "DNA Sequence Design",
"team" : "Dundee",
"dependency" : "Android, iOS",
"update" : "2011",
"status" : "finished",
"free" : "yes",
"year" : "2011",
"type" : "Item",
"label" : "The Gene Slicer",
"description" : "Helps restriction mapping of nucleotide sequences and to search a sequence for a specific enzyme and can also return a list of enzymes not present in the sequence."
},
{
"source" : "not available",
"url" : "http:\/\/2007.igem.org\/Calgary\/evoGEM_introduction",
"category" : "Circuit Design, Evolutionary Algorithm",
"team" : "Calgary",
"dependency" : "Vigo::3D",
"update" : "2007",
"status" : "finished",
"contact" : "Christian Jacob",
"free" : "not available",
"year" : "2007",
"type" : "Item",
"label" : "EvoGEM",
"description" : "Find genetic circuits that would produce a desired behavior before these are tested in a lab. Uses evolutionary design,effecient mutation operators on these circuits and an effecient fitness function that can solve the relatively simple problem of synthesizing a requested molecule considering the existing iGEM bio-bricks."
},
{
"url" : "http:\/\/2011.igem.org\/Team:BU_Wellesley_Software\/eLabNotebook",
"category" : "Laboratory, LIMS",
"team" : "BU-Wellesley",
"dependency" : "iOS",
"update" : "2011",
"status" : "design",
"contact" : "Douglas Densmore",
"year" : "2011",
"type" : "Item",
"label" : "eLabNotebook",
"description" : "An electronic lab notebook that facilitates collaborative, effective, and safe assembly of biological systems. The eLabNotebook allows users to: 1. Capture multimodal data inside and outside the lab with minimal effort 2. Follow a protocol in the lab while modifying and annotating steps as needed 3. Access a wide variety of digital resources 4. Get an overview of current activity and progress 5.share physical and digital resources in real-time"
},
{
"url" : "http:\/\/2011.igem.org\/Team:Sevilla\/Software\/Ubbit",
"category" : "Database",
"team" : "Sevilla",
"update" : "2011",
"status" : "under development",
"contact" : "Eduardo Villalobo, Francisco Romero, Ana Calvo",
"type" : "Item",
"year" : "2011",
"label" : "Ubbit repository",
"description" : "Web database developed to facilitate the implementation of the Ubbit standard."
},
{
"source" : "not available",
"url" : "http:\/\/2009.igem.org\/Team:Alberta\/Project\/Automation",
"category" : "Robotics",
"team" : "Alberta",
"dependency" : "nxtOSEK, GNUARM",
"update" : "2008",
"status" : "finished",
"contact" : "Chris Backhouse, Robert Campbell, Linda Reha-Krantz, Tracy Raivio, Jon Dennis",
"free" : "not available",
"year" : "2009",
"type" : "Item",
"label" : "BioBytes Assembly System",
"description" : "Drive a custom-built robot for assembly"
},
{
"url" : "http:\/\/2011.igem.org\/Team:NYC_Software\/Tools\/Primer_Designer and https:\/\/github.com\/igemsoftware\/NYC_Software_2011",
"category" : "Repository",
"team" : "NYC",
"update" : "2011",
"status" : "active",
"contact" : "Russell Durrett",
"type" : "Item",
"year" : "2011",
"label" : "Primer Designer",
"description" : "designing primers for over 50 future biobricks. In order to aid them, and of course future iGEMers, we developed a command line tool for creating primer sequences suitable for biobricking under RFC23 - the Silver Standard"
},
{
"source" : "http:\/\/ethzigem10.svn.sourceforge.net\/viewvc\/ethzigem10\/",
"url" : "http:\/\/2010.igem.org\/Team:ETHZ_Basel\/Achievements\/Matlab_Toolbox",
"category" : "MATLAB Algorithms, Modelling",
"team" : "ETHZ Basel",
"dependency" : "Matlab, Simulink",
"update" : "2010",
"status" : "finished",
"contact" : "Sven Panke, J\u00F6rg Stelling",
"free" : "yes",
"year" : "2010",
"type" : "Item",
"label" : "Lemming Toolbox",
"description" : "Bundle of Matlab algorithms useful for biology. Complex models, as well as novel visualization, user input and microscope control approaches, as well as a modular graphical user interface based on Simulink, to aid in design of models of any nature."
},
{
"source" : "http:\/\/2008.igem.org\/wiki\/images\/9\/94\/VFB1.0.zip",
"url" : "http:\/\/2008.igem.org\/Team:Bologna\/Software",
"category" : "Image Analysis",
"team" : "Bologna",
"dependency" : "MATLAB",
"update" : "2008",
"status" : "active",
"contact" : "Marco Caprini, Emanuele Giordano",
"free" : "yes",
"year" : "2008",
"type" : "Item",
"label" : "Visual Fluo Bacteria",
"description" : "Analysis of bacteria fluorescence images"
},
{
"source" : "not available",
"url" : "http:\/\/2011.igem.org\/Team:Dundee\/Software",
"category" : "DNA Sequence Design",
"team" : "Dundee",
"dependency" : "Android, iOS",
"update" : "2011",
"status" : "finished",
"free" : "yes",
"year" : "2011",
"type" : "Item",
"label" : "The Gene Cutter",
"description" : "Helps restriction mapping of nucleotide sequences and to search a sequence for a specific enzyme and can also return a list of enzymes not present in the sequence."
},
{
"source" : "http:\/\/2010.igem.org\/wiki\/images\/6\/61\/VTENSIMAGBiosecurity_PCR_src.zip",
"url" : "http:\/\/2010.igem.org\/Team:VT-ENSIMAG\/User_primer",
"category" : "Primer Design",
"team" : "VT-ENSIMAG",
"update" : "2010",
"status" : "finished",
"contact" : "Jean Peccoud",
"free" : "yes",
"year" : "2010",
"type" : "Item",
"label" : "User Primer Calculator",
"description" : "Finds 4 primers: the forward primer overlapping with the first input, the reverse user primer that overlaps with the first sequence and the gap sequence added on the PCR, the forward user sequence, overlapping with the second sequence and the gap sequence, and endly the reverse primer, which overlaps with the second sequence. If some suffix, prefix or terminator are added on the full sequence, they will be added in the forward and reverse primers. To detect the length of the overlapping part of the primers, we search for the correct length that will have the desired melting temperature. This melting temperature is calculated. The find the position of the cutting enzyme (where the nucleotide U was placed), we search for an A in the gap sequence, and a matching T 8~13bp further. The A will be replaced by the U in the reverse user primer, and the T will be replace by the U in the forward user primer."
},
{
"source" : "not available",
"url" : "http:\/\/2008.igem.org\/Team:Newcastle_University\/Workbench",
"category" : "Circuit Design",
"team" : "Newcastle University",
"update" : "2008",
"status" : "finished",
"contact" : "Anil Wipat",
"free" : "not available",
"year" : "2008",
"type" : "Item",
"label" : "Parts Repository Module",
"description" : "Circuit design by hand, a graphical interface using drag-and-drop of icons, and drawing upon the Parts Repository and the Constraints Repository. The designed circuits can then be sent to the Evolutionary Algorithm to be further refined."
},
{
"source" : "not available",
"url" : "http:\/\/django.gibthon.org\/tools\/ligcalc\/",
"category" : "Calculator",
"team" : "Cambridge",
"dependency" : "PHP, web, Django, mfold, BioPython, jQuery",
"update" : "2012",
"status" : "finished",
"contact" : "Jim Ajioka,Jim Haseloff, Gos Micklem",
"free" : "yes",
"year" : "2010",
"type" : "Item",
"label" : "Ligation Calculator",
"description" : "Helps calculate the volumes of DNA used for ligation."
},
{
"source" : "http:\/\/sourceforge.net\/projects\/ustc-igame\/files\/",
"url" : "http:\/\/2010.igem.org\/Team:USTC_Software\/MoDeL",
"category" : "Modelling, Database",
"team" : "USTC",
"update" : "2011",
"status" : "finished",
"contact" : "Hao Jiang",
"free" : "yes",
"year" : "2011",
"type" : "Item",
"label" : "MoDeL -update",
"description" : "Rule-based modeling language and a database of templates to create models of gene circuits or reaction networks. Parts, biochemical reactions and species, \"etc\" and combined to form an SBML file. Templates are used to enforce functional \"rules\". Note: The documentation is lacking in clarity and does not explain the relationship of this approach to other well known modelling and simulation research."
},
{
"source" : "not available",
"url" : "http:\/\/2008.igem.org\/Team:Calgary_Software\/Project",
"category" : "Circuit Design, Simulation",
"team" : "Calgary",
"update" : "2008",
"status" : "finished",
"contact" : "Christian Jacob, Anders Nygren",
"free" : "not available",
"year" : "2008",
"type" : "Item",
"label" : "EvoGEM GUI",
"description" : "Uses the registry of genetic parts provided by the iGEM competition. Evolutionary and genetic strategies, which are useful modeling methods, especially when coupled with agent-based designs.Models the processes within the cell, optimizes BioBrick circuits. a more sophisticated system, both in terms of data retrieval and modeling. Moreover, we developed a user interface that makes the software easy-to-use"
},
{
"source" : "http:\/\/aimed11.unipv.it\/SequenceAlignment\/",
"url" : "http:\/\/2009.igem.org\/Team:UNIPV-Pavia\/Software",
"category" : "Sequence Alignment",
"team" : "UNIPV-Pavia",
"dependency" : "MATLAB",
"update" : "2009",
"status" : "finished",
"contact" : "Paolo Magni",
"free" : "yes",
"year" : "2009",
"type" : "Item",
"label" : "SequenceAlignment",
"description" : "Align sequencing results with expected sequences. Assembling simple parts."
},
{
"source" : "http:\/\/2008.igem.org\/wiki\/images\/e\/e0\/ARQ1.1source.zip",
"url" : "http:\/\/2008.igem.org\/Team:Bologna\/Software",
"category" : "Repository",
"team" : "Bologna",
"dependency" : "Java",
"update" : "2008",
"status" : "active",
"contact" : "Marco Caprini, Emanuele Giordano",
"free" : "yes",
"year" : "2008",
"type" : "Item",
"label" : "ARQ",
"description" : "Query the Registry"
},
{
"source" : "http:\/\/sourceforge.net\/projects\/keplerclotho\/",
"url" : "http:\/\/sourceforge.net\/projects\/keplerclotho\/",
"category" : "Workflow Management, Assembly",
"team" : "Berkeley",
"dependency" : "Clotho",
"update" : "2009",
"status" : "finished",
"contact" : "Douglas Densmore",
"free" : "yes",
"year" : "2009",
"type" : "Item",
"label" : "Kepler-Clotho integration",
"description" : "Development of actors and automated assembly processes for the scientific workflow management system Kepler. Kepler is a multi-university design effort focusing on scientific workflows, and is used by a wide variety of projects in different fields. What the Berkely team did was to integrate Kepler into Clotho, as part of the Clotho-Eugene-Spectacles-Kepler software package"
},
{
"source" : "http:\/\/sourceforge.net\/projects\/eugene\/develop",
"url" : "http:\/\/eugenecad.org\/",
"category" : "Language Definition",
"team" : "Berkeley",
"dependency" : "Java",
"update" : "2010",
"status" : "active",
"contact" : "Douglas Densmore",
"free" : "yes",
"year" : "2009",
"type" : "Item",
"label" : "Eugene",
"description" : "Biological programming language to constrain the composition of genetic parts as a specification of biological constructs. One can both specify the structure of the design (its basic elements) as well composites of basic elements. A system of rules for part composition is also provided."
},
{
"url" : "http:\/\/2011.igem.org\/Team:Peking_S\/modeling\/lgatedesign",
"category" : "Circuit Design, Simulation",
"team" : "Peking",
"update" : "2011",
"status" : "active",
"type" : "Item",
"year" : "2011",
"label" : "Logic Gate Design",
"description" : "Logic Gate Design software"
},
{
"source" : "https:\/\/github.com\/igemsoftware\/NYC_Software_2011",
"url" : "https:\/\/github.com\/igemsoftware\/NYC_Software_2011 and http:\/\/2011.igem.org\/Team:NYC_Software\/Tools\/BLAST",
"category" : "Repository",
"team" : "NYC",
"update" : "2011",
"status" : "active",
"contact" : "Russell Durrett",
"year" : "2011",
"type" : "Item",
"label" : "Blast",
"description" : "BLAST executables to find the most similar parts (or parts of parts) in the current registry"
},
{
"source" : "http:\/\/2010.igem.org\/wiki\/images\/c\/ca\/TUM2010_Software_src.zip",
"url" : "http:\/\/2010.igem.org\/Team:TU_Munich\/Software",
"category" : "DNA Design",
"team" : "TU Munich",
"dependency" : "No",
"update" : "2010",
"status" : "finished",
"contact" : "Friedrich Simmel",
"free" : "yes",
"year" : "2010",
"type" : "Item",
"label" : "connect BioBricks",
"description" : "Generate a single DNA plasmid that contains the custom network entered as input. The software uses a set of predefined DNA designs for AND, OR and NOT gates to generate the gene circuit. A selected few BioBricks serve as input and ouput to the network. In principle, any (of at least 200) transcription-regulating BioBrick can be used as an input, and any gene can serve as an output."
},
{
"source" : "https:\/\/github.com\/jcnossen\/InteractionHomologMapping",
"url" : "http:\/\/2010.igem.org\/Team:TU_Delft#page=Software\/im-tutorial",
"category" : "Protein Interaction Prediction",
"team" : "TU Delft",
"dependency" : "STRING database, Interaction Mapping, Cytoscape",
"update" : "2010",
"status" : "finished",
"contact" : "Jelmer Cnossen",
"free" : "yes",
"year" : "2010",
"type" : "Item",
"label" : "Interaction Mapping Application",
"description" : "Find putative interactions of proteins in a new host organism."
},
{
"url" : "http:\/\/2011.igem.org\/Team:BU_Wellesley_Software\/Trumpet",
"category" : "Circuit Design",
"team" : "BU-Wellesley",
"dependency" : "Windows, Microsoft Surface",
"update" : "2011",
"status" : "finished",
"contact" : "Douglas Densmore",
"free" : "yes",
"year" : "2011",
"type" : "Item",
"label" : "Trumpet",
"description" : "A Trumpet testbed comprises a library of genes and promoters, which can be configured into any desired permutation or combination by treating the DNA with a sequence of enzymes called recombinases. Our design algorithm takes a set of DNA parts, and produces a testbed design and enzyme key dictionary, such that the testbed can be configured into any sequence of promoters and genes by treating it with the corresponding enzyme key. This allows us to rewire the genes and switches and study all their combinations. The goal of Trumpet is to aid the user in designing fully reconfigurable genetic circuit plasmids."
},
{
"source" : "not available",
"url" : "http:\/\/2009.igem.org\/Team:Bologna\/Software#2",
"category" : "Image Analysis",
"team" : "Bologna",
"dependency" : "MATLAB",
"update" : "2009",
"status" : "finished",
"contact" : "Emanuele Giordano, Giulio Zanaroli",
"free" : "not available",
"year" : "2009",
"type" : "Item",
"label" : "VIFluoR - Very Inexpensive Fluorescence Reader)",
"description" : "Estimate, by imaging analysis, the fluorescence emitted by a single bacterium."
},
{
"url" : "http:\/\/2010.igem.org\/Team:Paris_Liliane_Bettencourt\/Project\/SIP",
"category" : "Various",
"team" : "Paris-Liliane Bettencourt",
"dependency" : "Sqlite 3",
"update" : "2010",
"status" : "finished",
"contact" : "Ariel Lindner",
"free" : "yes",
"year" : "2010",
"type" : "Item",
"label" : "SIP Wiki Analyser",
"description" : "Analysis of Statistically Improbable Phrases of iGEM wikis"
},
{
"source" : "https:\/\/github.com\/igemsoftware\/METU-BIN_Ankara_2011",
"url" : "http:\/\/2011.igem.org\/Team:METU-BIN_Ankara\/Project#Results",
"category" : "Integrated Design",
"team" : "METU BIN Ankara",
"update" : "2011",
"status" : "finished",
"type" : "Item",
"year" : "2011",
"label" : "Mining for BioBricks",
"description" : "Design genetic constructs according to their input and output parameters. A web based tool"
},
{
"source" : "not available",
"url" : "http:\/\/2009.igem.org\/Team:Slovenia\/Software (may contain malware)",
"category" : "Nanotechnology, Protein Structure",
"team" : "Slovenia",
"update" : "Not found",
"status" : "not found",
"contact" : "Roman Jerala",
"free" : "not available",
"year" : "2009",
"type" : "Item",
"label" : "nanoBricks-pro",
"description" : "Constructing structures similar to origami, made out of polypeptides. In their page, they claim to have designed software to predict the stability of these structures--coils--, but the link to the \"software\" section reads \"...to be added soon\"."
},
{
"source" : "http:\/\/2008.igem.org\/wiki\/images\/9\/9f\/Simbiology2Latex.zip",
"url" : "http:\/\/2008.igem.org\/Team:KULeuven\/Software\/Simbiology2LaTeX",
"category" : "Converter, Modelling",
"team" : "KU Leuven",
"dependency" : "MATLAB",
"update" : "2008",
"status" : "finished",
"contact" : "Bart De Moor,Georges Gielen, Kathleen Marchal, Yves Moreau, Bart Nicola\u00EF, Johan Robben, Jos Vanderleyden",
"free" : "yes",
"year" : "2008",
"type" : "Item",
"label" : "Simbiology2LaTeX",
"description" : "Convert Matlab Simbiology models to LaTeX-code. This code can be easily converted to a pdf-file with various open source programs (e.g. TeXnicCenter for Windows). The idea for this toolbox is based on the plugin Squeezer for CellDesigner."
},
{
"url" : "http:\/\/2010.igem.org\/Team:Mexico-UNAM-CINVESTAV\/Software",
"category" : "Various",
"team" : "Mexico UNAM-CINVESTAV",
"dependency" : "Not found",
"update" : "2010",
"status" : "finished",
"contact" : "Elias Samra-Hassan, Francisco Javier Razo Hern\u00E1ndez",
"free" : "yes",
"year" : "2010",
"type" : "Item",
"label" : "BioBricks jTools",
"description" : "Utilities to automate biobricks from files"
},
{
"url" : "http:\/\/2011.igem.org\/Team:Potsdam_Bioware\/Software#BioLog_App",
"category" : "Lab notebook",
"team" : "Potsdam",
"update" : "2011",
"status" : "active",
"type" : "Item",
"year" : "2011",
"label" : "BioLog app",
"description" : "an app where you can upload your protocols and which guides you during your work step by step?"
},
{
"source" : "https:\/\/github.com\/igemsoftware\/ENSPS-Strasbourg_2011",
"url" : "http:\/\/2011.igem.org\/Team:ENSPS-Strasbourg",
"category" : "Modelling",
"team" : "ENSPS-Strasbourg",
"dependency" : "Dolphin Smash",
"update" : "2011",
"status" : "finished",
"contact" : "Jacques Haeich",
"free" : "yes",
"year" : "2011",
"type" : "Item",
"label" : "BrioBricks Models Generator for electronic Simulator (BBMGS)",
"description" : "A graphical user interface for designers of synthetic biosystems. Helps in their design process by simulating the system. The midterm objective is to base the software on the database of biological material, fed by other iGEM teams. It will model the studied system in an electronic modeling language and provide simulation results to the user."
},
{
"url" : "http:\/\/2010.igem.org\/Team:TU_Delft#page=Education\/game",
"category" : "Game, Educational",
"team" : "TU Delft",
"dependency" : "No",
"update" : "2010",
"status" : "video",
"contact" : "Marin Licina, Martijn Rentmeester, Sverre Rabbelier, Thomas Rens, Michel de Ridder",
"year" : "2010",
"type" : "Item",
"label" : "Pimp Your Bacterium",
"description" : "iGEM Educational Game in which the player controls a bacterium that needs the appropriate properties and at the same time has to survive viruses, antibiotics and low oxygen levels. Creating these new properties is done by collecting parts in your action screen. If you have collected enough parts, you can go to the lab to your inventory and assemble the needed BioBricks. Children can learn that adding properties can be done by combining parts of DNA and get to know the factors that play a role in the survival of a microorganisms."
},
{
"source" : "https:\/\/github.com\/haydnKing\/Gibthon",
"url" : "http:\/\/gibthon.org\/",
"category" : "Design, Gibson Assembly",
"team" : "Cambridge",
"dependency" : "Web",
"update" : "2011",
"status" : "active",
"contact" : "Haydn King, Bill Collins",
"free" : "yes",
"year" : "2011",
"type" : "Item",
"label" : "Gibthon Construct Designer2",
"description" : "Facilitates the design of primers to create overlaps in your DNA for Gibson Assembly. It will optimise them for length and melting temperature, and warn you of any potential selfpriming or mispriming."
},
{
"source" : "https:\/\/github.com\/igemsoftware\/CBNU-KOREA_2011",
"url" : "http:\/\/2011.igem.org\/Team:CBNU-Korea\/Data\/Browser",
"category" : "Genome Design",
"team" : "CBNU-Korea",
"dependency" : "Java SDK, Eclipse",
"update" : "2011",
"status" : "finished",
"contact" : "Young-Chang Kim, Chung Sei Rhee, Sung Duck Lee",
"free" : "yes",
"year" : "2011",
"type" : "Item",
"label" : "Genome Organization Database and Designer (GOD)",
"description" : "Design an artificial genome with essential genes in silico."
},
{
"source" : "http:\/\/2009.igem.org\/Team:Freiburg_software\/Code",
"url" : "http:\/\/2009.igem.org\/Team:Freiburg_software",
"category" : "Collaborative, Sequence Alignment, Sequence Analysis, Primer Design",
"team" : "Freiburg",
"dependency" : "Google Wave",
"update" : "2010",
"status" : "finished",
"contact" : "Raik Gruenberg",
"free" : "yes",
"year" : "2009",
"type" : "Item",
"label" : "SynBioWave",
"description" : "Based on Google's collaboration and communication tool Wave. Made for collaborative research comprising parts design and documentation. Synthetic biologists can record and share the process of creating research data and perform basic tasks using SynBioWave. This gives synthetic biology access to the collaborative and interactive web 2.0."
},
{
"source" : "https:\/\/github.com\/igemsoftware\/USTC-Software_2011",
"url" : "http:\/\/2011.igem.org\/Team:USTC-Software",
"category" : "Modelling",
"team" : "USTC",
"dependency" : "No",
"update" : "2011",
"status" : "not found",
"contact" : "Hao Jiang",
"free" : "yes",
"year" : "2011",
"type" : "Item",
"label" : "Lachesis",
"description" : "A system to aid in the design, optimization, and simulation of parts circuits. The Assembly View graphical interface creates models using MoDeL, a rule-based modeling language. The interface provides utilities to insert components (parts and species) into compartments or plasmids. Finally, the model can be \"solved\", an SBML file is created.."
},
{
"url" : "http:\/\/2011.igem.org\/Team:UEA-JIC_Norwich\/software and http:\/\/2011.igem.org\/File:Igem_defender.zip",
"category" : "Game",
"team" : "UEA-JIC Norwich",
"update" : "2011",
"status" : "active",
"type" : "Item",
"year" : "2011",
"label" : "iGEM Registry Defender",
"description" : "a new Android game developed by UEA-JIC Norwich iGEM11 team. The aim of the game is to prevent poorly characterised bio bricks from entering the registry, whack-a-mole style"
},
{
"source" : "http:\/\/2011.igem.org\/wiki\/images\/f\/f5\/CodonOptimisationScript.zip",
"url" : "http:\/\/2011.igem.org\/Team:Imperial_College_London\/Software",
"category" : "Codon Optimization, Sequence Analysis",
"team" : "Imperial College London",
"dependency" : "R",
"update" : "2011",
"status" : "finished",
"contact" : "Guy-Bart Stan",
"free" : "yes",
"year" : "2011",
"type" : "Item",
"label" : "Joint codon optimisation algorithm",
"description" : "Codon optimization: maintain codon diversity while simultaneously limiting rare codon inclusion. Achieved by weighting codon selection using bias tables obtained from the Codon Usage Database. Joint optimisation was facilitated by combining the bias tables of E. coli and B. subtilis. Following the generation of a seed-sequence, the stochastic pruning of rare codons was used to iteratively optimise the sequence."
},
{
"source" : "not available",
"url" : "http:\/\/django.gibthon.org\/",
"category" : "Primer Design",
"team" : "Cambridge",
"dependency" : "PHP, web, Django, mfold, BioPython, jQuery",
"update" : "2010",
"status" : "finished",