forked from quacs/quacs-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprereq_graph.json
14550 lines (14550 loc) · 270 KB
/
prereq_graph.json
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
{
"USAF 0010": {
"title": "Leadership Lab",
"prereqs": []
},
"USAF 0030": {
"title": "Leadership Lab",
"prereqs": []
},
"USAF 0050": {
"title": "Leadership Lab",
"prereqs": []
},
"USAF 0070": {
"title": "Leadership Lab",
"prereqs": []
},
"USAF 0080": {
"title": "Leadership Lab",
"prereqs": []
},
"USAF 1010": {
"title": "Aerospace Studies 100a",
"prereqs": []
},
"USAF 2030": {
"title": "Aerospace Studies 200a",
"prereqs": []
},
"USAF 2050": {
"title": "Aerospace Studies 300a",
"prereqs": []
},
"USAF 2070": {
"title": "Aerospace Studies 400a",
"prereqs": []
},
"ARCH 1961": {
"title": "Italian Culture & Language",
"prereqs": []
},
"ARCH 2110": {
"title": "Bldg & Thinking Arch 1",
"prereqs": []
},
"ARCH 2130": {
"title": "Contemporary Design Approaches",
"prereqs": [
"ARCH 2120"
]
},
"ARCH 2200": {
"title": "Design Studio",
"prereqs": []
},
"ARCH 2220": {
"title": "Architectural Design 2",
"prereqs": [
"ARCH 2210"
]
},
"ARCH 2330": {
"title": "Structures 1",
"prereqs": [
"ARCH 2510"
]
},
"ARCH 2350": {
"title": "Construction Systems",
"prereqs": [
"ARCH 2510"
]
},
"ARCH 2620": {
"title": "Grad Arch Design 2",
"prereqs": [
"ARCH 2610"
]
},
"ARCH 2940": {
"title": "Projects In Arch & Env Design",
"prereqs": []
},
"ARCH 4140": {
"title": "Modernity In Cult & Arch",
"prereqs": [
"ARCH 2120",
"ARCH 2130"
]
},
"ARCH 4240": {
"title": "Architecture Design 4",
"prereqs": [
"ARCH 2230"
]
},
"ARCH 4250": {
"title": "Architecture Design 5",
"prereqs": [
"ARCH 4240"
]
},
"ARCH 4260": {
"title": "Architecture Design 6",
"prereqs": []
},
"ARCH 4300": {
"title": "Design Development",
"prereqs": []
},
"ARCH 4330": {
"title": "Structures 2",
"prereqs": [
"ARCH 2510"
]
},
"ARCH 4360": {
"title": "Grad Arch Design 4",
"prereqs": [
"ARCH 2630"
]
},
"ARCH 4430": {
"title": "Elect Media: Phys Des Proc",
"prereqs": []
},
"ARCH 4540": {
"title": "Professional Practice 1",
"prereqs": []
},
"ARCH 4610": {
"title": "Building Conservation 1",
"prereqs": []
},
"ARCH 4640": {
"title": "American Buildings 17-19Th C",
"prereqs": []
},
"ARCH 4660": {
"title": "Historical Archaeology",
"prereqs": []
},
"ARCH 4670": {
"title": "Industrial Archaeology",
"prereqs": []
},
"ARCH 4690": {
"title": "Case Studies:Arch Knowledge",
"prereqs": []
},
"ARCH 4840": {
"title": "Architectural Acoustics 1",
"prereqs": []
},
"ARCH 4940": {
"title": "Independent Study In Arch",
"prereqs": []
},
"ARCH 4961": {
"title": "Comprehensive Design 1",
"prereqs": []
},
"ARCH 4962": {
"title": "The Art Of Structure",
"prereqs": []
},
"ARCH 4963": {
"title": "Lght, Sci & Tech Architecture",
"prereqs": []
},
"ARCH 4964": {
"title": "Comprehensive Design 2 Cmptng",
"prereqs": []
},
"ARCH 4965": {
"title": "Lighting Workshop",
"prereqs": []
},
"ARCH 4966": {
"title": "Design Programming 1",
"prereqs": []
},
"ARCH 4967": {
"title": "Geo-actors II",
"prereqs": []
},
"ARCH 4980": {
"title": "B Arch Final Project 1",
"prereqs": []
},
"ARCH 4990": {
"title": "B Arch Final Project 2",
"prereqs": [
"ARCH 4980"
]
},
"ARCH 6120": {
"title": "Design Explorations 2",
"prereqs": []
},
"ARCH 6130": {
"title": "Design Explorations 3",
"prereqs": []
},
"ARCH 6460": {
"title": "Stagecraft And Theatre Design",
"prereqs": []
},
"ARCH 6610": {
"title": "Graduate Architecture Design 3",
"prereqs": []
},
"ARCH 6650": {
"title": "Arch Materials Testing",
"prereqs": []
},
"ARCH 6680": {
"title": "History, Theory, Criticism 3",
"prereqs": []
},
"ARCH 6810": {
"title": "Research Design Seminar",
"prereqs": []
},
"ARCH 6820": {
"title": "Research Methods In Acoustics",
"prereqs": []
},
"ARCH 6870": {
"title": "Sonics Research Lab 1",
"prereqs": []
},
"ARCH 6940": {
"title": "Adv Ind Proj In Arch/env Desgn",
"prereqs": []
},
"ARCH 6961": {
"title": "Geo-actors II",
"prereqs": []
},
"ARCH 6962": {
"title": "Urban Data II",
"prereqs": []
},
"ARCH 6963": {
"title": "Medicine, Technol & Landscape",
"prereqs": []
},
"ARCH 6965": {
"title": "Lighting Workshop",
"prereqs": []
},
"ARCH 6966": {
"title": "Design Programming 2",
"prereqs": []
},
"ARCH 6990": {
"title": "Master's Thesis",
"prereqs": []
},
"ARCH 9990": {
"title": "Architecture Dissertation",
"prereqs": []
},
"ARTS 1010": {
"title": "Intro To Music And Sound",
"prereqs": []
},
"ARTS 1020": {
"title": "Digital Imaging",
"prereqs": []
},
"ARTS 1200": {
"title": "Basic Drawing",
"prereqs": []
},
"ARTS 2010": {
"title": "Intermediate Video",
"prereqs": [
"ARTS 1030"
]
},
"ARTS 2020": {
"title": "Music And Technology 1",
"prereqs": []
},
"ARTS 2040": {
"title": "Intermediate Digital Imaging",
"prereqs": [
"ARTS 1020"
]
},
"ARTS 2060": {
"title": "2d Experimental Animation",
"prereqs": [
"ARTS 1020",
"ARTS 1040",
"ARTS 1200"
]
},
"ARTS 2210": {
"title": "Sculpture I",
"prereqs": []
},
"ARTS 2300": {
"title": "Rensselaer Orchestra",
"prereqs": []
},
"ARTS 2310": {
"title": "Rensselaer Concert Choir",
"prereqs": []
},
"ARTS 2320": {
"title": "Percussion Ensemble",
"prereqs": []
},
"ARTS 2400": {
"title": "Music And Sound I",
"prereqs": [
"ARTS 1010"
]
},
"ARTS 2500": {
"title": "History Of Western Music",
"prereqs": []
},
"ARTS 2510": {
"title": "Hist Of Jazz & Improvis Music",
"prereqs": []
},
"ARTS 2530": {
"title": "Art History I:From Paleolithic To Renaissance",
"prereqs": []
},
"ARTS 2540": {
"title": "The Multimedia Century",
"prereqs": []
},
"ARTS 2600": {
"title": "Ensemble Nonlinear",
"prereqs": []
},
"ARTS 2940": {
"title": "Independent Study In Arts",
"prereqs": []
},
"ARTS 2964": {
"title": "Popular Music & Society",
"prereqs": []
},
"ARTS 2966": {
"title": "Sound Recording & Production I",
"prereqs": []
},
"ARTS 4060": {
"title": "3d Visual Effects",
"prereqs": [
"ARTS 2230"
]
},
"ARTS 4070": {
"title": "3d Animation",
"prereqs": [
"ARTS 2230",
"ARTS 4060"
]
},
"ARTS 4100": {
"title": "Electronic Arts Theory",
"prereqs": []
},
"ARTS 4220": {
"title": "Painting",
"prereqs": [
"ARTS 1200"
]
},
"ARTS 4410": {
"title": "Deep Listening",
"prereqs": []
},
"ARTS 4510": {
"title": "Experimental Game Design",
"prereqs": [
"ARTS 4540",
"COGS 4540",
"CSCI 4540"
]
},
"ARTS 4940": {
"title": "Studies In The Arts",
"prereqs": []
},
"ARTS 4961": {
"title": "Advanced Painting",
"prereqs": [
"ARTS 1200",
"ARTS 4220"
]
},
"ARTS 4963": {
"title": "Performance Art",
"prereqs": []
},
"ARTS 4964": {
"title": "3D Technical Direction",
"prereqs": [
"ARTS 2230"
]
},
"ARTS 4965": {
"title": "Biopunk: Arts Lab Practices",
"prereqs": []
},
"ARTS 4966": {
"title": "Science Fiction",
"prereqs": []
},
"ARTS 4990": {
"title": "Bs Eart Thesis",
"prereqs": []
},
"ARTS 6080": {
"title": "Graduate Studio Critique",
"prereqs": []
},
"ARTS 6110": {
"title": "Electronic Arts Overview",
"prereqs": []
},
"ARTS 6210": {
"title": "Strategic Manifesto",
"prereqs": []
},
"ARTS 6940": {
"title": "Studies In Electronic Arts",
"prereqs": []
},
"ARTS 6961": {
"title": "Advanced Painting",
"prereqs": [
"ARTS 1200",
"ARTS 4220"
]
},
"ARTS 6962": {
"title": "Sound Studies: Sonic Spaces",
"prereqs": []
},
"ARTS 6963": {
"title": "Game Sound Studies",
"prereqs": []
},
"ARTS 6964": {
"title": "Deep Listening-Creative Collab",
"prereqs": []
},
"ARTS 6965": {
"title": "Music And Technology II",
"prereqs": []
},
"ARTS 6967": {
"title": "Mixed Realities Staging Operas",
"prereqs": []
},
"ARTS 6990": {
"title": "Master's Thesis",
"prereqs": []
},
"ASTR 1510": {
"title": "Quasars & Cosmology",
"prereqs": []
},
"ASTR 2120": {
"title": "Earth And Sky",
"prereqs": []
},
"ASTR 2940": {
"title": "Readings In Astr",
"prereqs": []
},
"ASTR 4120": {
"title": "Observational Astronomy",
"prereqs": [
"ASTR 2050"
]
},
"ASTR 4220": {
"title": "Astrophysics",
"prereqs": [
"PHYS 2220",
"PHYS 4420"
]
},
"ASTR 4900": {
"title": "Astrophysics Undergrad Seminar",
"prereqs": []
},
"ASTR 4940": {
"title": "Special Projects In Astronomy",
"prereqs": []
},
"ASTR 6900": {
"title": "Astrophysics Seminar",
"prereqs": []
},
"ASTR 6940": {
"title": "Readings In Astr",
"prereqs": []
},
"ASTR 9990": {
"title": "Research In Astronomy",
"prereqs": []
},
"BCBP 2900": {
"title": "Research In Biochem/biophysics",
"prereqs": []
},
"BCBP 2940": {
"title": "Readings In Biochem/biophysics",
"prereqs": []
},
"BCBP 4760": {
"title": "Molecular Biochem I",
"prereqs": [
"BIOL 1010",
"BIOL 2120",
"CHEM 2250"
]
},
"BCBP 4870": {
"title": "Protein Structure Determin.",
"prereqs": [
"BCBP 4760",
"BIOL 4760",
"CHEM 4760",
"MATH 1020",
"PHYS 1200"
]
},
"BCBP 4980": {
"title": "Biochemistry Research",
"prereqs": []
},
"BCBP 4990": {
"title": "Senior Research Thesis",
"prereqs": []
},
"BCBP 6870": {
"title": "Protein Structure Determin.",
"prereqs": []
},
"BCBP 6940": {
"title": "Readings In Bcbp",
"prereqs": []
},
"BCBP 6961": {
"title": "Current Topics Circadian Biol",
"prereqs": [
"BCBP 4660",
"BCBP 6650",
"BIOL 4660",
"BIOL 6650"
]
},
"BIOL 1010": {
"title": "Introduction To Biology",
"prereqs": []
},
"BIOL 2500": {
"title": "Genetics & Evolution",
"prereqs": [
"BIOL 2120"
]
},
"BIOL 2900": {
"title": "Research In Biology",
"prereqs": []
},
"BIOL 2930": {
"title": "Out Of Classroom Exp - Biology",
"prereqs": []
},
"BIOL 4060": {
"title": "Cancer Cell Research",
"prereqs": [
"BIOL 2120"
]
},
"BIOL 4270": {
"title": "Human Physiology",
"prereqs": [
"BIOL 2120",
"BIOL 4620",
"CHEM 2250",
"PHYS 1100"
]
},
"BIOL 4290": {
"title": "Human Physio Systems",
"prereqs": []
},
"BIOL 4400": {
"title": "Bioterrorism,Biowarfare And Biodefense: A Clear And Present Danger",
"prereqs": [
"BIOL 1010"
]
},
"BIOL 4420": {
"title": "Intro Immunology",
"prereqs": []
},
"BIOL 4540": {
"title": "Sequence Analysis",
"prereqs": [
"BIOL 4620",
"CSCI 1200",
"MATH 1020"
]
},
"BIOL 4630": {
"title": "Molecular Biology II",
"prereqs": [
"BCBP 4760",
"BIOL 4620",
"BIOL 4760",
"CHEM 4760"
]
},
"BIOL 4720": {
"title": "Molecular Biology Lab",
"prereqs": [
"BIOL 2120",
"BIOL 4620"
]
},
"BIOL 4760": {
"title": "Molecular Biochemistry I",
"prereqs": [
"BIOL 1010",
"CHEM 2250"
]
},
"BIOL 4940": {
"title": "Readings In Biology",
"prereqs": []
},
"BIOL 4961": {
"title": "Current Topics Circadian Biol",
"prereqs": [
"BCBP 4660",
"BCBP 6650",
"BIOL 4660",
"BIOL 6650"
]
},
"BIOL 4962": {
"title": "Biology Of The Gut Microbiota",
"prereqs": []
},
"BIOL 4963": {
"title": "Neurobiological Diseases",
"prereqs": [
"BIOL 2120"
]
},
"BIOL 4990": {
"title": "Senior Research Thesis",
"prereqs": []
},
"BIOL 6410": {
"title": "Sequence Analysis",
"prereqs": []
},
"BIOL 6900": {
"title": "Seminar In Biology",
"prereqs": []
},
"BIOL 6940": {
"title": "Readings In Biol",
"prereqs": []
},
"BIOL 6961": {
"title": "Current Topics Circadian Biol",
"prereqs": [
"BCBP 4660",
"BCBP 6650",
"BIOL 4660",
"BIOL 6650"
]
},
"BIOL 6963": {
"title": "Ethical Consid In Biotech",
"prereqs": []
},
"BIOL 6965": {
"title": "Research Rotation I",
"prereqs": []
},
"BIOL 6990": {
"title": "Master's Thesis",
"prereqs": []
},
"BIOL 9990": {
"title": "Dissertation",
"prereqs": []
},
"BMED 2940": {
"title": "Readings In Bmed",
"prereqs": []
},
"BMED 4010": {
"title": "Biomedical Engineering Lab",
"prereqs": []
},
"BMED 4540": {
"title": "Biomechanics II",
"prereqs": [
"BMED 2540"
]
},
"BMED 4940": {
"title": "Readings In Bmed",
"prereqs": []
},
"BMED 4961": {
"title": "Biomedical Instrumention",
"prereqs": []
},
"BMED 4962": {
"title": "Bme Seminar",
"prereqs": []
},
"BMED 4963": {
"title": "Medical Imaging",
"prereqs": []
},
"BMED 6290": {
"title": "Biomech Of Hard Tissues",
"prereqs": []
},
"BMED 6940": {
"title": "Readings In Bmed",
"prereqs": []
},
"BMED 6963": {
"title": "Ethical Consid In Biotech",
"prereqs": []
},
"BMED 6964": {
"title": "Ethical Consid In Ad Research",
"prereqs": []
},
"BMED 6980": {
"title": "Master's Project",
"prereqs": []
},
"BMED 6990": {
"title": "Master's Thesis",
"prereqs": []
},
"BMED 9990": {
"title": "Dissertation",
"prereqs": []
},
"CHME 1960": {
"title": "Intro To Chemical Engineering",
"prereqs": []
},
"CHME 2010": {
"title": "Material, Energy & Entropy Bal",
"prereqs": [
"CHME 1100",
"ENGR 1100"
]
},
"CHME 2940": {
"title": "Rdgs In Chemical Engr",
"prereqs": []
},
"CHME 4010": {
"title": "Transport Phenomena I",
"prereqs": [
"CHME 2010",
"MATH 2400"
]
},
"CHME 4040": {
"title": "Chemical Eng Separations",
"prereqs": [
"CHME 2020",
"CHME 4010",
"CHME 4020"
]
},
"CHME 4150": {
"title": "Chemical Engr Lab I",
"prereqs": [
"CHME 2020",
"CHME 4010",
"CHME 4020"
]
},
"CHME 4430": {
"title": "Intro Biochemical Engr",
"prereqs": []
},
"CHME 4500": {
"title": "Chemical Reactor Design",
"prereqs": [
"CHME 2010",
"CHME 2020",
"CHME 4010",
"CHME 4020"
]
},
"CHME 4940": {
"title": "Rdgs In Chemical Engr",
"prereqs": []
},
"CHME 4961": {
"title": "Model Predictive Control",
"prereqs": []
},
"CHME 4962": {
"title": "Molecular Model & Simulations",
"prereqs": []
},
"CHME 4964": {
"title": "Chemical Process Safety",
"prereqs": []
},
"CHME 4965": {
"title": "Polymer Processing & Plas Tech",
"prereqs": []
},
"CHME 4966": {
"title": "Chem Engr Process Simulations",
"prereqs": []
},
"CHME 4980": {
"title": "Chem & Envr Engineering Proj",
"prereqs": []
},
"CHME 6430": {
"title": "Biochemical Engr",
"prereqs": []
},
"CHME 6570": {
"title": "Chemical & Phase Equilibria",
"prereqs": []
},
"CHME 6610": {
"title": "Math Methods In Chem Engr I",
"prereqs": []
},
"CHME 6940": {
"title": "Rdg In Chemical Engr",
"prereqs": []
},
"CHME 6961": {
"title": "Model Predictive Control",
"prereqs": []
},
"CHME 6962": {
"title": "Downstream Processing",
"prereqs": []
},
"CHME 6963": {
"title": "Chbe Seminar",
"prereqs": []
},
"CHME 6964": {
"title": "Bioprocess Design",
"prereqs": []
},
"CHME 6965": {
"title": "Metabolic Engineering",
"prereqs": []
},
"CHME 6970": {
"title": "Professional Project",
"prereqs": []
},
"CHME 6990": {
"title": "Master's Thesis",
"prereqs": []
},
"CHME 9990": {
"title": "Dissertation",
"prereqs": []
},
"CHEM 1100": {
"title": "Chemistry I",
"prereqs": []
},
"CHEM 2110": {
"title": "Equilibrium Chemistry And Quantitative Analysis",
"prereqs": [
"CHEM 1200",
"CHEM 1600"
]
},
"CHEM 2120": {
"title": "Experimental Chemistry I:analytical Techniques",
"prereqs": [
"CHEM 2110"
]
},
"CHEM 2210": {
"title": "Organic Compounds And React",
"prereqs": [
"CHEM 1100",
"CHEM 1300"
]
},
"CHEM 2230": {
"title": "Organic Chemistry Lab I",
"prereqs": [
"CHEM 2250"
]
},
"CHEM 2250": {
"title": "Organic Chemistry I",
"prereqs": [
"CHEM 1100",
"CHEM 1110"
]
},
"CHEM 2440": {
"title": "Phys Chem For Life Sci",
"prereqs": []
},
"CHEM 2930": {
"title": "Out-of-classroom Experience",
"prereqs": []
},
"CHEM 2940": {
"title": "Readings In Chemistry",
"prereqs": []
},
"CHEM 2950": {
"title": "Undergraduate Research",
"prereqs": []
},
"CHEM 4010": {
"title": "Inorganic Chemistry II",
"prereqs": [
"CHEM 2030"
]
},
"CHEM 4020": {
"title": "Experimental Chmistry III:inorganic And Physical Methods",
"prereqs": [
"CHEM 4010",
"CHEM 4410"
]
},
"CHEM 4330": {
"title": "Drug Discovery",
"prereqs": [
"CHEM 2220",
"CHEM 2260"
]
},
"CHEM 4340": {
"title": "Drug Discovery Laboratory",
"prereqs": []
},
"CHEM 4410": {
"title": "Macroscopic Physical Chemistry",
"prereqs": [
"MATH 2400"
]
},
"CHEM 4530": {
"title": "Modern Techniques In Chemistry",
"prereqs": [
"CHEM 2210",
"CHEM 2250"
]
},
"CHEM 4760": {
"title": "Molecular Biochem I",
"prereqs": [
"BIOL 1010",
"BIOL 2120",
"CHEM 2250"
]
},
"CHEM 4900": {
"title": "Professional Development Seminar",
"prereqs": []
},
"CHEM 4950": {
"title": "Senior Experience",
"prereqs": []
},
"CHEM 4962": {
"title": "Proteomics/str Bioinformatics",