-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbibliography.bib
More file actions
1942 lines (1795 loc) · 66.8 KB
/
Copy pathbibliography.bib
File metadata and controls
1942 lines (1795 loc) · 66.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
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
%% This BibTeX bibliography file was created using BibDesk.
%% https://bibdesk.sourceforge.io/
%% Created for Denis Thieffry at 2025-07-14 16:49:26 +0200
%% Saved with string encoding Unicode (UTF-8)
@article{Berenguier2013,
author = {B{\'e}renguier, D. and Chaouiya, C. and Monteiro, P. T. and Naldi, A. and Remy, E. and Thieffry, D. and Tichit, L.},
doi = {10.1063/1.4809783},
issn = {1089-7682},
journal = {Chaos: An Interdisciplinary Journal of Nonlinear Science},
month = jun,
number = {2},
publisher = {AIP Publishing},
title = {Dynamical modeling and analysis of large cellular regulatory networks},
volume = {23},
year = {2013},
bdsk-url-1 = {https://doi.org/10.1063/1.4809783}}
@inbook{Chaouiya2006,
author = {Chaouiya, Claudine and Remy, Elisabeth and Thieffry, Denis},
booktitle = {Transactions on Computational Systems Biology VI},
doi = {10.1007/11880646_5},
isbn = {9783540462361},
issn = {1611-3349},
pages = {95--112},
publisher = {Springer Berlin Heidelberg},
title = {Qualitative Petri Net Modelling of Genetic Networks},
year = {2006},
bdsk-url-1 = {https://doi.org/10.1007/11880646_5}}
@article{Chaouiya2008,
author = {Chaouiya, Claudine and Remy, Elisabeth and Thieffry, Denis},
doi = {10.1016/j.jda.2007.06.003},
issn = {1570-8667},
journal = {Journal of Discrete Algorithms},
month = jun,
number = {2},
pages = {165--177},
publisher = {Elsevier BV},
title = {Petri net modelling of biological regulatory networks},
volume = {6},
year = {2008},
bdsk-url-1 = {https://doi.org/10.1016/j.jda.2007.06.003}}
@inbook{Chaouiya2012,
author = {Chaouiya, Claudine and Naldi, Aur{\'e}lien and Thieffry, Denis},
booktitle = {Bacterial Molecular Networks},
doi = {10.1007/978-1-61779-361-5_23},
isbn = {9781617793615},
issn = {1940-6029},
month = oct,
pages = {463-479},
publisher = {Springer New York},
title = {Logical Modelling of Gene Regulatory Networks with GINsim},
year = {2012},
}
@article{Mendes2013,
author = {Mendes, Nuno D. and Lang, Fr{\'e}d{\'e}ric and Le Cornec, Yves-Stan and Mateescu, Radu and Batt, Gregory and Chaouiya, Claudine},
doi = {10.1093/bioinformatics/btt033},
issn = {1367-4803},
journal = {Bioinformatics},
month = jan,
number = {6},
pages = {749--757},
publisher = {Oxford University Press (OUP)},
title = {Composition and abstraction of logical regulatory modules: application to multicellular systems},
volume = {29},
year = {2013},
bdsk-url-1 = {https://doi.org/10.1093/bioinformatics/btt033}}
@inbook{Monteiro2012,
author = {Monteiro, Pedro T. and Chaouiya, Claudine},
booktitle = {6th International Conference on Practical Applications of Computational Biology & Bioinformatics},
doi = {10.1007/978-3-642-28839-5_30},
isbn = {9783642288395},
issn = {1867-5670},
pages = {259--267},
publisher = {Springer Berlin Heidelberg},
title = {Efficient Verification for Logical Models of Regulatory Networks},
year = {2012},
bdsk-url-1 = {https://doi.org/10.1007/978-3-642-28839-5_30}}
@inbook{Naldi2007,
author = {Naldi, Aur{\'e}lien and Thieffry, Denis and Chaouiya, Claudine},
booktitle = {Computational Methods in Systems Biology},
doi = {10.1007/978-3-540-75140-3_16},
isbn = {9783540751403},
issn = {1611-3349},
pages = {233--247},
publisher = {Springer Berlin Heidelberg},
title = {Decision Diagrams for the Representation and Analysis of Logical Models of Genetic Networks},
year = {2007},
bdsk-url-1 = {https://doi.org/10.1007/978-3-540-75140-3_16}}
@article{Naldi2009,
author = {Naldi, A. and Berenguier, D. and Faur{\'e}, A. and Lopez, F. and Thieffry, D. and Chaouiya, C.},
doi = {10.1016/j.biosystems.2009.04.008},
issn = {0303-2647},
journal = {Biosystems},
month = aug,
number = {2},
pages = {134--139},
publisher = {Elsevier BV},
title = {Logical modelling of regulatory networks with GINsim 2.3},
volume = {97},
year = {2009},
bdsk-url-1 = {https://doi.org/10.1016/j.biosystems.2009.04.008}}
@article{Naldi2010,
author = {Naldi, Aur{\'e}lien and Carneiro, Jorge and Chaouiya, Claudine and Thieffry, Denis},
doi = {10.1371/journal.pcbi.1000912},
editor = {Bonneau, Richard},
issn = {1553-7358},
journal = {PLoS Computational Biology},
month = sep,
number = {9},
pages = {e1000912},
publisher = {Public Library of Science (PLoS)},
title = {Diversity and Plasticity of Th Cell Types Predicted from Regulatory Network Modelling},
volume = {6},
year = {2010},
bdsk-url-1 = {https://doi.org/10.1371/journal.pcbi.1000912}}
@article{Naldi2011,
author = {Naldi, Aur{\'e}lien and Remy, Elisabeth and Thieffry, Denis and Chaouiya, Claudine},
doi = {10.1016/j.tcs.2010.10.021},
issn = {0304-3975},
journal = {Theoretical Computer Science},
month = may,
number = {21},
pages = {2207--2218},
publisher = {Elsevier BV},
title = {Dynamically consistent reduction of logical regulatory graphs},
volume = {412},
year = {2011},
bdsk-url-1 = {https://doi.org/10.1016/j.tcs.2010.10.021}}
@inbook{Naldi2012,
author = {Naldi, Aur{\'e}lien and Monteiro, Pedro T. and Chaouiya, Claudine},
booktitle = {Computational Methods in Systems Biology},
doi = {10.1007/978-3-642-33636-2_17},
isbn = {9783642336362},
issn = {1611-3349},
pages = {288--306},
publisher = {Springer Berlin Heidelberg},
title = {Efficient Handling of Large Signalling-Regulatory Networks by Focusing on Their Core Control},
year = {2012},
bdsk-url-1 = {https://doi.org/10.1007/978-3-642-33636-2_17}}
@article{Thieffry1995,
author = {Thieffry, Denis and Thomas, Ren{\'e}},
doi = {10.1007/bf02460619},
issn = {1522-9602},
journal = {Bulletin of Mathematical Biology},
month = mar,
number = {2},
pages = {277--297},
publisher = {Springer Science and Business Media LLC},
title = {Dynamical behaviour of biological regulatory networks---II. Immunity control in bacteriophage lambda},
volume = {57},
year = {1995},
bdsk-url-1 = {https://doi.org/10.1007/bf02460619}}
@article{Thieffry2007,
author = {Thieffry, D.},
doi = {10.1093/bib/bbm028},
issn = {1477-4054},
journal = {Briefings in Bioinformatics},
month = mar,
number = {4},
pages = {220--225},
publisher = {Oxford University Press (OUP)},
title = {Dynamical roles of biological regulatory circuits},
volume = {8},
year = {2007},
bdsk-url-1 = {https://doi.org/10.1093/bib/bbm028}}
@article{ginsim3,
author = {Naldi, Aur{\'e}lien and Hernandez, C{\'e}line and Abou-Jaoud{\'e}, Wassim and Monteiro, Pedro T. and Chaouiya, Claudine and Thieffry, Denis},
doi = {10.3389/fphys.2018.00646},
issn = {1664-042X},
journal = {Frontiers in Physiology},
month = jun,
publisher = {Frontiers Media SA},
title = {Logical Modeling and Analysis of Cellular Regulatory Networks With {GINsim} 3.0},
volume = {9},
year = {2018},
bdsk-url-1 = {https://doi.org/10.3389/fphys.2018.00646}}
@article{deJong2002,
author = {de Jong, Hidde},
doi = {10.1089/10665270252833208},
issn = {1557-8666},
journal = {Journal of Computational Biology},
month = jan,
number = {1},
pages = {67--103},
publisher = {Mary Ann Liebert Inc},
title = {Modeling and Simulation of Genetic Regulatory Systems: A Literature Review},
volume = {9},
year = {2002},
bdsk-url-1 = {https://doi.org/10.1089/10665270252833208}}
@article{Gonzalez2006,
author = {Gonzalez, A. Gonzalez and Naldi, A. and S{\'a}nchez, L. and Thieffry, D. and Chaouiya, C.},
doi = {10.1016/j.biosystems.2005.10.003},
issn = {0303-2647},
journal = {Biosystems},
month = may,
number = {2},
pages = {91--100},
publisher = {Elsevier BV},
title = {{GINsim}: A software suite for the qualitative modelling, simulation and analysis of regulatory networks},
volume = {84},
year = {2006},
bdsk-url-1 = {https://doi.org/10.1016/j.biosystems.2005.10.003}}
@article{Gonzalez2006b,
author = {Gonz{\'a}lez, Aitor and Chaouiya, Claudine and Thieffry, Denis},
doi = {10.1534/genetics.106.061218},
issn = {1943-2631},
journal = {Genetics},
month = nov,
number = {3},
pages = {1625--1634},
publisher = {Oxford University Press (OUP)},
title = {Dynamical Analysis of the Regulatory Network Defining the Dorsal--Ventral Boundary of the Drosophila Wing Imaginal Disc},
volume = {174},
year = {2006},
bdsk-url-1 = {https://doi.org/10.1534/genetics.106.061218}}
@article{Simao2005,
author = {Sim{\~a}o, E. and Remy, E. and Thieffry, D. and Chaouiya, C.},
doi = {10.1093/bioinformatics/bti1130},
issn = {1367-4803},
journal = {Bioinformatics},
month = sep,
number = {suppl_2},
pages = {ii190--ii196},
publisher = {Oxford University Press (OUP)},
title = {Qualitative modelling of regulated metabolic pathways: application to the tryptophan biosynthesis in E.Coli},
volume = {21},
year = {2005},
bdsk-url-1 = {https://doi.org/10.1093/bioinformatics/bti1130}}
@book{Ptashne1992,
address = {Cambridge (Mass.)},
author = {Ptashne, Mark},
edition = {2nd},
isbn = {0865422095},
publisher = {Cell Press : Blackwell Scientific Publications},
title = {A Genetic Switch: Phage lambda and Higher Organisms},
url = {http://lib.ugent.be/catalog/rug01:000263939},
year = {1992},
bdsk-url-1 = {http://lib.ugent.be/catalog/rug01:000263939}}
@article{Faure2006,
author = {Faur{\'e}, Adrien and Naldi, Aur{\'e}lien and Chaouiya, Claudine and Thieffry, Denis},
doi = {10.1093/bioinformatics/btl210},
issn = {1367-4803},
journal = {Bioinformatics},
month = jul,
number = {14},
pages = {e124--e131},
publisher = {Oxford University Press (OUP)},
title = {Dynamical analysis of a generic Boolean model for the control of the mammalian cell cycle},
volume = {22},
year = {2006},
bdsk-url-1 = {https://doi.org/10.1093/bioinformatics/btl210}}
@article{Hou1997,
author = {Hou, X},
doi = {10.1016/s0168-9525(97)01006-8},
issn = {0168-9525},
journal = {Trends in Genetics},
month = mar,
number = {3},
pages = {105--110},
publisher = {Elsevier BV},
title = {The JAK-STAT pathway in Drosophila},
volume = {13},
year = {1997},
bdsk-url-1 = {https://doi.org/10.1016/s0168-9525(97)01006-8}}
@article{Luo2001,
author = {Luo, Hong and Dearolf, Charles R.},
doi = {10.1002/bies.10016},
issn = {1521-1878},
journal = {BioEssays},
month = nov,
number = {12},
pages = {1138--1147},
publisher = {Wiley},
title = {The JAK/STAT pathway and Drosophila development},
volume = {23},
year = {2001},
bdsk-url-1 = {https://doi.org/10.1002/bies.10016}}
@article{Johnson2011,
author = {Johnson, Aaron N. and Mokalled, Mayssa H. and Haden, Tom N. and Olson, Eric N.},
doi = {10.1242/dev.071464},
issn = {0950-1991},
journal = {Development},
month = nov,
number = {21},
pages = {4627--4638},
publisher = {The Company of Biologists},
title = {JAK/Stat signaling regulates heart precursor diversification inDrosophila},
volume = {138},
year = {2011},
bdsk-url-1 = {https://doi.org/10.1242/dev.071464}}
@article{Kiger2001,
author = {Kiger, Amy A. and Jones, D. Leanne and Schulz, Cordula and Rogers, Madolyn B. and Fuller, Margaret T.},
doi = {10.1126/science.1066707},
issn = {1095-9203},
journal = {Science},
month = dec,
number = {5551},
pages = {2542--2545},
publisher = {American Association for the Advancement of Science (AAAS)},
title = {Stem Cell Self-Renewal Specified by JAK-STAT Activation in Response to a Support Cell Cue},
volume = {294},
year = {2001},
bdsk-url-1 = {https://doi.org/10.1126/science.1066707}}
@article{Denef2003,
author = {Denef, Natalie and Sch\"{u}pbach, Trudi},
doi = {10.1016/s0960-9822(03)00317-8},
issn = {0960-9822},
journal = {Current Biology},
month = may,
number = {10},
pages = {R388--R390},
publisher = {Elsevier BV},
title = {Patterning: JAK-STAT Signalling in the Drosophila Follicular Epithelium},
volume = {13},
year = {2003},
bdsk-url-1 = {https://doi.org/10.1016/s0960-9822(03)00317-8}}
@article{Xi2003,
author = {Xi, Rongwen and McGregor, Jennifer R. and Harrison, Douglas A.},
doi = {10.1016/s1534-5807(02)00412-4},
issn = {1534-5807},
journal = {Developmental Cell},
month = feb,
number = {2},
pages = {167--177},
publisher = {Elsevier BV},
title = {A Gradient of JAK Pathway Activity Patterns the Anterior-Posterior Axis of the Follicular Epithelium},
volume = {4},
year = {2003},
bdsk-url-1 = {https://doi.org/10.1016/s1534-5807(02)00412-4}}
@article{Harrison2001,
author = {Harrison, Jacob C. and Bardes, Elaine S.G. and Ohya, Yoshikazu and Lew, Daniel J.},
doi = {10.1038/35070104},
issn = {1476-4679},
journal = {Nature Cell Biology},
month = mar,
number = {4},
pages = {417--420},
publisher = {Springer Science and Business Media LLC},
title = {A role for the Pkc1p/Mpk1p kinase cascade in the morphogenesis checkpoint},
volume = {3},
year = {2001},
bdsk-url-1 = {https://doi.org/10.1038/35070104}}
@article{Klingensmith1994,
author = {Klingensmith, John and Nusse, Roel},
doi = {10.1006/dbio.1994.1325},
issn = {0012-1606},
journal = {Developmental Biology},
month = dec,
number = {2},
pages = {396--414},
publisher = {Elsevier BV},
title = {Signaling by wingless in Drosophila},
volume = {166},
year = {1994},
bdsk-url-1 = {https://doi.org/10.1006/dbio.1994.1325}}
@article{Michelson2003,
author = {Michelson, Alan M.},
doi = {10.1126/stke.2003.192.pe30},
issn = {1525-8882},
journal = {Science's STKE},
month = jul,
number = {192},
publisher = {American Association for the Advancement of Science (AAAS)},
title = {Running Interference for Hedgehog Signaling},
volume = {2003},
year = {2003},
bdsk-url-1 = {https://doi.org/10.1126/stke.2003.192.pe30}}
@article{Perrimon2012,
author = {Perrimon, N. and Pitsouli, C. and Shilo, B.-Z.},
doi = {10.1101/cshperspect.a005975},
issn = {1943-0264},
journal = {Cold Spring Harbor Perspectives in Biology},
month = aug,
number = {8},
pages = {a005975--a005975},
publisher = {Cold Spring Harbor Laboratory},
title = {Signaling Mechanisms Controlling Cell Fate and Embryonic Patterning},
volume = {4},
year = {2012},
bdsk-url-1 = {https://doi.org/10.1101/cshperspect.a005975}}
@article{Swarup2012,
author = {Swarup, S. and Verheyen, E. M.},
doi = {10.1101/cshperspect.a007930},
issn = {1943-0264},
journal = {Cold Spring Harbor Perspectives in Biology},
month = apr,
number = {6},
pages = {a007930--a007930},
publisher = {Cold Spring Harbor Laboratory},
title = {Wnt/Wingless Signaling in Drosophila},
volume = {4},
year = {2012},
bdsk-url-1 = {https://doi.org/10.1101/cshperspect.a007930}}
@article{Tauc2012,
author = {Tauc, Helen M. and Mann, Tabea and Werner, Kathrin and Pandur, Petra},
doi = {10.1002/dvg.22021},
issn = {1526-968X},
journal = {genesis},
month = apr,
number = {6},
pages = {466--481},
publisher = {Wiley},
title = {A role for Drosophila Wnt-4 in heart development},
volume = {50},
year = {2012},
bdsk-url-1 = {https://doi.org/10.1002/dvg.22021}}
@article{Duchek2001,
author = {Duchek, Peter and Somogyi, K{\'a}lm{\'a}n and J{\'e}kely, G{\'a}sp{\'a}r and Beccari, Simone and R{\o}rth, Pernille},
doi = {10.1016/s0092-8674(01)00502-5},
issn = {0092-8674},
journal = {Cell},
month = oct,
number = {1},
pages = {17--26},
publisher = {Elsevier BV},
title = {Guidance of Cell Migration by the Drosophila PDGF/VEGF Receptor},
volume = {107},
year = {2001},
bdsk-url-1 = {https://doi.org/10.1016/s0092-8674(01)00502-5}}
@article{Bruckner2004,
author = {Br\"{u}ckner, Katja and Kockel, Lutz and Duchek, Peter and Luque, Carlos M and R{\o}rth, Pernille and Perrimon, Norbert},
doi = {10.1016/j.devcel.2004.06.007},
issn = {1534-5807},
journal = {Developmental Cell},
month = jul,
number = {1},
pages = {73--84},
publisher = {Elsevier BV},
title = {The PDGF/VEGF Receptor Controls Blood Cell Survival in Drosophila},
volume = {7},
year = {2004},
bdsk-url-1 = {https://doi.org/10.1016/j.devcel.2004.06.007}}
@article{Wood2006,
author = {Wood, Will and Faria, Celia and Jacinto, Antonio},
doi = {10.1083/jcb.200508161},
issn = {0021-9525},
journal = {The Journal of Cell Biology},
month = may,
number = {3},
pages = {405--416},
publisher = {Rockefeller University Press},
title = {Distinct mechanisms regulate hemocyte chemotaxis during development and wound healing in Drosophila melanogaster},
volume = {173},
year = {2006},
bdsk-url-1 = {https://doi.org/10.1083/jcb.200508161}}
@article{Harris2007,
author = {Harris, Katherine E. and Schnittke, Nikolai and Beckendorf, Steven K.},
doi = {10.1016/j.mod.2007.03.003},
issn = {0925-4773},
journal = {Mechanisms of Development},
month = jul,
number = {6},
pages = {441--448},
publisher = {Elsevier BV},
title = {Two ligands signal through the Drosophila PDGF/VEGF receptor to ensure proper salivary gland positioning},
volume = {124},
year = {2007},
bdsk-url-1 = {https://doi.org/10.1016/j.mod.2007.03.003}}
@article{Sims2009,
author = {Sims, David and Duchek, Peter and Baum, Buzz},
doi = {10.1186/gb-2009-10-2-r20},
issn = {1474-760X},
journal = {Genome Biology},
month = feb,
number = {2},
publisher = {Springer Science and Business Media LLC},
title = {PDGF/VEGF signaling controls cell size in Drosophila},
volume = {10},
year = {2009},
bdsk-url-1 = {https://doi.org/10.1186/gb-2009-10-2-r20}}
@article{Vincent1998,
author = {Vincent, St{\'e}phane and Wilson, Robert and Coelho, Carmen and Affolter, Markus and Leptin, Maria},
doi = {10.1016/s1097-2765(00)80151-3},
issn = {1097-2765},
journal = {Molecular Cell},
month = oct,
number = {4},
pages = {515--525},
publisher = {Elsevier BV},
title = {The Drosophila Protein Dof Is Specifically Required for FGF Signaling},
volume = {2},
year = {1998},
bdsk-url-1 = {https://doi.org/10.1016/s1097-2765(00)80151-3}}
@article{Brunner1994,
author = {Brunner, Damian and D\"{u}cker, Klaus and Oellers, Nadja and Hafen, Ernst and Scholzi, Henrike and Klambt, Christian},
doi = {10.1038/370386a0},
issn = {1476-4687},
journal = {Nature},
month = aug,
number = {6488},
pages = {386--389},
publisher = {Springer Science and Business Media LLC},
title = {The ETS domain protein Pointed-P2 is a target of MAP kinase in the Sevenless signal transduction pathway},
volume = {370},
year = {1994},
bdsk-url-1 = {https://doi.org/10.1038/370386a0}}
@article{ONeill1994,
author = {O'Neill, Elizabeth M. and Rebay, Ilaria and Tjian, Robert and Rubin, Gerald M.},
doi = {10.1016/0092-8674(94)90580-0},
issn = {0092-8674},
journal = {Cell},
month = jul,
number = {1},
pages = {137--147},
publisher = {Elsevier BV},
title = {The activities of two Ets-related transcription factors required for drosophila eye development are modulated by the Ras/MAPK pathway},
volume = {78},
year = {1994},
bdsk-url-1 = {https://doi.org/10.1016/0092-8674(94)90580-0}}
@article{Novak2004,
author = {Nov{\'a}k, B{\'e}la and Tyson, John J.},
doi = {10.1016/j.jtbi.2004.04.039},
issn = {0022-5193},
journal = {Journal of Theoretical Biology},
month = oct,
number = {4},
pages = {563--579},
publisher = {Elsevier BV},
title = {A model for restriction point control of the mammalian cell cycle},
volume = {230},
year = {2004},
bdsk-url-1 = {https://doi.org/10.1016/j.jtbi.2004.04.039}}
@article{Klamt2006,
author = {Klamt, Steffen and Saez-Rodriguez, Julio and Lindquist, Jonathan A and Simeoni, Luca and Gilles, Ernst D},
doi = {10.1186/1471-2105-7-56},
issn = {1471-2105},
journal = {BMC Bioinformatics},
month = feb,
number = {1},
publisher = {Springer Science and Business Media LLC},
title = {A methodology for the structural and functional analysis of signaling and regulatory networks},
volume = {7},
year = {2006},
bdsk-url-1 = {https://doi.org/10.1186/1471-2105-7-56}}
@article{Orlando2008,
author = {Orlando, David A. and Lin, Charles Y. and Bernard, Allister and Wang, Jean Y. and Socolar, Joshua E. S. and Iversen, Edwin S. and Hartemink, Alexander J. and Haase, Steven B.},
doi = {10.1038/nature06955},
issn = {1476-4687},
journal = {Nature},
month = may,
number = {7197},
pages = {944--947},
publisher = {Springer Science and Business Media LLC},
title = {Global control of cell-cycle transcription by coupled CDK and network oscillators},
volume = {453},
year = {2008},
bdsk-url-1 = {https://doi.org/10.1038/nature06955}}
@article{Davidich2008,
author = {Davidich, Maria I. and Bornholdt, Stefan},
doi = {10.1371/journal.pone.0001672},
editor = {Stolovitzky, Gustavo},
issn = {1932-6203},
journal = {PLoS ONE},
month = feb,
number = {2},
pages = {e1672},
publisher = {Public Library of Science (PLoS)},
title = {Boolean Network Model Predicts Cell Cycle Sequence of Fission Yeast},
volume = {3},
year = {2008},
bdsk-url-1 = {https://doi.org/10.1371/journal.pone.0001672}}
@article{Faure2009,
author = {Faur{\'e}, Adrien and Thieffry, Denis},
doi = {10.1039/b907562n},
issn = {1742-2051},
journal = {Molecular BioSystems},
number = {12},
pages = {1569},
publisher = {Royal Society of Chemistry (RSC)},
title = {Logical modelling of cell cycle control in eukaryotes: a comparative study},
volume = {5},
year = {2009},
bdsk-url-1 = {https://doi.org/10.1039/b907562n}}
@article{Irons2009,
author = {Irons, D.J.},
doi = {10.1016/j.jtbi.2008.12.028},
issn = {0022-5193},
journal = {Journal of Theoretical Biology},
month = apr,
number = {4},
pages = {543--559},
publisher = {Elsevier BV},
title = {Logical analysis of the budding yeast cell cycle},
volume = {257},
year = {2009},
bdsk-url-1 = {https://doi.org/10.1016/j.jtbi.2008.12.028}}
@article{Chen2004,
author = {Chen, Katherine C. and Calzone, Laurence and Csikasz-Nagy, Attila and Cross, Frederick R. and Novak, Bela and Tyson, John J.},
doi = {10.1091/mbc.e03-11-0794},
issn = {1939-4586},
journal = {Molecular Biology of the Cell},
month = aug,
number = {8},
pages = {3841--3862},
publisher = {American Society for Cell Biology (ASCB)},
title = {Integrative Analysis of Cell Cycle Control in Budding Yeast},
volume = {15},
year = {2004},
bdsk-url-1 = {https://doi.org/10.1091/mbc.e03-11-0794}}
@article{Faure2009b,
author = {Faur{\'e}, Adrien and Naldi, Aur{\'e}lien and Lopez, Fabrice and Chaouiya, Claudine and Ciliberto, Andrea and Thieffry, Denis},
doi = {10.1039/b910101m},
issn = {1742-2051},
journal = {Molecular BioSystems},
number = {12},
pages = {1787},
publisher = {Royal Society of Chemistry (RSC)},
title = {Modular logical modelling of the budding yeast cell cycle},
volume = {5},
year = {2009},
bdsk-url-1 = {https://doi.org/10.1039/b910101m}}
@article{Ciliberto2003,
author = {Ciliberto, Andrea and Novak, Bela and Tyson, John J.},
doi = {10.1083/jcb.200306139},
issn = {0021-9525},
journal = {The Journal of Cell Biology},
month = dec,
number = {6},
pages = {1243--1254},
publisher = {Rockefeller University Press},
title = {Mathematical model of the morphogenesis checkpoint in budding yeast},
volume = {163},
year = {2003},
bdsk-url-1 = {https://doi.org/10.1083/jcb.200306139}}
@article{Queralt2006,
author = {Queralt, Ethel and Lehane, Chris and Novak, Bela and Uhlmann, Frank},
doi = {10.1016/j.cell.2006.03.038},
issn = {0092-8674},
journal = {Cell},
month = may,
number = {4},
pages = {719--732},
publisher = {Elsevier BV},
title = {Downregulation of PP2ACdc55 Phosphatase by Separase Initiates Mitotic Exit in Budding Yeast},
volume = {125},
year = {2006},
bdsk-url-1 = {https://doi.org/10.1016/j.cell.2006.03.038}}
@article{Letort2018,
author = {Letort, Gaelle and Montagud, Arnau and Stoll, Gautier and Heiland, Randy and Barillot, Emmanuel and Macklin, Paul and Zinovyev, Andrei and Calzone, Laurence},
doi = {10.1093/bioinformatics/bty766},
editor = {Wren, Jonathan},
issn = {1367-4811},
journal = {Bioinformatics},
month = aug,
number = {7},
pages = {1188--1196},
publisher = {Oxford University Press (OUP)},
title = {PhysiBoSS: a multi-scale agent-based modelling framework integrating physical dimension and cell signalling},
volume = {35},
year = {2018},
bdsk-url-1 = {https://doi.org/10.1093/bioinformatics/bty766}}
@article{Anderson2000,
author = {Anderson, Kathryn V},
doi = {10.1016/s0952-7915(99)00045-x},
issn = {0952-7915},
journal = {Current Opinion in Immunology},
month = feb,
number = {1},
pages = {13--19},
publisher = {Elsevier BV},
title = {Toll signaling pathways in the innate immune response},
volume = {12},
year = {2000},
bdsk-url-1 = {https://doi.org/10.1016/s0952-7915(99)00045-x}}
@article{Sun2003,
author = {Sun, Huaiyu and Towb, Par and Chiem, Daniel N and Foster, Byron A and Wasserman, Steven A},
doi = {10.1038/sj.emboj.7600033},
issn = {1460-2075},
journal = {The EMBO Journal},
month = dec,
number = {1},
pages = {100--110},
publisher = {Springer Science and Business Media LLC},
title = {Regulated assembly of the Toll signaling complex drives Drosophila dorsoventral patterning},
volume = {23},
year = {2003},
bdsk-url-1 = {https://doi.org/10.1038/sj.emboj.7600033}}
@article{Tanji2005,
author = {Tanji, Takahiro and Ip, Y. Tony},
doi = {10.1016/j.it.2005.02.006},
issn = {1471-4906},
journal = {Trends in Immunology},
month = apr,
number = {4},
pages = {193--198},
publisher = {Elsevier BV},
title = {Regulators of the Toll and Imd pathways in the Drosophila innate immune response},
volume = {26},
year = {2005},
bdsk-url-1 = {https://doi.org/10.1016/j.it.2005.02.006}}
@article{Valanne2011,
author = {Valanne, Susanna and Wang, Jing-Huan and R\"{a}met, Mika},
doi = {10.4049/jimmunol.1002302},
issn = {1550-6606},
journal = {The Journal of Immunology},
month = jan,
number = {2},
pages = {649--656},
publisher = {Oxford University Press (OUP)},
title = {The Drosophila Toll Signaling Pathway},
volume = {186},
year = {2011},
bdsk-url-1 = {https://doi.org/10.4049/jimmunol.1002302}}
@article{Morisato1994,
author = {Morisato, Donald and Anderson, Kathryn V.},
doi = {10.1016/0092-8674(94)90507-x},
issn = {0092-8674},
journal = {Cell},
month = feb,
number = {4},
pages = {677--688},
publisher = {Elsevier BV},
title = {The sp\"{a}tzle gene encodes a component of the extracellular signaling pathway establishing the dorsal-ventral pattern of the Drosophila embryo},
volume = {76},
year = {1994},
bdsk-url-1 = {https://doi.org/10.1016/0092-8674(94)90507-x}}
@article{Weber2003,
author = {Weber, Alexander N R and Tauszig-Delamasure, Servane and Hoffmann, Jules A and Leli{\`e}vre, Eric and Gascan, Hugues and Ray, Keith P and Morse, Mary A and Imler, Jean-Luc and Gay, Nicholas J},
doi = {10.1038/ni955},
issn = {1529-2916},
journal = {Nature Immunology},
month = jul,
number = {8},
pages = {794--800},
publisher = {Springer Science and Business Media LLC},
title = {Binding of the Drosophila cytokine Sp\"{a}tzle to Toll is direct and establishes signaling},
volume = {4},
year = {2003},
bdsk-url-1 = {https://doi.org/10.1038/ni955}}
@article{Royet2004,
author = {Royet, J.},
doi = {10.1007/s00018-003-3243-0},
issn = {1420-9071},
journal = {Cellular and Molecular Life Sciences (CMLS)},
month = mar,
number = {5},
pages = {537--546},
publisher = {Springer Science and Business Media LLC},
title = {Drosophila melanogaster innate immunity: an emerging role for peptidoglycan recognition proteins in bacteria detection},
volume = {61},
year = {2004},
bdsk-url-1 = {https://doi.org/10.1007/s00018-003-3243-0}}
@article{Gobert2003,
author = {Gobert, Vanessa and Gottar, Marie and Matskevich, Alexey A. and Rutschmann, Sophie and Royet, Julien and Belvin, Marcia and Hoffmann, Jules A. and Ferrandon, Dominique},
doi = {10.1126/science.1085432},
issn = {1095-9203},
journal = {Science},
month = dec,
number = {5653},
pages = {2126--2130},
publisher = {American Association for the Advancement of Science (AAAS)},
title = {Dual Activation of the Drosophila Toll Pathway by Two Pattern Recognition Receptors},
volume = {302},
year = {2003},
bdsk-url-1 = {https://doi.org/10.1126/science.1085432}}
@article{Ligoxygakis2002,
author = {Ligoxygakis, P.},
doi = {10.1093/emboj/cdf661},
issn = {1460-2075},
journal = {The EMBO Journal},
month = dec,
number = {23},
pages = {6330--6337},
publisher = {Springer Science and Business Media LLC},
title = {A serpin mutant links Toll activation to melanization in the host defence of Drosophila},
volume = {21},
year = {2002},
bdsk-url-1 = {https://doi.org/10.1093/emboj/cdf661}}
@article{Ligoxygakis2002b,
author = {Ligoxygakis, Petros and Pelte, Nad{\`e}ge and Hoffmann, Jules A. and Reichhart, Jean-Marc},
doi = {10.1126/science.1072391},
issn = {1095-9203},
journal = {Science},
month = jul,
number = {5578},
pages = {114--116},
publisher = {American Association for the Advancement of Science (AAAS)},
title = {Activation of Drosophila Toll During Fungal Infection by a Blood Serine Protease},
volume = {297},
year = {2002}
}
@article{Pelte2006,
author = {Pelte, Nad{\`e}ge and Robertson, Andrew S. and Zou, Zhen and Belorgey, Didier and Dafforn, Timothy R. and Jiang, Haobo and Lomas, David and Reichhart, Jean-Marc and Gubb, David},
doi = {10.1016/j.ibmb.2005.10.004},
issn = {0965-1748},
journal = {Insect Biochemistry and Molecular Biology},
month = jan,
number = {1},
pages = {37--46},
publisher = {Elsevier BV},
title = {Immune challenge induces N-terminal cleavage of the Drosophila serpin Necrotic},
volume = {36},
year = {2006}
}
@article{Bischoff2004,
author = {Bischoff, Vincent and Vignal, C{\'e}cile and Boneca, Ivo G and Michel, Tatiana and Hoffmann, Jules A and Royet, Julien},
doi = {10.1038/ni1123},
issn = {1529-2916},
journal = {Nature Immunology},
month = sep,
number = {11},
pages = {1175--1180},
publisher = {Springer Science and Business Media LLC},
title = {Function of the drosophila pattern-recognition receptor PGRP-SD in the detection of Gram-positive bacteria},
volume = {5},
year = {2004},
bdsk-url-1 = {https://doi.org/10.1038/ni1123}}
@article{Eldar2002,
author = {Eldar, Avigdor and Dorfman, Ruslan and Weiss, Daniel and Ashe, Hilary and Shilo, Ben-Zion and Barkai, Naama},
doi = {10.1038/nature01061},
issn = {1476-4687},
journal = {Nature},
month = sep,
number = {6904},
pages = {304--308},
publisher = {Springer Science and Business Media LLC},
title = {Robustness of the BMP morphogen gradient in Drosophila embryonic patterning},
volume = {419},
year = {2002},
bdsk-url-1 = {https://doi.org/10.1038/nature01061}}
@article{Kamiya2008,
author = {Kamiya, Yuto and Miyazono, Kohei and Miyazawa, Keiji},
doi = {10.1016/j.febslet.2008.05.052},
issn = {1873-3468},
journal = {FEBS Letters},
month = jun,
number = {17},
pages = {2496--2500},
publisher = {Wiley},
title = {Specificity of the inhibitory effects of Dad on TGF-β family type I receptors, Thickveins, Saxophone, and Baboon in Drosophila},
volume = {582},
year = {2008},
bdsk-url-1 = {https://doi.org/10.1016/j.febslet.2008.05.052}}
@article{Wartlick2011,
author = {Wartlick, O. and Mumcu, P. and Kicheva, A. and Bittig, T. and Seum, C. and J\"{u}licher, F. and Gonz{\'a}lez-Gait{\'a}n, M.},
doi = {10.1126/science.1200037},
issn = {1095-9203},
journal = {Science},
month = mar,
number = {6021},
pages = {1154--1159},
publisher = {American Association for the Advancement of Science (AAAS)},
title = {Dynamics of Dpp Signaling and Proliferation Control},
volume = {331},
year = {2011},
bdsk-url-1 = {https://doi.org/10.1126/science.1200037}}
@article{BaenaLopez2012,
author = {Baena-Lopez, Luis Alberto and Nojima, Hisashi and Vincent, Jean-Paul},
doi = {10.1016/j.ceb.2011.12.010},
issn = {0955-0674},
journal = {Current Opinion in Cell Biology},
month = apr,
number = {2},
pages = {166--172},
publisher = {Elsevier BV},
title = {Integration of morphogen signalling within the growth regulatory network},
volume = {24},
year = {2012},
bdsk-url-1 = {https://doi.org/10.1016/j.ceb.2011.12.010}}
@article{Brooks2012,
author = {Brooks, Alexander and Dou, Wei and Yang, Xiaoying and Brosnan, Tara and Pargett, Michael and Raftery, Laurel A. and Umulis, David M.},
doi = {10.1016/j.febslet.2012.03.050},
issn = {1873-3468},
journal = {FEBS Letters},
month = mar,
number = {14},
pages = {1942--1952},
publisher = {Wiley},
title = {BMP signaling in wing development: A critical perspective on quantitative image analysis},
volume = {586},
year = {2012},
bdsk-url-1 = {https://doi.org/10.1016/j.febslet.2012.03.050}}
@article{Yokouchi1999,
author = {Yokouchi, Masahiro and Kondo, Takeshi and Houghton, Adam and Bartkiewicz, Marcjanna and Horne, William C. and Zhang, Hui and Yoshimura, Akihiko and Baron, Roland},
doi = {10.1074/jbc.274.44.31707},
issn = {0021-9258},
journal = {Journal of Biological Chemistry},
month = oct,
number = {44},
pages = {31707--31712},
publisher = {Elsevier BV},
title = {Ligand-induced Ubiquitination of the Epidermal Growth Factor Receptor Involves the Interaction of the c-Cbl RING Finger and UbcH7},
volume = {274},
year = {1999},
bdsk-url-1 = {https://doi.org/10.1074/jbc.274.44.31707}}
@article{Levkowitz1999,
author = {Levkowitz, Gil and Waterman, Hadassa and Ettenberg, Seth A and Katz, Menachem and Tsygankov, Alexander Y and Alroy, Iris and Lavi, Sara and Iwai, Kazuhiro and Reiss, Yuval and Ciechanover, Aaron and Lipkowitz, Stanley and Yarden, Yosef},
doi = {10.1016/s1097-2765(00)80231-2},
issn = {1097-2765},
journal = {Molecular Cell},
month = dec,
number = {6},
pages = {1029--1040},
publisher = {Elsevier BV},
title = {Ubiquitin Ligase Activity and Tyrosine Phosphorylation Underlie Suppression of Growth Factor Signaling by c-Cbl/Sli-1},
volume = {4},
year = {1999},
bdsk-url-1 = {https://doi.org/10.1016/s1097-2765(00)80231-2}}
@article{Waterman1999,
author = {Waterman, Hadassa and Levkowitz, Gil and Alroy, Iris and Yarden, Yosef},
doi = {10.1074/jbc.274.32.22151},
issn = {0021-9258},
journal = {Journal of Biological Chemistry},
month = aug,
number = {32},
pages = {22151--22154},
publisher = {Elsevier BV},
title = {The RING Finger of c-Cbl Mediates Desensitization of the Epidermal Growth Factor Receptor},
volume = {274},
year = {1999},
bdsk-url-1 = {https://doi.org/10.1074/jbc.274.32.22151}}
@article{Pai2000,
author = {Pai, Li-Mei and Barcelo, Gail and Sch\"{u}pbach, Trudi},
doi = {10.1016/s0092-8674(00)00104-5},
issn = {0092-8674},
journal = {Cell},
month = sep,
number = {1},
pages = {51--61},
publisher = {Elsevier BV},
title = {D-cbl, a Negative Regulator of the Egfr Pathway, Is Required for Dorsoventral Patterning in Drosophila Oogenesis},
volume = {103},
year = {2000},
bdsk-url-1 = {https://doi.org/10.1016/s0092-8674(00)00104-5}}