This repository has been archived by the owner on Jan 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathA_H_F23.csv
We can't make this file beautiful and searchable because it's too large.
6228 lines (6228 loc) · 701 KB
/
A_H_F23.csv
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
Accounting
CRN,Subject,Course,Section,Type,Credits,Title,Days,Time,Capacity,WL Capacity,WL Actual,WL Remaining,Instructor,Date (MM//DD),Location,Status
1170,ACCT,351,001,Lecture,3.000,"Intermediate Financial Accounting 1.",TR,01:05 pm-02:25 pm,50,0,0,0,"Amanda Stephanie Abrams",08/30-11/29,BRONF 410,Active
,,,,,,,TR,01:05 pm-02:25 pm,,,,,"Amanda Stephanie Abrams",12/01-12/05,BRONF 410,Active
1171,ACCT,351,002,Lecture,3.000,"Intermediate Financial Accounting 1.",MW,11:35 am-12:55 pm,50,0,0,0,"Amanda Stephanie Abrams",08/30-12/04,BRONF 002,Active
,,,,,,,R,11:35 am-12:55 pm,,,,,"Amanda Stephanie Abrams",11/30-11/30,BRONF 002,Active
8289,ACCT,351,003,Midterm Exam,0.000,"Intermediate Financial Accounting 1.",F,08:35 am-11:25 am,0,0,0,0,"Amanda Stephanie Abrams",11/03-11/03,BRONF 423,Registration Not Required
,,,,,,,F,08:35 am-11:25 am,,,,,"Amanda Stephanie Abrams",11/03-11/03,BRONF 422,Registration Not Required
1172,ACCT,352,001,Lecture,3.000,"Intermediate Financial Accounting 2.",TR,11:35 am-12:55 pm,50,0,0,0,"Amanda Stephanie Abrams",08/30-11/29,BRONF 001,Active
,,,,,,,TR,11:35 am-12:55 pm,,,,,"Amanda Stephanie Abrams",12/01-12/05,BRONF 001,Active
8255,ACCT,352,002,Midterm Exam,0.000,"Intermediate Financial Accounting 2.",F,08:35 am-11:25 am,0,0,0,0,"Amanda Stephanie Abrams",10/27-10/27,BRONF 340,Registration Not Required
,,,,,,,F,08:35 am-11:25 am,,,,,"Amanda Stephanie Abrams",10/27-10/27,BRONF 210,Registration Not Required
1173,ACCT,354,001,Lecture,3.000,"Financial Statement Analysis.",MW,08:35 am-09:55 am,45,0,0,0,"Matthew Cote",08/30-12/04,ARMST 255,Active
,,,,,,,R,08:35 am-09:55 am,,,,,"Matthew Cote",11/30-11/30,ARMST 255,Active
1174,ACCT,354,002,Lecture,3.000,"Financial Statement Analysis.",TR,10:05 am-11:25 am,45,0,0,0,"Matthew Cote",08/30-11/29,ARMST 255,Active
,,,,,,,TR,10:05 am-11:25 am,,,,,"Matthew Cote",12/01-12/05,ARMST 255,Active
8256,ACCT,354,003,Midterm Exam,0.000,"Financial Statement Analysis.",F,08:35 am-11:25 am,0,0,0,0,"Matthew Cote",10/27-10/27,ARMST 065,Registration Not Required
,,,,,,,F,08:35 am-11:25 am,,,,,"Matthew Cote",10/27-10/27,ARMST 060,Registration Not Required
1175,ACCT,361,001,Lecture,3.000,"Management Accounting.",TR,01:05 pm-02:25 pm,50,0,0,0,"Seunghwan Oh",08/30-11/29,ARMST 060,Active
,,,,,,,TR,01:05 pm-02:25 pm,,,,,"Seunghwan Oh",12/01-12/05,ARMST 060,Active
1176,ACCT,361,002,Lecture,3.000,"Management Accounting.",TR,08:35 am-09:55 am,50,0,0,0,"Seunghwan Oh",08/30-11/29,ARMST 265,Active
,,,,,,,TR,08:35 am-09:55 am,,,,,"Seunghwan Oh",12/01-12/05,ARMST 265,Active
8191,ACCT,361,003,Midterm Exam,0.000,"Management Accounting.",F,11:35 am-02:25 pm,0,0,0,0,"Seunghwan Oh",09/29-09/29,BRONF 340,Registration Not Required
,,,,,,,F,11:35 am-02:25 pm,,,,,"Seunghwan Oh",09/29-09/29,BRONF 360,Registration Not Required
,,,,,,,F,11:35 am-02:25 pm,,,,,"Seunghwan Oh",09/29-09/29,BRONF 423,Registration Not Required
,,,,,,,F,08:35 am-11:25 am,,,,,"Seunghwan Oh",11/10-11/10,BRONF 423,Registration Not Required
,,,,,,,F,08:35 am-11:25 am,,,,,"Seunghwan Oh",11/10-11/10,BRONF 422,Registration Not Required
1177,ACCT,362,001,Lecture,3.000,"Cost Accounting.",MW,04:05 pm-05:25 pm,50,0,0,0,"Philippe Levy",08/30-12/04,BRONF 001,Active
,,,,,,,R,04:05 pm-05:25 pm,,,,,"Philippe Levy",11/30-11/30,BRONF 001,Active
1178,ACCT,385,001,Lecture,3.000,"Principles of Taxation.",TR,02:35 pm-03:55 pm,50,0,0,0,"Preetika Joshi",08/30-11/29,BRONF 001,Active
,,,,,,,TR,02:35 pm-03:55 pm,,,,,"Preetika Joshi",12/01-12/05,BRONF 001,Active
1179,ACCT,385,002,Lecture,3.000,"Principles of Taxation.",TR,04:05 pm-05:25 pm,50,0,0,0,"Preetika Joshi",08/30-11/29,BRONF 001,Active
,,,,,,,TR,04:05 pm-05:25 pm,,,,,"Preetika Joshi",12/01-12/05,BRONF 001,Active
1180,ACCT,401,061,Lecture,3.000,"Sustainability and Environmental Accounting.",T,06:05 pm-08:55 pm,50,0,0,0,"Halima Jamal Eddine",08/30-12/05,BRONF 423,Active
1181,ACCT,453,001,Lecture,3.000,"Advanced Financial Accounting.",MW,01:05 pm-02:25 pm,45,0,0,0,"Matthew Cote",08/30-12/04,BRONF 423,Active
,,,,,,,R,01:05 pm-02:25 pm,,,,,"Matthew Cote",11/30-11/30,BRONF 423,Active
8292,ACCT,453,002,Midterm Exam,0.000,"Advanced Financial Accounting.",F,11:35 am-02:25 pm,0,0,0,0,"Matthew Cote",11/03-11/03,BRONF 410,Registration Not Required
,,,,,,,F,11:35 am-02:25 pm,,,,,"Matthew Cote",11/03-11/03,BRONF 340,Registration Not Required
1182,ACCT,455,001,Lecture,3.000,"Development of Accounting Thought.",MW,02:35 pm-03:55 pm,45,0,0,0,"Ralph Cecere",08/30-12/04,BRONF 011,Active
,,,,,,,R,02:35 pm-03:55 pm,,,,,"Ralph Cecere",11/30-11/30,BRONF 011,Active
1183,ACCT,463,071,Lecture,3.000,"Management Control.",W,06:05 pm-08:55 pm,50,0,0,0,"Philippe Levy",08/30-12/01,ARMST 060,Active
1184,ACCT,475,001,Lecture,3.000,"Principles of Auditing.",MW,04:05 pm-05:25 pm,45,0,0,0,"Ralph Cecere",08/30-12/04,BRONF 210,Active
,,,,,,,R,04:05 pm-05:25 pm,,,,,"Ralph Cecere",11/30-11/30,BRONF 210,Active
1185,ACCT,486,001,Lecture,3.000,"Business Taxation 2.",MW,11:35 am-12:55 pm,50,0,0,0,"Melissa Marginson",08/30-12/04,ARMST 060,Active
,,,,,,,R,11:35 am-12:55 pm,,,,,"Melissa Marginson",11/30-11/30,ARMST 060,Active
8295,ACCT,486,002,Midterm Exam,0.000,"Business Taxation 2.",F,08:35 am-11:25 am,0,0,0,0,"Melissa Marginson",11/10-11/10,BRONF 340,Registration Not Required
,,,,,,,F,08:35 am-11:25 am,,,,,"Melissa Marginson",11/10-11/10,BRONF 210,Registration Not Required
1186,ACCT,683,045,Lecture,4.000,"Practice of Taxation.",T,06:05 pm-08:55 pm,70,0,0,0,"Melissa Marginson",08/30-12/05,BRONF 422,Active
1187,ACCT,687,045,Lecture,4.000,"Assurance Services.",W,06:05 pm-08:55 pm,70,0,0,0,"Matthew Cote",08/30-12/01,BRONF 422,Active
Biology (Agric & Envir Sc)
CRN,Subject,Course,Section,Type,Credits,Title,Days,Time,Capacity,WL Capacity,WL Actual,WL Remaining,Instructor,Date (MM//DD),Location,Status
45,AEBI,120,001,Lecture,3.000,"General Biology.",WF,11:35 am-12:55 pm,197,0,0,0,"Fernando Altamura",08/30-12/01,RAYMND 2-045,Active
46,AEBI,120,002,Laboratory,0.000,"General Biology.",W,01:35 pm-03:25 pm,50,0,0,0,"Fernando Altamura",08/30-12/05,MACSTW B-023,Active
47,AEBI,120,003,Laboratory,0.000,"General Biology.",W,03:35 pm-05:25 pm,50,0,0,0,"Fernando Altamura",08/30-12/05,MACSTW B-023,Active
281,AEBI,120,004,Laboratory,0.000,"General Biology.",R,01:35 pm-03:25 pm,50,0,0,0,"Fernando Altamura",08/30-11/29,MACSTW B-023,Active
,,,,,,,R,01:35 pm-03:25 pm,,,,,"Fernando Altamura",12/01-12/05,MACSTW B-023,Active
422,AEBI,120,005,Laboratory,0.000,"General Biology.",R,03:35 pm-05:25 pm,50,0,0,0,"Fernando Altamura",08/30-11/29,MACSTW B-023,Temporarily closed
,,,,,,,R,03:35 pm-05:25 pm,,,,,"Fernando Altamura",12/01-12/05,MACSTW B-023,Temporarily closed
445,AEBI,210,001,Lecture,3.000,"Organisms 1.",TR,08:35 am-09:55 am,168,0,0,0,"Mehran Dastmalchi",08/30-11/29,RAYMND 2-045,Active
,,,,,,,TR,08:35 am-09:55 am,,,,,"Mehran Dastmalchi",12/01-12/05,RAYMND 2-045,Active
448,AEBI,210,002,Laboratory,0.000,"Organisms 1.",T,02:35 pm-04:25 pm,28,0,0,0,"Mehran Dastmalchi",08/30-12/05,MACSTW B-032,Active
449,AEBI,210,003,Laboratory,0.000,"Organisms 1.",T,11:05 am-12:55 pm,28,0,0,0,"Mehran Dastmalchi",08/30-12/05,MACSTW B-032,Active
450,AEBI,210,004,Laboratory,0.000,"Organisms 1.",T,02:35 pm-04:25 pm,28,0,0,0,"Mehran Dastmalchi",08/30-12/05,BARTON 1-016,Active
469,AEBI,210,005,Laboratory,0.000,"Organisms 1.",T,02:35 pm-04:25 pm,28,0,0,0,"Mehran Dastmalchi",08/30-12/05,MACSTW B-027,Active
494,AEBI,210,006,Laboratory,0.000,"Organisms 1.",T,11:05 am-12:55 pm,28,0,0,0,"Mehran Dastmalchi",08/30-12/05,MACSTW B-032,Active
495,AEBI,210,007,Laboratory,0.000,"Organisms 1.",T,11:05 am-12:55 pm,28,0,0,0,"Mehran Dastmalchi",08/30-12/05,MACSTW B-027,Active
Chemistry (Agric&EnvirSci)
CRN,Subject,Course,Section,Type,Credits,Title,Days,Time,Capacity,WL Capacity,WL Actual,WL Remaining,Instructor,Date (MM//DD),Location,Status
460,AECH,110,001,Lecture,4.000,"General Chemistry 1.",MW,08:35 am-09:55 am,195,0,0,0,"Alice D Cherestes",08/30-12/04,RAYMND 2-045,Active
,,,,,,,R,08:35 am-09:55 am,,,,,"Alice D Cherestes",11/30-11/30,RAYMND 2-045,Active
461,AECH,110,002,Laboratory,0.000,"General Chemistry 1.",R,02:35 pm-05:25 pm,48,0,0,0,"Alice D Cherestes",08/30-11/29,MACSTW B-031,Active
,,,,,,,R,02:35 pm-05:25 pm,,,,,"Alice D Cherestes",12/01-12/05,MACSTW B-031,Active
462,AECH,110,003,Laboratory,0.000,"General Chemistry 1.",F,08:35 am-11:25 am,48,0,0,0,"Alice D Cherestes",08/30-12/05,MACSTW B-031,Active
551,AECH,110,004,Laboratory,0.000,"General Chemistry 1.",F,02:35 pm-05:25 pm,48,0,0,0,"Alice D Cherestes",08/30-12/05,MACSTW B-031,Active
552,AECH,110,005,Tutorial,0.000,"General Chemistry 1.",M,10:05 am-10:55 am,195,0,0,0,"Alice D Cherestes",08/30-12/05,RAYMND 2-045,Active
,,,,,,,R,10:05 am-10:55 am,,,,,"Alice D Cherestes",11/30-11/30,RAYMND 2-045,Active
486,AECH,118,001,Laboratory,1.000,"General Chemistry Laboratory 1.",,TBA,10,0,0,0,"Alice D Cherestes",08/30-12/05,MACSTW B-031,Active
English (Agric & Envir Sc)
CRN,Subject,Course,Section,Type,Credits,Title,Days,Time,Capacity,WL Capacity,WL Actual,WL Remaining,Instructor,Date (MM//DD),Location,Status
680,AEHM,205,001,Lecture,3.000,"Science Literacy.",TR,11:35 am-12:55 pm,48,0,0,0,"Emily MacKenzie, Carole Newman",08/30-11/29,CENTEN 1-150,Active
,,,,,,,TR,11:35 am-12:55 pm,,,,,"Emily MacKenzie, Carole Newman",12/01-12/05,CENTEN 1-150,Active
681,AEHM,205,002,Laboratory,0.000,"Science Literacy.",F,02:35 pm-05:25 pm,48,0,0,0,"Emily MacKenzie, Carole Newman",08/30-12/05,MACSTW 2-028,Active
682,AEHM,205,003,Break-Out Room,0.000,"Science Literacy.",F,02:35 pm-05:25 pm,30,0,0,0,"Emily MacKenzie, Carole Newman",08/30-12/05,TBA,Registration Not Required
49,AEHM,330,001,Lecture,3.000,"Academic and Scientific Writing.",MW,11:35 am-12:55 pm,20,0,0,0,"Carole Newman",08/30-12/04,TBA,Cancelled
,,,,,,,R,11:35 am-12:55 pm,,,,,"Carole Newman",11/30-11/30,TBA,Cancelled
Mathematics (Agric&Envir Sci)
CRN,Subject,Course,Section,Type,Credits,Title,Days,Time,Capacity,WL Capacity,WL Actual,WL Remaining,Instructor,Date (MM//DD),Location,Status
97,AEMA,101,001,Lecture,3.000,"Calculus 1.",TR,11:35 am-12:55 pm,197,0,0,0,"Fernando Altamura",08/30-11/29,RAYMND 2-045,Active
,,,,,,,TR,11:35 am-12:55 pm,,,,,"Fernando Altamura",12/01-12/05,RAYMND 2-045,Active
98,AEMA,101,002,Laboratory,0.000,"Calculus 1.",M,11:35 am-12:55 pm,197,0,0,0,"Fernando Altamura",08/30-12/05,RAYMND 2-045,Active
,,,,,,,R,11:35 am-12:55 pm,,,,,"Fernando Altamura",11/30-11/30,RAYMND 2-045,Active
484,AEMA,105,001,Laboratory,1.000,"Precalculus Lab.",F,01:05 pm-02:25 pm,60,0,0,0,"Fernando Altamura",08/30-12/01,MACSTW B-016,Active
99,AEMA,202,001,Lecture,3.000,"Intermediate Calculus.",TR,08:35 am-09:55 am,48,0,0,0,"Fernando Altamura",08/30-11/29,CENTEN 1-150,Active
,,,,,,,TR,08:35 am-09:55 am,,,,,"Fernando Altamura",12/01-12/05,CENTEN 1-150,Active
100,AEMA,202,002,Conference,0.000,"Intermediate Calculus.",M,01:05 pm-01:55 pm,48,0,0,0,"Fernando Altamura",08/30-12/05,CENTEN 1-150,Active
,,,,,,,R,01:05 pm-01:55 pm,,,,,"Fernando Altamura",11/30-11/30,CENTEN 1-150,Active
101,AEMA,310,001,Lecture,3.000,"Statistical Methods 1.",WF,10:05 am-11:25 am,190,0,0,0,"Pierre R L Dutilleul",08/30-12/01,RAYMND 2-045,Active
102,AEMA,310,002,Laboratory,0.000,"Statistical Methods 1.",T,08:35 am-10:25 am,38,0,0,0,"Pierre R L Dutilleul",08/30-12/05,MACSTW 2-028,Active
103,AEMA,310,003,Laboratory,0.000,"Statistical Methods 1.",W,02:35 pm-04:25 pm,38,0,0,0,"Pierre R L Dutilleul",08/30-12/05,MACSTW 2-028,Active
104,AEMA,310,004,Laboratory,0.000,"Statistical Methods 1.",M,12:35 pm-02:25 pm,38,0,0,0,"Pierre R L Dutilleul",08/30-12/05,MACSTW 2-028,Active
,,,,,,,R,12:35 pm-02:25 pm,,,,,"Pierre R L Dutilleul",11/30-11/30,MACSTW 2-028,Active
105,AEMA,310,005,Laboratory,0.000,"Statistical Methods 1.",M,08:35 am-10:25 am,38,0,0,0,"Pierre R L Dutilleul",08/30-12/05,MACSTW 2-028,Active
,,,,,,,R,08:35 am-10:25 am,,,,,"Pierre R L Dutilleul",11/30-11/30,MACSTW 2-028,Active
106,AEMA,310,006,Laboratory,0.000,"Statistical Methods 1.",M,10:35 am-12:25 pm,38,0,0,0,"Pierre R L Dutilleul",08/30-12/05,MACSTW 2-028,Active
,,,,,,,R,10:35 am-12:25 pm,,,,,"Pierre R L Dutilleul",11/30-11/30,MACSTW 2-028,Active
481,AEMA,403,001,Stage,3.000,"Environmetrics Stage.",,TBA,10,0,0,0,"Pierre R L Dutilleul",08/30-12/05,TBA,Active
441,AEMA,610,001,Lecture,3.000,"Statistical Methods 2.",T,01:35 pm-02:25 pm,32,0,0,0,"Roger I Cue",08/30-12/05,BARTON 1-016,Active
,,,,,,,R,01:35 pm-02:25 pm,,,,,"Roger I Cue",08/30-11/29,RAYMND 3-045,Active
,,,,,,,F,01:35 pm-02:25 pm,,,,,"Roger I Cue",08/30-12/01,BARTON 1-015,Active
442,AEMA,610,002,Laboratory,0.000,"Statistical Methods 2.",R,03:35 pm-05:25 pm,32,0,0,0,"Roger I Cue",08/30-11/29,BARTON 1-015,Active
,,,,,,,R,03:35 pm-05:25 pm,,,,,"Roger I Cue",12/01-12/05,BARTON 1-015,Active
Physics (Agric & Envir Sci)
CRN,Subject,Course,Section,Type,Credits,Title,Days,Time,Capacity,WL Capacity,WL Actual,WL Remaining,Instructor,Date (MM//DD),Location,Status
60,AEPH,112,001,Lecture,4.000,"Introductory Physics 1.",M,02:35 pm-03:55 pm,170,0,0,0,"David Titley-Péloquin",08/30-12/04,RAYMND 2-045,Active
,,,,,,,R,10:05 am-11:25 am,,,,,"David Titley-Péloquin",08/30-11/29,RAYMND 2-045,Active
,,,,,,,R,02:35 pm-03:55 pm,,,,,"David Titley-Péloquin",11/30-11/30,RAYMND 2-045,Active
496,AEPH,112,002,Laboratory,0.000,"Introductory Physics 1.",T,01:35 pm-03:25 pm,25,0,0,0,"David Titley-Péloquin",08/30-12/05,MACSTW B-016,Active
315,AEPH,112,003,Laboratory,0.000,"Introductory Physics 1.",T,03:35 pm-05:25 pm,40,0,0,0,"David Titley-Péloquin",08/30-12/05,MACSTW B-016,Active
171,AEPH,112,004,Laboratory,0.000,"Introductory Physics 1.",W,01:35 pm-03:25 pm,45,0,0,0,"David Titley-Péloquin",08/30-12/05,MACSTW B-016,Active
553,AEPH,112,005,Tutorial,0.000,"Introductory Physics 1.",T,08:35 am-09:55 am,75,0,0,0,"David Titley-Péloquin",08/30-12/05,MACSTW B-016,Active
722,AEPH,112,006,Laboratory,0.000,"Introductory Physics 1.",W,03:35 pm-05:25 pm,40,0,0,0,"David Titley-Péloquin",08/30-12/05,MACSTW B-016,Active
1123,AEPH,112,007,Tutorial,0.000,"Introductory Physics 1.",R,08:35 am-09:55 am,75,0,0,0,"David Titley-Péloquin",08/30-11/29,MACSTW B-016,Active
,,,,,,,R,08:35 am-09:55 am,,,,,"David Titley-Péloquin",12/01-12/05,MACSTW B-016,Active
417,AEPH,113,001,Lecture,4.000,"Physics 1.",M,02:35 pm-03:55 pm,27,0,0,0,"David Titley-Péloquin",08/30-12/04,RAYMND 2-045,Active
,,,,,,,R,10:05 am-11:25 am,,,,,"David Titley-Péloquin",08/30-11/29,RAYMND 2-045,Active
,,,,,,,R,02:35 pm-03:55 pm,,,,,"David Titley-Péloquin",11/30-11/30,RAYMND 2-045,Active
418,AEPH,113,002,Laboratory,0.000,"Physics 1.",T,01:35 pm-03:25 pm,25,0,0,0,"David Titley-Péloquin",08/30-12/05,MACSTW B-016,Active
419,AEPH,113,003,Tutorial,0.000,"Physics 1.",W,10:05 am-10:55 am,27,0,0,0,"David Titley-Péloquin",08/30-12/05,CENTEN 1-150,Active
487,AEPH,120,001,Laboratory,1.000,"Physics Laboratory 1.",,TBA,10,0,0,0,"David Titley-Péloquin",08/30-12/05,TBA,Active
Aerospace Engineering
CRN,Subject,Course,Section,Type,Credits,Title,Days,Time,Capacity,WL Capacity,WL Actual,WL Remaining,Instructor,Date (MM//DD),Location,Status
1189,AERO,401,001,Lecture,3.000,"Introduction to Aerospace Engineering.",W,05:35 pm-08:25 pm,40,0,0,0,"Pascal Hubert",08/30-12/01,ENGTR 0060,Active
5766,AERO,460D1,001,Lecture,3.000,"Aerospace Project.",TR,08:35 am-09:55 am,20,0,0,0,"Pascal Hubert",08/30-11/29,BURN 719A,Active
,,,,,,,TR,08:35 am-09:55 am,,,,,"Pascal Hubert",12/01-12/05,BURN 719A,Active
African Studies
CRN,Subject,Course,Section,Type,Credits,Title,Days,Time,Capacity,WL Capacity,WL Actual,WL Remaining,Instructor,Date (MM//DD),Location,Status
1190,AFRI,200,001,Lecture,3.000,"Introduction to African Studies.",MWF,02:35 pm-03:25 pm,105,15,0,15,"Milka Perez Nyariro",08/30-12/04,MCMED 1034,Active
,,,,,,,R,02:35 pm-03:25 pm,,,,,"Milka Perez Nyariro",11/30-11/30,MCMED 1034,Active
8455,AFRI,200,002,Conference,0.000,"Introduction to African Studies.",F,02:35 pm-03:25 pm,50,0,0,0,"Milka Perez Nyariro",08/30-12/05,LEA 14,Registration Not Required
8456,AFRI,200,003,Conference,0.000,"Introduction to African Studies.",F,02:35 pm-03:25 pm,50,0,0,0,"Milka Perez Nyariro",08/30-12/05,MCMED 1034,Registration Not Required
1191,AFRI,401,001,Lecture,3.000,"Swahili Language and Culture.",MWF,08:35 am-09:25 am,20,5,0,5,"Mathew Kipchumba",08/30-12/04,MOR 017,Active
,,,,,,,R,08:35 am-09:25 am,,,,,"Mathew Kipchumba",11/30-11/30,MOR 017,Active
8300,AFRI,480,001,Topics Course,3.000,"Honours Thesis.",TBA,TBA,1,0,0,0,TBA,08/30-12/05,TBA,Active
Agricultural Economics
CRN,Subject,Course,Section,Type,Credits,Title,Days,Time,Capacity,WL Capacity,WL Actual,WL Remaining,Instructor,Date (MM//DD),Location,Status
48,AGEC,200,001,Lecture,3.000,"Principles of Microeconomics.",WF,11:35 am-12:55 pm,66,0,0,0,"Aurelie Patricia Harou",08/30-12/01,TBA,Active
780,AGEC,330,001,Lecture,3.000,"Agriculture and Food Markets.",MW,02:35 pm-03:55 pm,30,0,0,0,"Aurelie Patricia Harou",08/30-12/04,TBA,Active
,,,,,,,R,02:35 pm-03:55 pm,,,,,"Aurelie Patricia Harou",11/30-11/30,TBA,Active
421,AGEC,332,001,Lecture,3.000,"Farm Management and Finance.",WF,08:35 am-09:55 am,24,0,0,0,"Mary Kathryn Doidge",08/30-12/01,BARTON 1-016,Active
435,AGEC,332,002,Conference,0.000,"Farm Management and Finance.",M,08:35 am-09:25 am,24,0,0,0,"Mary Kathryn Doidge",08/30-12/05,BARTON 1-016,Active
,,,,,,,R,08:35 am-09:25 am,,,,,"Mary Kathryn Doidge",11/30-11/30,BARTON 1-016,Active
50,AGEC,333,001,Lecture,3.000,"Resource Economics.",TR,01:05 pm-02:25 pm,24,0,0,0,"Kakali Mukhopadhyay",08/30-11/29,RAYMND 1-042,Active
,,,,,,,TR,01:05 pm-02:25 pm,,,,,"Kakali Mukhopadhyay",12/01-12/05,RAYMND 1-042,Active
710,AGEC,425,001,Lecture,3.000,"Applied Econometrics.",,TBA,20,0,0,0,"Mary Kathryn Doidge",08/30-12/05,TBA,Cancelled
711,AGEC,425,002,Laboratory,0.000,"Applied Econometrics.",,TBA,20,0,0,0,"Mary Kathryn Doidge",08/30-12/05,MACSTW 2-026,Cancelled
51,AGEC,491,001,Seminar,3.000,"Research and Methodology.",TR,04:05 pm-05:25 pm,24,0,0,0,"Kakali Mukhopadhyay",08/30-11/29,CENTEN 1-163,Active
,,,,,,,TR,04:05 pm-05:25 pm,,,,,"Kakali Mukhopadhyay",12/01-12/05,CENTEN 1-163,Active
52,AGEC,492,001,Topics Course,3.000,"Special Topics in Agricultural Economics 01.",,TBA,20,0,0,0,TBA,08/30-12/05,TBA,Active
784,AGEC,633,001,Lecture,3.000,"Environmental and Natural Resource Economics.",,TBA,10,0,0,0,"Paul Thomassin",08/30-12/05,TBA,Cancelled
53,AGEC,685,001,Topics Course,3.000,"Selected Topics in Agricultural Economics.",,TBA,20,0,0,0,"Paul Thomassin",08/30-12/05,TBA,Active
54,AGEC,690,001,Seminar,3.000,"Seminar in Agricultural Economics.",M,01:05 pm-02:25 pm,12,0,0,0,"Kakali Mukhopadhyay",08/30-10/23,RAYMND 3-047,Active
,,,,,,,M,01:05 pm-02:25 pm,,,,,"Kakali Mukhopadhyay",10/30-11/06,BARTON 1-015,Active
,,,,,,,M,01:05 pm-02:25 pm,,,,,"Kakali Mukhopadhyay",11/13-11/13,RAYMND 3-047,Active
,,,,,,,M,01:05 pm-02:25 pm,,,,,"Kakali Mukhopadhyay",11/20-12/04,BARTON 1-015,Active
,,,,,,,R,01:05 pm-02:25 pm,,,,,"Kakali Mukhopadhyay",11/30-11/30,BARTON 1-015,Active
55,AGEC,691,001,Thesis Course,3.000,"M.Sc. Thesis 1.",,TBA,20,0,0,0,TBA,08/30-12/05,TBA,Active
56,AGEC,692,001,Thesis Course,3.000,"M.Sc. Thesis 2.",,TBA,20,0,0,0,TBA,08/30-12/05,TBA,Active
57,AGEC,693,001,Thesis Course,6.000,"M.Sc. Thesis 3.",,TBA,20,0,0,0,TBA,08/30-12/05,TBA,Active
58,AGEC,694,001,Thesis Course,6.000,"M.Sc. Thesis 4.",,TBA,20,0,0,0,TBA,08/30-12/05,TBA,Active
59,AGEC,695,001,Thesis Course,6.000,"M.Sc. Thesis 5.",,TBA,20,0,0,0,TBA,08/30-12/05,TBA,Active
Agriculture
CRN,Subject,Course,Section,Type,Credits,Title,Days,Time,Capacity,WL Capacity,WL Actual,WL Remaining,Instructor,Date (MM//DD),Location,Status
259,AGRI,195,001,Seminar,0.500,"Freshman Seminar 1.",T,10:05 am-11:25 am,160,0,0,0,"Fernando Altamura",08/30-12/05,RAYMND 2-045,Active
413,AGRI,215,001,Lecture,3.000,"Agro-Ecosystems Field Course.",MWF,01:35 pm-02:25 pm,45,0,0,0,"Caroline B Begg",08/30-12/04,CENTEN 1-162,Active
,,,,,,,R,01:35 pm-02:25 pm,,,,,"Caroline B Begg",11/30-11/30,CENTEN 1-162,Active
414,AGRI,215,002,Laboratory,0.000,"Agro-Ecosystems Field Course.",F,02:35 pm-05:25 pm,45,0,0,0,"Caroline B Begg",08/30-12/05,CENTEN 1-162,Active
492,AGRI,310,001,Internship,3.000,"Internship in Agriculture/Environment.",,TBA,10,0,0,0,"Caroline B Begg",08/30-12/05,TBA,Active
1106,AGRI,401,001,Project,6.000,"Honours Research Project 1.",,TBA,10,0,0,0,"Kevin Wade",08/30-12/05,TBA,Active
1107,AGRI,405,001,Project,3.000,"Honours Project 1.",,TBA,10,0,0,0,"Kevin Wade",08/30-12/05,TBA,Active
1048,AGRI,410,001,Internship,6.000,"Agrology Internship.",,TBA,25,0,0,0,"Julie Major",08/30-12/05,TBA,Active
473,AGRI,410D2,001,Internship,3.000,"Agrology Internship.",M,11:35 am-12:55 pm,24,0,0,0,"Julie Major",08/30-12/04,BARTON 1-015,Active
,,,,,,,R,11:35 am-12:55 pm,,,,,"Julie Major",11/30-11/30,BARTON 1-015,Active
302,AGRI,490,001,Project,3.000,"Agri-Food Industry Project.",,TBA,15,0,0,0,"Julie Major, David Wees, Valérie Gravel, Grant Clark, Caroline B Begg",08/30-12/05,TBA,Active
485,AGRI,499,001,Internship,3.000,"Agricultural Development Internship.",,TBA,10,0,0,0,"Julie Major",08/30-12/05,TBA,Active
287,AGRI,519,001,Field Course (DEPT),6.000,"Sustainable Development Plans.",,TBA,28,0,0,0,TBA,08/30-12/05,TBA,Active
Anatomy & Cell Biology
CRN,Subject,Course,Section,Type,Credits,Title,Days,Time,Capacity,WL Capacity,WL Actual,WL Remaining,Instructor,Date (MM//DD),Location,Status
1192,ANAT,214,001,Lecture,3.000,"Systemic Human Anatomy.",MF,09:35 am-10:25 am,180,0,0,0,"Campbell Rolian, Gabriel Venne",08/30-12/05,LEA 219,Active
,,,,,,,R,09:35 am-10:25 am,,,,,"Campbell Rolian, Gabriel Venne",11/30-11/30,LEA 219,Active
1193,ANAT,214,002,Laboratory,0.000,"Systemic Human Anatomy.",T,09:35 am-11:25 am,90,0,0,0,"Gabriel Venne, Campbell Rolian",08/30-12/05,SADB 2/49,Active
1194,ANAT,214,003,Laboratory,0.000,"Systemic Human Anatomy.",W,09:35 am-11:25 am,90,0,0,0,"Gabriel Venne, Campbell Rolian",08/30-12/05,SADB 2/49,Active
8483,ANAT,214,004,Midterm Exam,0.000,"Systemic Human Anatomy.",M,06:00 pm-08:00 pm,180,0,0,0,TBA,10/16-10/16,TBA,Registration Not Required
1195,ANAT,261,001,Lecture,4.000,"Introduction to Dynamic Histology.",TR,11:35 am-12:55 pm,240,0,0,0,"Craig A. Mandato, Carlos R Morales",08/30-11/29,SADB M-1,Active
,,,,,,,TR,11:35 am-12:55 pm,,,,,"Craig A. Mandato, Carlos R Morales",12/01-12/05,SADB M-1,Active
1196,ANAT,261,002,Laboratory,0.000,"Introduction to Dynamic Histology.",T,02:35 pm-04:25 pm,85,0,0,0,"Craig A. Mandato, Carlos R Morales",08/30-12/05,SADB 1/56,Active
1197,ANAT,261,003,Laboratory,0.000,"Introduction to Dynamic Histology.",W,02:35 pm-04:25 pm,85,0,0,0,"Craig A. Mandato, Carlos R Morales",08/30-12/05,SADB 1/56,Active
1198,ANAT,261,004,Laboratory,0.000,"Introduction to Dynamic Histology.",R,02:35 pm-04:25 pm,85,0,0,0,"Craig A. Mandato, Carlos R Morales",08/30-11/29,SADB 1/56,Active
,,,,,,,R,02:35 pm-04:25 pm,,,,,"Craig A. Mandato, Carlos R Morales",12/01-12/05,SADB 1/56,Active
1199,ANAT,315,001,Lecture,3.000,"Clinical Human Musculoskeletal Anatomy.",WF,08:35 am-09:25 am,200,0,0,0,"Mette Calve Coleman",08/30-12/01,LEA 219,Active
1200,ANAT,315,002,Laboratory,0.000,"Clinical Human Musculoskeletal Anatomy.",R,09:35 am-11:25 am,100,0,0,0,"Mette Calve Coleman",08/30-11/29,SADB 2/49,Active
,,,,,,,R,09:35 am-11:25 am,,,,,"Mette Calve Coleman",12/01-12/05,SADB 2/49,Active
1201,ANAT,315,003,Laboratory,0.000,"Clinical Human Musculoskeletal Anatomy.",F,10:35 am-12:25 pm,100,0,0,0,"Mette Calve Coleman",08/30-12/05,SADB 2/49,Active
1202,ANAT,315,004,Midterm Exam,0.000,"Clinical Human Musculoskeletal Anatomy.",W,06:00 pm-08:00 pm,200,0,0,0,TBA,10/25-10/25,TBA,Registration Not Required
1203,ANAT,321,001,Lecture,3.000,"Circuitry of the Human Brain.",MWF,10:35 am-11:25 am,320,5,0,5,"David S Ragsdale",08/30-12/04,STBIO S1/4,Active
,,,,,,,R,10:35 am-11:25 am,,,,,"David S Ragsdale",11/30-11/30,STBIO S1/4,Active
1204,ANAT,321,002,Midterm Exam,0.000,"Circuitry of the Human Brain.",R,06:35 pm-08:25 pm,320,0,0,0,TBA,10/12-10/12,LEA 132,Registration Not Required
1205,ANAT,323,001,Lecture,3.000,"Clinical Neuroanatomy.",MW,03:35 pm-04:25 pm,100,0,0,0,"Mikaela Liis Stiver",08/30-12/04,SADB 2/36,Active
,,,,,,,R,03:35 pm-04:25 pm,,,,,"Mikaela Liis Stiver",11/30-11/30,SADB 2/36,Active
1206,ANAT,323,002,Laboratory,0.000,"Clinical Neuroanatomy.",M,09:35 am-11:25 am,100,0,0,0,"Mikaela Liis Stiver",08/30-12/05,SADB 1/56,Active
,,,,,,,R,09:35 am-11:25 am,,,,,"Mikaela Liis Stiver",11/30-11/30,SADB 1/56,Active
7913,ANAT,323,003,Midterm Exam,0.000,"Clinical Neuroanatomy.",R,05:35 pm-08:25 pm,0,0,0,0,TBA,10/12-10/12,SADB M-1,Registration Not Required
,,,,,,,R,05:35 pm-08:25 pm,,,,,TBA,11/09-11/09,SADB M-1,Registration Not Required
6473,ANAT,323,999,Lecture,3.000,"Clinical Neuroanatomy.",TBA,TBA,30,0,0,0,TBA,08/30-12/05,TBA,Active
1207,ANAT,365,001,Lecture,3.000,"Cellular Trafficking.",MWF,08:35 am-09:25 am,85,5,0,5,"Heidi May McBride, Natalie Zeytuni, Wayne Steven Sossin, Jennifer Lynn Estall, Timothy E Kennedy, Thomas Stroh",08/30-12/04,SADB 1/12,Active
,,,,,,,R,08:35 am-09:25 am,,,,,"Heidi May McBride, Natalie Zeytuni, Wayne Steven Sossin, Jennifer Lynn Estall, Timothy E Kennedy, Thomas Stroh",11/30-11/30,SADB 1/12,Active
1208,ANAT,365,002,Midterm Exam,0.000,"Cellular Trafficking.",,TBA,85,0,0,0,TBA,08/30-12/05,TBA,Registration Not Required
1209,ANAT,381,001,Lecture,3.000,"Experimental Embryology.",TR,01:05 pm-02:25 pm,85,5,0,5,"Asangla Ao, Jason Tanny, Hugh Clarke, Aimee Ryan, Makoto Nagano",08/30-11/29,SADB 1/12,Active
,,,,,,,TR,01:05 pm-02:25 pm,,,,,"Asangla Ao, Jason Tanny, Hugh Clarke, Aimee Ryan, Makoto Nagano",12/01-12/05,SADB 1/12,Active
1210,ANAT,381,002,Midterm Exam,0.000,"Experimental Embryology.",,TBA,85,0,0,0,TBA,08/30-12/05,TBA,Registration Not Required
1211,ANAT,396,001,Project,3.000,"Undergraduate Research Project.",,TBA,20,0,0,0,"Craig A. Mandato",08/30-12/05,TBA,Active
5767,ANAT,432D1,001,Project,4.500,"Honours Research Project.",,TBA,25,0,0,0,"Khanh Huy Bui",08/30-12/05,TBA,Active
1212,ANAT,499,001,Tutorial,1.000,"Supervised Library Research.",,TBA,5,0,0,0,"Susanne Bechstedt",08/30-12/05,TBA,Active
1213,ANAT,601,001,Seminar,3.000,"MSc Seminar Examination.",,TBA,15,0,0,0,TBA,08/30-12/05,TBA,Active
5768,ANAT,690D1,001,Lecture,3.000,"Cell and Developmental Biology.",F,09:05 am-11:55 am,20,0,0,0,"Joaquin Ortega, Chantal Autexier, Natalie Zeytuni, Susanne Bechstedt, Nathalie Lamarche, Dieter Reinhardt",08/30-12/01,SADB M-48,Active
1214,ANAT,695,001,Seminar,3.000,"Seminars in Cell Biology 1.",,TBA,45,0,0,0,TBA,08/30-12/05,TBA,Active
1215,ANAT,696,001,Seminar,3.000,"Seminars in Cell Biology 2.",,TBA,45,0,0,0,TBA,08/30-12/05,TBA,Active
1216,ANAT,697,001,Seminar,3.000,"Seminars in Cell Biology 3.",,TBA,40,0,0,0,TBA,08/30-12/05,TBA,Active
1217,ANAT,698,001,Thesis Course,24.000,"M.Sc. Thesis Research 1.",,TBA,25,0,0,0,TBA,08/30-12/05,TBA,Active
1218,ANAT,701,001,Comprehensive Exam,0.000,"Ph.D. Comprehensive Examination.",,TBA,25,0,0,0,TBA,08/30-12/05,TBA,Active
Animal Science
CRN,Subject,Course,Section,Type,Credits,Title,Days,Time,Capacity,WL Capacity,WL Actual,WL Remaining,Instructor,Date (MM//DD),Location,Status
16,ANSC,250,001,Lecture,3.000,"Principles of Animal Science.",MW,10:05 am-11:25 am,63,0,0,0,"Kevin Wade",08/30-12/04,RAYMND 3-048,Active
,,,,,,,R,10:05 am-11:25 am,,,,,"Kevin Wade",11/30-11/30,RAYMND 3-048,Active
17,ANSC,250,002,Laboratory,0.000,"Principles of Animal Science.",M,11:35 am-01:25 pm,63,0,0,0,"Kevin Wade",08/30-12/05,RAYMND 3-048,Active
,,,,,,,R,11:35 am-01:25 pm,,,,,"Kevin Wade",11/30-11/30,RAYMND 3-048,Active
384,ANSC,303,001,Internship,2.000,"Farm Livestock Internship.",MW,10:05 am-11:25 am,10,0,0,0,"Raj Duggavathi",08/30-12/04,FARM PROJECT RM,Active
,,,,,,,R,10:05 am-11:25 am,,,,,"Raj Duggavathi",11/30-11/30,FARM PROJECT RM,Active
18,ANSC,323,001,Lecture,3.000,"Mammalian Physiology.",TR,01:05 pm-02:25 pm,135,0,0,0,"Xin Zhao, Denyse Laurin",08/30-11/29,RAYMND 2-046,Active
,,,,,,,TR,01:05 pm-02:25 pm,,,,,"Xin Zhao, Denyse Laurin",12/01-12/05,RAYMND 2-046,Active
20,ANSC,323,002,Laboratory,0.000,"Mammalian Physiology.",M,02:35 pm-05:25 pm,20,0,0,0,"Denyse Laurin",08/30-12/05,MACSTW B-063,Active
,,,,,,,R,02:35 pm-05:25 pm,,,,,"Denyse Laurin",11/30-11/30,MACSTW B-063,Active
21,ANSC,323,003,Laboratory,0.000,"Mammalian Physiology.",T,02:35 pm-05:25 pm,40,0,0,0,"Denyse Laurin",08/30-12/05,MACSTW B-063,Active
22,ANSC,323,004,Laboratory,0.000,"Mammalian Physiology.",W,02:35 pm-05:25 pm,40,0,0,0,"Denyse Laurin",08/30-12/05,MACSTW B-063,Active
303,ANSC,323,005,Laboratory,0.000,"Mammalian Physiology.",R,02:35 pm-05:25 pm,40,0,0,0,"Denyse Laurin",08/30-11/29,MACSTW B-063,Active
,,,,,,,R,02:35 pm-05:25 pm,,,,,"Denyse Laurin",12/01-12/05,MACSTW B-063,Active
376,ANSC,323,006,Laboratory,0.000,"Mammalian Physiology.",F,10:05 am-12:55 pm,20,0,0,0,"Denyse Laurin",08/30-12/05,MACSTW B-063,Active
444,ANSC,326,001,Lecture,3.000,"Fundamentals of Population Genetics.",MWF,09:35 am-10:25 am,30,0,0,0,"Roger I Cue",08/30-12/04,TBA,Active
,,,,,,,R,09:35 am-10:25 am,,,,,"Roger I Cue",11/30-11/30,TBA,Active
299,ANSC,420,001,Lecture,3.000,"Animal Biotechnology.",WF,11:35 am-12:55 pm,28,0,0,0,"Vilceu Bordignon",08/30-12/01,RAYMND 3-045,Active
477,ANSC,455,001,Topics Course,3.000,"Special Topics: Animal Science.",,TBA,10,0,0,0,TBA,08/30-12/05,TBA,Active
415,ANSC,458,001,Lecture,3.000,"Swine and Poultry Production.",MW,01:05 pm-02:25 pm,24,0,0,0,"Alexander Bekele-Yitbarek",08/30-12/04,BARTON 1-016,Active
,,,,,,,R,01:05 pm-02:25 pm,,,,,"Alexander Bekele-Yitbarek",11/30-11/30,BARTON 1-016,Active
416,ANSC,458,002,Laboratory,0.000,"Swine and Poultry Production.",T,11:35 am-02:25 pm,24,0,0,0,"Alexander Bekele-Yitbarek",08/30-12/05,FARM PROJECT RM,Active
383,ANSC,490,001,Project,3.000,"Project.",,TBA,24,0,0,0,TBA,08/30-12/05,TBA,Active
546,ANSC,552,001,Lecture,3.000,"Protein Metabolism and Nutrition.",,TBA,20,0,0,0,"Xin Zhao",08/30-12/05,TBA,Cancelled
816,ANSC,560,001,Lecture,3.000,"Biology of Lactation.",,TBA,37,0,0,0,TBA,08/30-12/05,TBA,Cancelled
526,ANSC,604,001,Lecture,3.000,"Advanced Animal Biotechnology.",WF,11:35 am-12:55 pm,4,0,0,0,"Vilceu Bordignon",08/30-12/01,RAYMND 3-045,Active
1061,ANSC,608,001,Lecture,3.000,"Population Genetics.",,TBA,10,0,0,0,"Roger I Cue",08/30-12/05,TBA,Cancelled
,,,,,,,,TBA,,,,,"Roger I Cue",08/30-12/05,TBA,Cancelled
1112,ANSC,611,001,Lecture,3.000,"Advanced Reproductive Biology.",TF,10:05 am-11:25 am,5,0,0,0,"Raj Duggavathi, Vilceu Bordignon",08/30-12/05,NOROOM NEEDED,Active
312,ANSC,643,001,Project,3.000,"Project 1.",,TBA,5,0,0,0,TBA,08/30-12/05,TBA,Active
313,ANSC,644,001,Project,3.000,"Project 2.",,TBA,5,0,0,0,TBA,08/30-12/05,TBA,Active
314,ANSC,645,001,Project,3.000,"Project 3.",,TBA,5,0,0,0,TBA,08/30-12/05,TBA,Active
482,ANSC,646,001,Project,3.000,"Project 4.",,TBA,5,0,0,0,TBA,08/30-12/05,TBA,Active
483,ANSC,647,001,Project,3.000,"Project 5.",,TBA,5,0,0,0,TBA,08/30-12/05,TBA,Active
28,ANSC,680,001,Thesis Course,9.000,"M.Sc. Thesis 1.",,TBA,10,0,0,0,TBA,08/30-12/05,TBA,Active
36,ANSC,681,001,Thesis Course,9.000,"M.Sc. Thesis 2.",,TBA,10,0,0,0,TBA,08/30-12/05,TBA,Active
37,ANSC,682,001,Thesis Course,9.000,"M.Sc. Thesis 3.",,TBA,10,0,0,0,TBA,08/30-12/05,TBA,Active
38,ANSC,683,001,Thesis Course,9.000,"M.Sc. Thesis 4.",,TBA,10,0,0,0,TBA,08/30-12/05,TBA,Active
393,ANSC,691,001,Topics Course,3.000,"Special Topic: Animal Sciences.",,TBA,10,0,0,0,"Elsa Vasseur",08/30-12/05,TBA,Active
394,ANSC,692,001,Topics Course,3.000,"Topic in Animal Sciences 1.",,TBA,10,0,0,0,TBA,08/30-12/05,TBA,Active
1113,ANSC,692,002,Topics Course,3.000,"Topic in Animal Sciences 1.",,TBA,10,0,0,0,"Alexander Bekele-Yitbarek, Arif Mustafa",08/30-12/05,TBA,Active
39,ANSC,695,001,Seminar,1.000,"MSc General Topic Seminar.",R,10:05 am-11:25 am,10,0,0,0,"Kevin Wade",08/30-11/29,RAYMND 3-045,Active
40,ANSC,696,001,Seminar,1.000,"MSc Research Proposal Seminar.",R,10:05 am-11:25 am,10,0,0,0,"Kevin Wade",08/30-11/29,RAYMND 3-045,Active
582,ANSC,697,001,Seminar,1.000,"MSc Research Results Seminar.",,TBA,24,0,0,0,"Vilceu Bordignon",08/30-12/05,TBA,Active
41,ANSC,701,001,Comprehensive Exam,0.000,"Doctoral Comprehensive Examination.",,TBA,10,0,0,0,"Vilceu Bordignon",08/30-12/05,TBA,Active
42,ANSC,797,001,Seminar,1.000,"Animal Science Seminar 3.",R,10:05 am-11:25 am,5,0,0,0,"Kevin Wade",08/30-11/29,RAYMND 3-045,Active
44,ANSC,798,001,Seminar,1.000,"Animal Science Seminar 4.",R,10:05 am-11:25 am,5,0,0,0,"Kevin Wade",08/30-11/29,RAYMND 3-045,Active
Anthropology
CRN,Subject,Course,Section,Type,Credits,Title,Days,Time,Capacity,WL Capacity,WL Actual,WL Remaining,Instructor,Date (MM//DD),Location,Status
1219,ANTH,201,001,Lecture,3.000,"Introduction to Archaeology.",MW,10:05 am-11:25 am,180,0,0,0,"Lisa Overholtzer",08/30-12/04,LEA 26,Active
,,,,,,,R,10:05 am-11:25 am,,,,,"Lisa Overholtzer",11/30-11/30,LEA 26,Active
1220,ANTH,202,001,Lecture,3.000,"Socio-Cultural Anthropology.",MWF,11:35 am-12:25 pm,330,0,0,0,TBA,08/30-12/04,TBA,Cancelled
,,,,,,,R,11:35 am-12:25 pm,,,,,TBA,11/30-11/30,TBA,Cancelled
8230,ANTH,207,001,Lecture,3.000,"Ethnography Through Film.",WF,04:35 pm-05:55 pm,240,0,0,0,"Diana Keown Allan",08/30-10/18,SADB M-1,Active
,,,,,,,F,04:35 pm-05:55 pm,,,,,"Diana Keown Allan",10/20-12/01,MAASS 112,Active
,,,,,,,W,04:35 pm-05:55 pm,,,,,"Diana Keown Allan",10/25-12/01,MCMED 522,Active
1221,ANTH,212,001,Lecture,3.000,"Anthropology of Development.",MW,04:05 pm-05:25 pm,240,0,0,0,"Daniel Ruiz-Serna",08/30-12/04,MAASS 112,Active
,,,,,,,R,04:05 pm-05:25 pm,,,,,"Daniel Ruiz-Serna",11/30-11/30,MAASS 112,Active
8530,ANTH,212,002,Conference,0.000,"Anthropology of Development.",W,04:05 pm-04:55 pm,27,0,0,0,"Daniel Ruiz-Serna",09/27-09/27,LEA 808,Active
,,,,,,,W,04:05 pm-04:55 pm,,,,,"Daniel Ruiz-Serna",10/25-10/25,LEA 808,Active
,,,,,,,W,04:05 pm-04:55 pm,,,,,"Daniel Ruiz-Serna",11/22-11/22,LEA 808,Active
8531,ANTH,212,003,Conference,0.000,"Anthropology of Development.",W,05:05 pm-05:55 pm,27,0,0,0,"Daniel Ruiz-Serna",09/27-09/27,LEA 808,Active
,,,,,,,W,05:05 pm-05:55 pm,,,,,"Daniel Ruiz-Serna",10/25-10/25,LEA 808,Active
,,,,,,,W,05:05 pm-05:55 pm,,,,,"Daniel Ruiz-Serna",11/22-11/22,LEA 808,Active
8532,ANTH,212,004,Conference,0.000,"Anthropology of Development.",F,08:35 am-09:25 am,27,0,0,0,"Daniel Ruiz-Serna",09/29-09/29,MDHAR G-01,Active
,,,,,,,F,08:35 am-09:25 am,,,,,"Daniel Ruiz-Serna",10/27-10/27,MDHAR G-01,Active
,,,,,,,F,08:35 am-09:25 am,,,,,"Daniel Ruiz-Serna",11/24-11/24,MDHAR G-01,Active
8533,ANTH,212,005,Conference,0.000,"Anthropology of Development.",F,10:05 am-11:25 am,27,0,0,0,"Daniel Ruiz-Serna",09/29-09/29,SH680 365,Active
,,,,,,,F,10:05 am-11:25 am,,,,,"Daniel Ruiz-Serna",10/27-10/27,SH680 365,Active
,,,,,,,F,10:05 am-11:25 am,,,,,"Daniel Ruiz-Serna",11/24-11/24,SH680 365,Active
8534,ANTH,212,006,Conference,0.000,"Anthropology of Development.",F,11:35 am-12:25 pm,27,0,0,0,"Daniel Ruiz-Serna",09/29-09/29,FERR 408,Active
,,,,,,,F,11:35 am-12:25 pm,,,,,"Daniel Ruiz-Serna",10/27-10/27,FERR 408,Active
,,,,,,,F,11:35 am-12:25 pm,,,,,"Daniel Ruiz-Serna",11/24-11/24,FERR 408,Active
8535,ANTH,212,007,Conference,0.000,"Anthropology of Development.",F,01:05 pm-02:25 pm,27,0,0,0,"Daniel Ruiz-Serna",09/29-09/29,SH680 1025,Active
,,,,,,,F,01:05 pm-02:25 pm,,,,,"Daniel Ruiz-Serna",10/27-10/27,SH680 1025,Active
,,,,,,,F,01:05 pm-02:25 pm,,,,,"Daniel Ruiz-Serna",11/24-11/24,SH680 1025,Active
8537,ANTH,212,008,Conference,0.000,"Anthropology of Development.",F,01:05 pm-02:25 pm,27,0,0,0,"Daniel Ruiz-Serna",09/29-09/29,SH680 1047,Active
,,,,,,,F,01:05 pm-02:25 pm,,,,,"Daniel Ruiz-Serna",10/27-10/27,SH680 1047,Active
,,,,,,,F,01:05 pm-02:25 pm,,,,,"Daniel Ruiz-Serna",11/24-11/24,SH680 1047,Active
8538,ANTH,212,009,Conference,0.000,"Anthropology of Development.",W,04:05 pm-04:55 pm,27,0,0,0,"Daniel Ruiz-Serna",09/27-09/27,LEA 721,Active
,,,,,,,W,04:05 pm-04:55 pm,,,,,"Daniel Ruiz-Serna",10/25-10/25,LEA 721,Active
,,,,,,,W,04:05 pm-04:55 pm,,,,,"Daniel Ruiz-Serna",11/22-11/22,LEA 721,Active
8539,ANTH,212,010,Conference,0.000,"Anthropology of Development.",W,05:05 pm-05:55 pm,27,0,0,0,"Daniel Ruiz-Serna",09/27-09/27,LEA 721,Active
,,,,,,,W,05:05 pm-05:55 pm,,,,,"Daniel Ruiz-Serna",10/25-10/25,LEA 721,Active
,,,,,,,W,05:05 pm-05:55 pm,,,,,"Daniel Ruiz-Serna",11/22-11/22,LEA 721,Active
1222,ANTH,227,001,Lecture,3.000,"Medical Anthropology.",TR,02:35 pm-03:55 pm,240,0,0,0,"Samuele Collu",08/30-11/29,MAASS 112,Active
,,,,,,,TR,02:35 pm-03:55 pm,,,,,"Samuele Collu",12/01-12/05,MAASS 112,Active
1223,ANTH,302,001,Lecture,3.000,"New Horizons in Medical Anthropology.",T,02:35 pm-03:55 pm,80,0,0,0,"Todd Eugene Meyers",08/30-09/05,ENGTR 1080,Active
,,,,,,,TR,02:35 pm-03:55 pm,,,,,"Todd Eugene Meyers",09/06-11/29,RPHYS 118,Active
,,,,,,,T,02:35 pm-03:55 pm,,,,,"Todd Eugene Meyers",09/19-09/19,MCMED 325,Active
,,,,,,,TR,02:35 pm-03:55 pm,,,,,"Todd Eugene Meyers",12/01-12/05,RPHYS 118,Active
1224,ANTH,304,001,Lecture,3.000,"Chinese Culture in Ethnography and Film.",TR,11:35 am-12:55 pm,40,0,0,0,"Sandra Teresa Hyde",08/30-11/29,EDUC 433,Active
,,,,,,,R,05:35 pm-08:25 pm,,,,,"Sandra Teresa Hyde",09/13-11/23,LEA 109,Active
,,,,,,,TR,11:35 am-12:55 pm,,,,,"Sandra Teresa Hyde",12/01-12/05,EDUC 433,Active
1225,ANTH,307,001,Lecture,3.000,"Andean Prehistory.",TR,01:05 pm-02:25 pm,40,0,0,0,"Nicole Claire Couture",08/30-11/29,EDUC 433,Active
,,,,,,,TR,01:05 pm-02:25 pm,,,,,"Nicole Claire Couture",12/01-12/05,EDUC 433,Active
1226,ANTH,308,001,Lecture,3.000,"Political Anthropology 01.",WF,04:05 pm-05:25 pm,160,0,0,0,"Katherine Lemons",08/30-12/01,ENGTR 0100,Active
8489,ANTH,308,002,Conference,0.000,"Political Anthropology 01.",F,04:05 pm-05:25 pm,20,0,0,0,TBA,09/15-09/15,LEA 210,Temporarily closed
,,,,,,,F,04:05 pm-05:25 pm,,,,,TBA,09/29-09/29,LEA 210,Temporarily closed
,,,,,,,F,04:05 pm-05:25 pm,,,,,TBA,10/27-10/27,LEA 210,Temporarily closed
,,,,,,,F,04:05 pm-05:25 pm,,,,,TBA,11/10-11/10,LEA 210,Temporarily closed
,,,,,,,F,04:05 pm-05:25 pm,,,,,TBA,11/24-11/24,LEA 210,Temporarily closed
8490,ANTH,308,003,Conference,0.000,"Political Anthropology 01.",R,04:05 pm-05:25 pm,15,0,0,0,"Maryam Roosta",09/14-09/14,ARTS 350,Active
,,,,,,,R,04:05 pm-05:25 pm,,,,,"Maryam Roosta",09/28-09/28,ARTS 350,Active
,,,,,,,R,04:05 pm-05:25 pm,,,,,"Maryam Roosta",10/26-10/26,ARTS 350,Active
,,,,,,,R,04:05 pm-05:25 pm,,,,,"Maryam Roosta",11/09-11/09,ARTS 350,Active
,,,,,,,R,04:05 pm-05:25 pm,,,,,"Maryam Roosta",11/23-11/23,ARTS 350,Active
8491,ANTH,308,004,Conference,0.000,"Political Anthropology 01.",F,02:35 pm-03:55 pm,15,0,0,0,"Maryam Roosta",09/15-09/15,LEA 617,Active
,,,,,,,F,02:35 pm-03:55 pm,,,,,"Maryam Roosta",09/29-09/29,LEA 617,Active
,,,,,,,F,02:35 pm-03:55 pm,,,,,"Maryam Roosta",10/27-10/27,LEA 617,Active
,,,,,,,F,02:35 pm-03:55 pm,,,,,"Maryam Roosta",11/10-11/10,LEA 617,Active
,,,,,,,F,02:35 pm-03:55 pm,,,,,"Maryam Roosta",11/24-11/24,LEA 617,Active
8492,ANTH,308,005,Conference,0.000,"Political Anthropology 01.",F,04:05 pm-05:25 pm,15,0,0,0,"Maryam Roosta",09/15-09/15,LEA 617,Active
,,,,,,,F,04:05 pm-05:25 pm,,,,,"Maryam Roosta",09/29-09/29,LEA 617,Active
,,,,,,,F,04:05 pm-05:25 pm,,,,,"Maryam Roosta",10/27-10/27,LEA 617,Active
,,,,,,,F,04:05 pm-05:25 pm,,,,,"Maryam Roosta",11/10-11/10,LEA 617,Active
,,,,,,,F,04:05 pm-05:25 pm,,,,,"Maryam Roosta",11/24-11/24,LEA 617,Active
1227,ANTH,318,001,Lecture,3.000,"Globalization and Religion.",WF,08:35 am-09:55 am,80,0,0,0,"Samuel Aaron Victor",08/30-12/01,ENGMD 280,Active
8127,ANTH,343,001,Lecture,3.000,"Anthropology and the Animal.",T,02:35 pm-03:55 pm,80,0,0,0,"Daniel Ruiz-Serna",08/30-09/05,RPHYS 118,Active
,,,,,,,TR,02:35 pm-03:55 pm,,,,,"Daniel Ruiz-Serna",09/06-11/29,ENGTR 1080,Active
,,,,,,,TR,02:35 pm-03:55 pm,,,,,"Daniel Ruiz-Serna",12/01-12/05,ENGTR 1080,Active
1228,ANTH,352,001,Lecture,3.000,"History of Anthropological Theory.",MW,02:35 pm-03:55 pm,80,0,0,0,"John Galaty",08/30-12/04,STBIO S3/3,Active
,,,,,,,R,02:35 pm-03:55 pm,,,,,"John Galaty",11/30-11/30,STBIO S3/3,Active
1229,ANTH,357,001,Lecture,3.000,"Archaeological Methods.",F,01:05 pm-03:55 pm,30,0,0,0,"Peter Johansen",08/30-12/01,TBA,Active
1230,ANTH,358,001,Lecture,3.000,"The Process of Anthropological Research.",TR,10:05 am-11:25 am,72,0,0,0,"Setrag Manoukian",08/30-11/29,ENGTR 1080,Active
,,,,,,,TR,10:05 am-11:25 am,,,,,"Setrag Manoukian",12/01-12/05,ENGTR 1080,Active
8234,ANTH,358,002,Conference,0.000,"The Process of Anthropological Research.",R,10:05 am-11:25 am,40,0,0,0,TBA,08/30-11/29,WONG 1050,Registration Not Required
,,,,,,,R,10:05 am-11:25 am,,,,,TBA,12/01-12/05,WONG 1050,Registration Not Required
1231,ANTH,380,001,Reading Course,3.000,"Special Topic 1.",,TBA,10,0,0,0,TBA,08/30-12/05,TBA,Active
1232,ANTH,381,001,Topics Course,3.000,"Special Topic 2.",,TBA,10,0,0,0,TBA,08/30-12/05,TBA,Active
1233,ANTH,385,001,Lecture,3.000,"Sex, Science and Culture.",W,08:35 am-11:25 am,40,0,0,0,"Sahar Sadjadi",08/30-12/01,EDUC 211,Active
1234,ANTH,407,001,Seminar,3.000,"Anthropology of the Body.",F,08:35 am-11:25 am,18,0,0,0,"Sandra Teresa Hyde",08/30-12/01,LEA 808,Active
1235,ANTH,408,001,Seminar,3.000,"Sensory Ethnography.",M,02:35 pm-05:25 pm,16,0,0,0,"Jorge Alonso Gamarra Montesinos",08/30-12/04,TBA,Active
,,,,,,,R,02:35 pm-05:25 pm,,,,,"Jorge Alonso Gamarra Montesinos",11/30-11/30,TBA,Active
1236,ANTH,428,001,Lecture,3.000,"Saints and Mediation in Latin America.",F,02:35 pm-05:25 pm,20,0,0,0,"Kristin Norget",08/30-12/01,LEA 834,Active
1237,ANTH,450,001,Seminar,3.000,"Archaeology of Landscape.",TR,10:05 am-11:25 am,20,0,0,0,"Peter Johansen",08/30-11/29,TBA,Active
,,,,,,,TR,10:05 am-11:25 am,,,,,"Peter Johansen",12/01-12/05,TBA,Active
1238,ANTH,480,001,Reading Course,3.000,"Special Topic 5.",,TBA,5,0,0,0,"Colin Scott",08/30-12/05,TBA,Active
1239,ANTH,481,001,Topics Course,3.000,"Special Topic 6.",,TBA,5,0,0,0,TBA,08/30-12/05,TBA,Active
5769,ANTH,490D1,001,Thesis Course,3.000,"Honours Thesis.",,TBA,5,0,0,0,"Leslie James Sabiston",08/30-12/05,TBA,Active
6121,ANTH,490N2,001,Thesis Course,3.000,"Honours Thesis.",,TBA,5,0,0,0,TBA,08/30-12/05,TBA,Active
1240,ANTH,491,001,Thesis Course,3.000,"Joint Honours Thesis.",,TBA,5,0,0,0,TBA,08/30-12/05,TBA,Active
1241,ANTH,499,001,Internship,3.000,"Internship: Anthropology.",,TBA,10,0,0,0,"Peter Johansen",08/30-12/05,TBA,Active
1242,ANTH,503,001,Seminar,3.000,"Production of the Past.",WF,08:35 am-09:55 am,20,0,0,0,"Nicole Claire Couture",08/30-12/01,LEA 834,Active
1243,ANTH,505,001,Seminar,3.000,"Current Advances in Archaeological Theory.",W,02:35 pm-05:25 pm,20,0,0,0,"Lisa Overholtzer",08/30-12/01,TBA,Active
1245,ANTH,512,001,Seminar,3.000,"Political Ecology.",W,02:35 pm-05:25 pm,20,0,0,0,TBA,08/30-12/01,TBA,Cancelled
1246,ANTH,520,001,Seminar,3.000,"Problems and Perspectives in Medical Anthropology.",R,02:35 pm-05:25 pm,20,0,0,0,"Sahar Sadjadi",08/30-11/29,PL3647 101,Active
1247,ANTH,575,001,Seminar,3.000,"Topic: Indigenous & Race",T,11:35 am-02:25 pm,20,0,0,0,"Leslie James Sabiston",08/30-12/05,LEA 834,Active
1248,ANTH,602,001,Lecture,3.000,"Theory 1.",F,02:35 pm-04:25 pm,20,0,0,0,"John Galaty",08/30-12/01,LEA 819,Active
7812,ANTH,609D1,001,Seminar,3.000,"Proseminar in Anthropology.",M,12:35 pm-02:25 pm,18,0,0,0,"Samuele Collu",08/30-12/04,LEA 738,Active
,,,,,,,R,12:35 pm-02:25 pm,,,,,"Samuele Collu",11/30-11/30,LEA 738,Active
1249,ANTH,611,001,Lecture,3.000,"Research Design.",T,08:35 am-11:25 am,20,0,0,0,"Samuele Collu",08/30-12/05,TBA,Active
8442,ANTH,690,001,Research Course,6.000,"Research Paper 1.",,TBA,5,0,0,0,TBA,08/30-12/05,TBA,Active
8444,ANTH,691,001,Research Course,6.000,"Research Paper 2.",,TBA,5,0,0,0,TBA,08/30-12/05,TBA,Active
1250,ANTH,694,001,Thesis Course,6.000,"M.A. Thesis Tutorial 1.",,TBA,4,0,0,0,TBA,08/30-12/05,TBA,Active
1251,ANTH,695,001,Thesis Course,6.000,"M.A. Thesis Tutorial 2.",,TBA,5,0,0,0,TBA,08/30-12/05,TBA,Active
1252,ANTH,699,001,Thesis Course,21.000,"M.A. Thesis.",,TBA,5,0,0,0,TBA,08/30-12/05,TBA,Active
1253,ANTH,701,001,Comprehensive Exam,0.000,"PhD Comprehensive Examination.",,TBA,6,0,0,0,TBA,08/30-12/05,TBA,Active
1254,ANTH,702,001,Evaluation,0.000,"PhD Proposal Defence.",,TBA,10,0,0,0,TBA,08/30-12/05,TBA,Active
1255,ANTH,780,001,Reading Course,3.000,"Reading and Research 1.",,TBA,8,0,0,0,"Peter Johansen, Todd Eugene Meyers, Samuele Collu",08/30-12/05,TBA,Active
1256,ANTH,781,001,Reading Course,3.000,"Reading and Research 2.",F,02:05 pm-04:55 pm,8,0,0,0,"Samuele Collu",08/30-12/01,LEA 917,Active
1257,ANTH,790,001,Tutorial,3.000,"Ph.D. Tutorial 1.",,TBA,5,0,0,0,TBA,08/30-12/05,TBA,Active
1258,ANTH,791,001,Tutorial,3.000,"Ph.D. Tutorial 2.",,TBA,5,0,0,0,TBA,08/30-12/05,TBA,Active
1259,ANTH,792,001,Tutorial,3.000,"Ph.D. Tutorial 3.",,TBA,5,0,0,0,TBA,08/30-12/05,TBA,Active
Architecture
CRN,Subject,Course,Section,Type,Credits,Title,Days,Time,Capacity,WL Capacity,WL Actual,WL Remaining,Instructor,Date (MM//DD),Location,Status
1260,ARCH,201,001,Lecture,6.000,"Communication, Behaviour and Architecture.",T,08:35 am-10:25 am,45,0,0,0,"Lia Ruccolo, Kim Pariseau, Olga Karpova, Howard Davies",08/30-12/05,MDHAR 212,Active
1261,ARCH,201,002,Studio,0.000,"Communication, Behaviour and Architecture.",TR,10:35 am-12:25 pm,45,0,0,0,"Howard Davies",08/30-11/29,MDHAR 115,Active
,,,,,,,TR,01:35 pm-05:25 pm,,,,,"Howard Davies",08/30-11/29,MDHAR 115,Active
,,,,,,,TR,10:35 am-12:25 pm,,,,,"Howard Davies",12/01-12/05,MDHAR 115,Active
,,,,,,,TR,01:35 pm-05:25 pm,,,,,"Howard Davies",12/01-12/05,MDHAR 115,Active
1262,ARCH,221,001,Field Course (DEPT),2.000,"Architectural Drawing.",R,08:35 am-10:25 am,45,0,0,0,"Cailen Pybus",08/30-11/29,MDHAR 212,Active
1263,ARCH,250,001,Lecture,3.000,"Architectural History 1.",M,02:35 pm-04:25 pm,58,0,0,0,"Ricardo L Castro",08/30-12/04,ENGTR 1080,Active
,,,,,,,W,02:35 pm-03:25 pm,,,,,"Ricardo L Castro",08/30-12/01,ENGTR 1080,Active
,,,,,,,R,02:35 pm-04:25 pm,,,,,"Ricardo L Castro",11/30-11/30,ENGTR 1080,Active
1264,ARCH,250,002,Lecture,3.000,"Architectural History 1.",M,02:35 pm-04:25 pm,5,0,0,0,"Ricardo L Castro",08/30-12/04,ENGTR 1080,Active
,,,,,,,W,02:35 pm-03:25 pm,,,,,"Ricardo L Castro",08/30-12/01,ENGTR 1080,Active
,,,,,,,R,02:35 pm-04:25 pm,,,,,"Ricardo L Castro",11/30-11/30,ENGTR 1080,Active
1265,ARCH,303,001,Lecture,6.000,"Design and Construction 1.",TR,10:35 am-11:25 am,15,0,0,0,"Vedanta Balbahadur",08/30-11/29,MDHAR 207,Active
,,,,,,,TR,10:35 am-11:25 am,,,,,"Vedanta Balbahadur",12/01-12/05,MDHAR 207,Active
1266,ARCH,303,002,Lecture,6.000,"Design and Construction 1.",TR,11:35 am-12:25 pm,15,0,0,0,"Jennifer Thorogood",08/30-11/29,MDHAR 207,Active
,,,,,,,TR,11:35 am-12:25 pm,,,,,"Jennifer Thorogood",12/01-12/05,MDHAR 207,Active
1267,ARCH,303,003,Lecture,6.000,"Design and Construction 1.",TR,10:35 am-11:25 am,15,0,0,0,"Julia Manaças",08/30-11/29,MDHAR 212,Active
,,,,,,,TR,10:35 am-11:25 am,,,,,"Julia Manaças",12/01-12/05,MDHAR 212,Active
1268,ARCH,303,004,Studio,0.000,"Design and Construction 1.",TR,11:35 am-12:25 pm,15,0,0,0,"Vedanta Balbahadur",08/30-11/29,MDHAR 214,Active
,,,,,,,TR,01:35 pm-05:25 pm,,,,,"Vedanta Balbahadur",08/30-11/29,MDHAR 214,Active
,,,,,,,TR,11:35 am-12:25 pm,,,,,"Vedanta Balbahadur",12/01-12/05,MDHAR 214,Active
,,,,,,,TR,01:35 pm-05:25 pm,,,,,"Vedanta Balbahadur",12/01-12/05,MDHAR 214,Active
1269,ARCH,303,005,Studio,0.000,"Design and Construction 1.",TR,10:35 am-11:25 am,15,0,0,0,"Jennifer Thorogood",08/30-11/29,MDHAR 214,Active
,,,,,,,TR,01:35 pm-05:25 pm,,,,,"Jennifer Thorogood",08/30-11/29,MDHAR 214,Active
,,,,,,,TR,10:35 am-11:25 am,,,,,"Jennifer Thorogood",12/01-12/05,MDHAR 214,Active
,,,,,,,TR,01:35 pm-05:25 pm,,,,,"Jennifer Thorogood",12/01-12/05,MDHAR 214,Active
1270,ARCH,303,006,Studio,0.000,"Design and Construction 1.",TR,11:35 am-12:25 pm,15,0,0,0,"Julia Manaças",08/30-11/29,MDHAR 214,Active
,,,,,,,TR,01:35 pm-05:25 pm,,,,,"Julia Manaças",08/30-11/29,MDHAR 214,Active
,,,,,,,TR,11:35 am-12:25 pm,,,,,"Julia Manaças",12/01-12/05,MDHAR 214,Active
,,,,,,,TR,01:35 pm-05:25 pm,,,,,"Julia Manaças",12/01-12/05,MDHAR 214,Active
1271,ARCH,303,007,Lecture,6.000,"Design and Construction 1.",TR,11:35 am-12:25 pm,15,0,0,0,TBA,08/30-11/29,MDHAR 212,Temporarily closed
,,,,,,,TR,11:35 am-12:25 pm,,,,,TBA,12/01-12/05,MDHAR 212,Temporarily closed
1272,ARCH,303,008,Studio,0.000,"Design and Construction 1.",TR,10:35 am-11:25 am,15,0,0,0,TBA,08/30-11/29,MDHAR 214,Temporarily closed
,,,,,,,TR,01:35 pm-05:25 pm,,,,,TBA,08/30-11/29,MDHAR 214,Temporarily closed
,,,,,,,TR,10:35 am-11:25 am,,,,,TBA,12/01-12/05,MDHAR 214,Temporarily closed
,,,,,,,TR,01:35 pm-05:25 pm,,,,,TBA,12/01-12/05,MDHAR 214,Temporarily closed
1273,ARCH,325,001,Lecture,2.000,"Architectural Sketching.",,TBA,60,0,0,0,"Ricardo L Castro, David Covo",08/30-12/05,TBA,Active
1274,ARCH,354,001,Lecture,3.000,"Architectural History 3.",W,03:35 pm-05:25 pm,55,0,0,0,"Martin Bressani",08/30-12/01,ENGTR 2110,Active
1275,ARCH,354,002,Lecture,3.000,"Architectural History 3.",W,03:35 pm-05:25 pm,5,0,0,0,"Martin Bressani",08/30-12/01,ENGTR 2110,Active
1276,ARCH,354,003,Seminar,0.000,"Architectural History 3.",F,01:35 pm-02:25 pm,30,0,0,0,"Martin Bressani",08/30-12/05,MDHAR 420,Active
1277,ARCH,354,004,Seminar,0.000,"Architectural History 3.",F,02:35 pm-03:25 pm,30,0,0,0,"Martin Bressani",08/30-12/05,MDHAR 420,Active
1278,ARCH,375,001,Lecture,3.000,"Landscape.",W,11:35 am-02:25 pm,60,0,0,0,"Sophie Marie-Paul Robitaille",08/30-12/01,MDHAR 212,Active
1279,ARCH,377,001,Lecture,3.000,"Energy, Environment, and Buildings 1.",M,03:05 pm-05:55 pm,55,0,0,0,"Conor Sampson",08/30-12/04,MDHAR 212,Active
,,,,,,,R,03:05 pm-05:55 pm,,,,,"Conor Sampson",11/30-11/30,MDHAR 212,Active
1280,ARCH,377,002,Lecture,3.000,"Energy, Environment, and Buildings 1.",M,03:05 pm-05:55 pm,8,0,0,0,"Conor Sampson",08/30-12/04,MDHAR 212,Active
,,,,,,,R,03:05 pm-05:55 pm,,,,,"Conor Sampson",11/30-11/30,MDHAR 212,Active
1281,ARCH,378,001,Lecture,3.000,"Introduction to Building Environments.",F,02:35 pm-05:25 pm,60,0,0,0,"Naomi Keena",08/30-12/01,ARTS 150,Active
1282,ARCH,378,002,Lecture,3.000,"Introduction to Building Environments.",F,02:35 pm-05:25 pm,20,0,0,0,"Naomi Keena",08/30-12/01,ARTS 150,Active
1283,ARCH,405,001,Lecture,6.000,"Design and Construction 3.",TR,03:35 pm-04:25 pm,15,0,0,0,"Cailen Pybus",08/30-11/29,MDHAR 212,Active
,,,,,,,TR,03:35 pm-04:25 pm,,,,,"Cailen Pybus",12/01-12/05,MDHAR 212,Active
1284,ARCH,405,002,Lecture,6.000,"Design and Construction 3.",TR,04:35 pm-05:25 pm,15,0,0,0,"Morgan Macleod Carter",08/30-11/29,MDHAR 212,Active
,,,,,,,TR,04:35 pm-05:25 pm,,,,,"Morgan Macleod Carter",12/01-12/05,MDHAR 212,Active
1285,ARCH,405,003,Lecture,6.000,"Design and Construction 3.",TR,03:35 pm-04:25 pm,15,0,0,0,"Evelyne Bouchard",08/30-11/29,MDHAR 207,Active
,,,,,,,TR,03:35 pm-04:25 pm,,,,,"Evelyne Bouchard",12/01-12/05,MDHAR 207,Active
1286,ARCH,405,004,Studio,0.000,"Design and Construction 3.",TR,10:35 am-12:25 pm,15,0,0,0,"Cailen Pybus",08/30-11/29,MDHAR 514,Active
,,,,,,,TR,01:35 pm-04:25 pm,,,,,"Cailen Pybus",08/30-11/29,MDHAR 514,Active
,,,,,,,TR,10:35 am-12:25 pm,,,,,"Cailen Pybus",12/01-12/05,MDHAR 514,Active
,,,,,,,TR,01:35 pm-04:25 pm,,,,,"Cailen Pybus",12/01-12/05,MDHAR 514,Active
1287,ARCH,405,005,Studio,0.000,"Design and Construction 3.",TR,10:05 am-12:25 pm,15,0,0,0,"Morgan Macleod Carter",08/30-11/29,MDHAR 514,Active
,,,,,,,TR,02:05 pm-04:25 pm,,,,,"Morgan Macleod Carter",08/30-11/29,MDHAR 514,Active
,,,,,,,TR,10:05 am-12:25 pm,,,,,"Morgan Macleod Carter",12/01-12/05,MDHAR 514,Active
,,,,,,,TR,02:05 pm-04:25 pm,,,,,"Morgan Macleod Carter",12/01-12/05,MDHAR 514,Active
1288,ARCH,405,006,Studio,0.000,"Design and Construction 3.",TR,10:35 am-12:25 pm,15,0,0,0,"Evelyne Bouchard",08/30-11/29,MDHAR 312,Active
,,,,,,,TR,01:35 pm-04:25 pm,,,,,"Evelyne Bouchard",08/30-11/29,MDHAR 312,Active
,,,,,,,TR,04:35 pm-04:55 pm,,,,,"Evelyne Bouchard",08/30-11/29,MDHAR 508,Active
,,,,,,,TR,10:35 am-12:25 pm,,,,,"Evelyne Bouchard",12/01-12/05,MDHAR 312,Active
,,,,,,,TR,01:35 pm-04:25 pm,,,,,"Evelyne Bouchard",12/01-12/05,MDHAR 312,Active
,,,,,,,TR,04:35 pm-04:55 pm,,,,,"Evelyne Bouchard",12/01-12/05,MDHAR 508,Active
1289,ARCH,405,007,Lecture,6.000,"Design and Construction 3.",TR,04:35 pm-05:25 pm,15,0,0,0,"Charles Gregoire",08/30-11/29,MDHAR 207,Active
,,,,,,,TR,04:35 pm-05:25 pm,,,,,"Charles Gregoire",12/01-12/05,MDHAR 207,Active
1290,ARCH,405,008,Studio,0.000,"Design and Construction 3.",TR,10:35 am-12:25 pm,15,0,0,0,"Charles Gregoire",08/30-11/29,MDHAR 312,Active
,,,,,,,TR,01:35 pm-04:25 pm,,,,,"Charles Gregoire",08/30-11/29,MDHAR 312,Active
,,,,,,,TR,10:35 am-12:25 pm,,,,,"Charles Gregoire",12/01-12/05,MDHAR 312,Active
,,,,,,,TR,01:35 pm-04:25 pm,,,,,"Charles Gregoire",12/01-12/05,MDHAR 312,Active
1291,ARCH,445,001,Lecture,3.000,"Architectural Structures 2.",MW,08:35 am-09:55 am,68,0,0,0,"Thomas Egli",08/30-12/04,ENGMD 276,Active
,,,,,,,W,10:35 am-11:25 am,,,,,"Thomas Egli",08/30-12/01,MDHAR 212,Active
,,,,,,,R,08:35 am-09:55 am,,,,,"Thomas Egli",11/30-11/30,ENGMD 276,Active
1292,ARCH,445,002,Lecture,3.000,"Architectural Structures 2.",TBA,TBA,68,0,0,0,TBA,08/30-12/05,TBA,Temporarily closed
1293,ARCH,447,001,Lecture,3.000,"Energy, Environment, and Buildings 2.",M,10:05 am-12:55 pm,60,0,0,0,"Salmaan Craig",08/30-12/04,MDHAR 212,Active
,,,,,,,R,10:05 am-12:55 pm,,,,,"Salmaan Craig",11/30-11/30,MDHAR 212,Active
1294,ARCH,447,002,Lecture,3.000,"Energy, Environment, and Buildings 2.",M,10:05 am-12:55 pm,15,0,0,0,"Salmaan Craig",08/30-12/04,MDHAR 212,Active
,,,,,,,R,10:05 am-12:55 pm,,,,,"Salmaan Craig",11/30-11/30,MDHAR 212,Active
1295,ARCH,512,001,Lecture,3.000,"Architectural Modelling.",M,01:05 pm-02:55 pm,58,0,0,0,"Theodora Vardouli",08/30-12/04,MDHAR 212,Active
,,,,,,,F,12:35 pm-01:25 pm,,,,,"Theodora Vardouli",08/30-12/01,MDHAR 212,Active
,,,,,,,R,01:05 pm-02:55 pm,,,,,"Theodora Vardouli",11/30-11/30,MDHAR 212,Active
1296,ARCH,512,002,Lecture,3.000,"Architectural Modelling.",TBA,TBA,58,0,0,0,TBA,08/30-12/05,TBA,Cancelled
1297,ARCH,517,001,Lecture,3.000,"Sustainable Residential Development.",W,02:35 pm-05:25 pm,10,0,0,0,"Abraham Friedman",08/30-12/01,MDHAR 212,Active
1298,ARCH,517,002,Lecture,3.000,"Sustainable Residential Development.",W,02:35 pm-05:25 pm,20,0,0,0,"Abraham Friedman",08/30-12/01,MDHAR 212,Active
1299,ARCH,517,003,Lecture,3.000,"Sustainable Residential Development.",W,02:35 pm-05:25 pm,20,0,0,0,"Abraham Friedman",08/30-12/01,MDHAR 212,Active
1300,ARCH,526,001,Lecture,3.000,"Philosophy of Structure.",F,10:35 am-12:25 pm,15,0,0,0,"Pieter Hindrik Sijpkes",08/30-12/01,TBA,Cancelled
1301,ARCH,531,001,Lecture,3.000,"Architectural Intentions Vitruvius - Renaissance.",F,08:35 am-10:25 am,25,0,0,0,"Gregory Paul Caicco",08/30-12/01,MDHAR 212,Active
1302,ARCH,531,002,Lecture,3.000,"Architectural Intentions Vitruvius - Renaissance.",F,08:35 am-10:25 am,25,0,0,0,"Gregory Paul Caicco",08/30-12/01,MDHAR 212,Active
1303,ARCH,535,001,Lecture,3.000,"History of Architecture in Canada.",W,08:35 am-11:25 am,10,0,0,0,"Julia Gersovitz",08/30-12/01,MDHAR 207,Active
1304,ARCH,535,002,Lecture,3.000,"History of Architecture in Canada.",W,08:35 am-11:25 am,10,0,0,0,"Julia Gersovitz",08/30-12/01,MDHAR 207,Active
1305,ARCH,540,001,Topics Course,3.000,"Selected Topics in Architecture 1.",,TBA,12,0,0,0,TBA,08/30-12/05,TBA,Active
1306,ARCH,540,002,Topics Course,3.000,"Selected Topics in Architecture 1.",T,02:35 pm-05:25 pm,15,0,0,0,TBA,08/30-12/05,MDHAR 409,Temporarily closed
1307,ARCH,541,001,Topics Course,3.000,"Selected Topics in Architecture 2.",,TBA,12,0,0,0,TBA,08/30-12/05,TBA,Temporarily closed
1308,ARCH,541,002,Topics Course,3.000,"Selected Topics in Architecture 2.",W,11:35 am-01:25 pm,17,0,0,0,"Nancy Hawley Dunton",08/30-12/01,MDHAR 420,Active
1309,ARCH,542,001,Seminar,3.000,"Selected Topics in Architecture 3.",TBA,TBA,15,0,0,0,TBA,08/30-12/05,TBA,Cancelled
1310,ARCH,672,001,Studio,9.000,"Architectural Design Studio 1.",T,09:05 am-11:55 am,45,0,0,0,"Daniela Leon, Naomi Keena, Salmaan Craig",08/30-12/05,MDHAR 514,Active
,,,,,,,T,02:05 pm-04:55 pm,,,,,"Daniela Leon, Naomi Keena, Salmaan Craig",08/30-12/05,MDHAR 514,Active
,,,,,,,R,09:05 am-11:55 am,,,,,"Daniela Leon, Naomi Keena, Salmaan Craig",08/30-11/29,MDHAR 514,Active
,,,,,,,R,02:05 pm-04:55 pm,,,,,"Daniela Leon, Naomi Keena, Salmaan Craig",08/30-11/29,MDHAR 514,Active
1311,ARCH,676,001,Studio,9.000,"Advanced Architectural Design.",TR,09:35 am-12:25 pm,45,0,0,0,"Andrew John King, Michael Jemtrud",08/30-11/29,MDHAR 314,Active
,,,,,,,TR,02:05 pm-04:55 pm,,,,,"Andrew John King, Michael Jemtrud",08/30-11/29,MDHAR 314,Active
,,,,,,,TR,09:35 am-12:25 pm,,,,,"Andrew John King, Michael Jemtrud",12/01-12/05,MDHAR 314,Active
,,,,,,,TR,02:05 pm-04:55 pm,,,,,"Andrew John King, Michael Jemtrud",12/01-12/05,MDHAR 314,Active
1312,ARCH,678,001,Lecture,3.000,"Advanced Construction.",W,08:35 am-10:25 am,50,0,0,0,"Howard Davies",08/30-12/01,MDHAR 212,Active
1313,ARCH,680,001,Lecture,2.000,"Field Sketching.",,TBA,42,0,0,0,"Ricardo L Castro, David Covo",08/30-12/05,TBA,Active
1314,ARCH,684,001,Seminar,3.000,"Contemporary Theory 1.",M,11:35 am-02:25 pm,30,0,0,0,"Annmarie Adams",08/30-12/04,BURN 708,Active
,,,,,,,R,11:35 am-02:25 pm,,,,,"Annmarie Adams",11/30-11/30,BURN 708,Active
1315,ARCH,685,001,Seminar,3.000,"Contemporary Theory 2.",M,02:35 pm-05:25 pm,15,0,0,0,"Ozayr Saloojee",08/30-12/04,MDHAR 207,Active
,,,,,,,R,02:35 pm-05:25 pm,,,,,"Ozayr Saloojee",11/30-11/30,MDHAR 207,Active
1316,ARCH,711,001,Seminar,3.000,"Doctoral Proseminar 1.",M,04:05 pm-06:55 pm,10,0,0,0,"Martin Bressani",08/30-12/04,MDHAR 206,Active
,,,,,,,R,04:05 pm-06:55 pm,,,,,"Martin Bressani",11/30-11/30,MDHAR 206,Active
1317,ARCH,712,001,Seminar,3.000,"Doctoral Proseminar 2.",M,04:05 pm-06:55 pm,10,0,0,0,"Martin Bressani",08/30-12/04,MDHAR 206,Active
,,,,,,,R,04:05 pm-06:55 pm,,,,,"Martin Bressani",11/30-11/30,MDHAR 206,Active
1318,ARCH,721,001,Reading Course,3.000,"Literature Review 1.",,TBA,5,0,0,0,TBA,08/30-12/05,TBA,Active
1319,ARCH,723,001,Reading Course,3.000,"Literature Review 3.",,TBA,5,0,0,0,"Aysenur Ipek Türeli, Annmarie Adams",08/30-12/05,TBA,Active
Art History
CRN,Subject,Course,Section,Type,Credits,Title,Days,Time,Capacity,WL Capacity,WL Actual,WL Remaining,Instructor,Date (MM//DD),Location,Status
1320,ARTH,202,001,Lecture,3.000,"Introduction to Contemporary Art.",MW,02:35 pm-03:55 pm,100,0,0,0,"Chanon Praepipatmongkol",08/30-12/04,ARTS W-215,Active
,,,,,,,R,02:35 pm-03:55 pm,,,,,"Chanon Praepipatmongkol",11/30-11/30,ARTS W-215,Active
1321,ARTH,207,001,Lecture,3.000,"Introduction Early Modern Art 1400-1700.",TR,10:05 am-11:25 am,100,0,0,0,"Chriscinda Claire Henry",08/30-11/29,ARTS W-215,Active
,,,,,,,TR,10:05 am-11:25 am,,,,,"Chriscinda Claire Henry",12/01-12/05,ARTS W-215,Active
1322,ARTH,225,001,Lecture,3.000,"Introduction to Seventeenth - Century Art.",WF,01:05 pm-02:25 pm,100,0,0,0,"Engeline Christine Vanhaelen",08/30-12/01,ARTS W-215,Active
1323,ARTH,302,001,Lecture,3.000,"Aspects of Canadian Art.",MW,04:05 pm-05:25 pm,100,0,0,0,"Reilley Bishop-Stall",08/30-12/04,ARTS W-215,Active
,,,,,,,R,04:05 pm-05:25 pm,,,,,"Reilley Bishop-Stall",11/30-11/30,ARTS W-215,Active
1324,ARTH,323,001,Lecture,3.000,"Realism and Impressionism.",TR,02:35 pm-03:55 pm,100,0,0,0,"Mary J Hunter",08/30-11/29,ARTS W-215,Active
,,,,,,,TR,02:35 pm-03:55 pm,,,,,"Mary J Hunter",12/01-12/05,ARTS W-215,Active
1325,ARTH,360,001,Lecture,3.000,"Studies in the Photographic.",WF,10:05 am-11:25 am,100,0,0,0,"Evgeniya Makarova",08/30-12/01,ARTS W-215,Active
1326,ARTH,400,001,Seminar,3.000,"Selected Methods in Art History.",R,11:35 am-02:25 pm,15,0,0,0,"Matthew Chambers Hunter",08/30-11/29,FERR 230,Active
1327,ARTH,401,001,Independent Study,3.000,"Honours Research Paper.",,TBA,15,0,0,0,"Matthew Chambers Hunter",08/30-12/05,TBA,Active
1328,ARTH,411,001,Seminar,3.000,"Canadian Art and Race.",F,11:35 am-02:25 pm,12,0,0,0,"Reilley Bishop-Stall",08/30-12/01,ARTS W-5,Active
1329,ARTH,422,001,Seminar,3.000,"Selected Topics in Art and Architecture 3.",W,11:35 am-02:25 pm,15,0,0,0,"Chriscinda Claire Henry",08/30-12/01,FERR 422,Active
1330,ARTH,435,001,Lecture,3.000,"Early Modern Visual Culture.",T,02:35 pm-05:25 pm,13,0,0,0,"Engeline Christine Vanhaelen",08/30-12/05,FERR 230,Active
1331,ARTH,447,001,Seminar,3.000,"Independent Research Course.",,TBA,5,0,0,0,TBA,08/30-12/05,TBA,Active
1332,ARTH,490,001,Seminar,3.000,"Museum Internship.",,TBA,15,0,0,0,TBA,08/30-12/05,TBA,Active
1333,ARTH,501,001,Lecture,3.000,"Advanced Topics in Art History and Visual Culture.",T,11:35 am-02:25 pm,8,0,0,0,"Jeehee Hong",08/30-12/05,ARTS 385,Active
1334,ARTH,600,001,Seminar,3.000,"Advanced Professional Seminar.",T,11:35 am-02:25 pm,15,0,0,0,"Chanon Praepipatmongkol",08/30-12/05,ARTS W-5,Active
1335,ARTH,630,001,Reading Course,3.000,"Directed Reading 1.",,TBA,5,0,0,0,TBA,08/30-12/05,TBA,Active
1336,ARTH,645,001,Seminar,3.000,"Medieval Art and Archaeology.",W,11:35 am-02:25 pm,15,0,0,0,"Cecily Hilsdale",08/30-12/01,ARTS W-220,Active
1337,ARTH,675,001,Seminar,3.000,"Topics: 19th - Century Art and Architecture 1.",M,11:35 am-02:25 pm,15,0,0,0,"Mary J Hunter",08/30-12/04,ARTS W-5,Active
,,,,,,,R,11:35 am-02:25 pm,,,,,"Mary J Hunter",11/30-11/30,ARTS W-5,Active
1338,ARTH,698,001,Thesis Course,12.000,"Thesis Research 1.",,TBA,10,0,0,0,TBA,08/30-12/05,TBA,Active
1339,ARTH,699,001,Thesis Course,12.000,"Thesis Research 2.",,TBA,10,0,0,0,TBA,08/30-12/05,TBA,Active
1340,ARTH,701,001,Comprehensive Exam,0.000,"Ph.D. Comprehensive Examination.",,TBA,5,0,0,0,TBA,08/30-12/05,TBA,Active
1341,ARTH,714,001,Seminar,3.000,"Directed Reading 2.",,TBA,5,0,0,0,TBA,08/30-12/05,TBA,Active
1342,ARTH,725,001,Seminar,3.000,"Methods in Art History 1.",T,02:35 pm-05:25 pm,15,0,0,0,"Gloria Jane Bell",08/30-12/05,ARTS W-5,Active
Air & Space Law
CRN,Subject,Course,Section,Type,Credits,Title,Days,Time,Capacity,WL Capacity,WL Actual,WL Remaining,Instructor,Date (MM//DD),Location,Status
7730,ASPL,613,001,Lecture,3.000,"Government Regulation of Air Transport.",WF,08:35 am-09:55 am,4,0,0,0,"Vincent Correia",08/30-12/05,CDH 316,Active
7731,ASPL,613,009,Lecture,3.000,"Government Regulation of Air Transport.",WF,08:35 am-09:55 am,20,0,0,0,"Vincent Correia",08/30-12/05,CDH 316,Active
6176,ASPL,633,001,Lecture,3.000,"Public International Air Law.",TR,02:35 pm-03:55 pm,4,0,0,0,"Vincent Correia",08/30-11/29,CDH 203,Active
,,,,,,,TR,02:35 pm-03:55 pm,,,,,"Vincent Correia",12/01-12/05,CDH 203,Active
6177,ASPL,633,009,Lecture,3.000,"Public International Air Law.",TR,02:35 pm-03:55 pm,25,0,0,0,"Vincent Correia",08/30-11/29,CDH 203,Active
,,,,,,,TR,02:35 pm-03:55 pm,,,,,"Vincent Correia",12/01-12/05,CDH 203,Active
6178,ASPL,636,001,Lecture,3.000,"Private International Air Law.",R,08:35 am-11:25 am,5,0,0,0,"LUDWIG JOSEF WEBER",08/30-11/29,CDH 203,Active
,,,,,,,R,08:35 am-11:25 am,,,,,"LUDWIG JOSEF WEBER",12/01-12/05,CDH 203,Active
6179,ASPL,636,009,Lecture,3.000,"Private International Air Law.",R,08:35 am-11:25 am,25,0,0,0,"LUDWIG JOSEF WEBER",08/30-11/29,CDH 203,Active
,,,,,,,R,08:35 am-11:25 am,,,,,"LUDWIG JOSEF WEBER",12/01-12/05,CDH 203,Active
6180,ASPL,637,001,Lecture,3.000,"Space Law: General Principles.",W,02:35 pm-05:25 pm,10,0,0,0,"Ram Sarup Jakhu",08/30-12/05,CDH 201,Active
6181,ASPL,637,009,Lecture,3.000,"Space Law: General Principles.",W,02:35 pm-05:25 pm,25,0,0,0,"Ram Sarup Jakhu",08/30-12/05,CDH 201,Active
6182,ASPL,655,009,Project,15.000,"Research Project 1.",,TBA,80,0,0,0,TBA,08/30-12/05,TBA,Active
6183,ASPL,656,009,Project,2.000,"Research Project 2.",,TBA,80,0,0,0,TBA,08/30-12/05,TBA,Active
6184,ASPL,657,009,Project,1.000,"Research Project 3.",,TBA,80,0,0,0,TBA,08/30-12/05,TBA,Active
6185,ASPL,690,009,Thesis Course,3.000,"Master's Thesis 1.",,TBA,35,0,0,0,TBA,08/30-12/05,TBA,Active
6186,ASPL,691,009,Thesis Course,3.000,"Master's Thesis 2.",,TBA,35,0,0,0,TBA,08/30-12/05,TBA,Active
6187,ASPL,692,009,Thesis Course,6.000,"Master's Thesis 3.",,TBA,35,0,0,0,TBA,08/30-12/05,TBA,Active
6188,ASPL,693,009,Thesis Course,12.000,"Master's Thesis 4.",,TBA,35,0,0,0,TBA,08/30-12/05,TBA,Active
6189,ASPL,694,009,Thesis Course,3.000,"Master's Thesis 5.",,TBA,35,0,0,0,TBA,08/30-12/05,TBA,Active
6190,ASPL,701,009,Comprehensive Exam,0.000,"Comprehensive - Air/Space Law.",,TBA,10,0,0,0,TBA,08/30-12/05,TBA,Active
Atmospheric & Oceanic Sciences
CRN,Subject,Course,Section,Type,Credits,Title,Days,Time,Capacity,WL Capacity,WL Actual,WL Remaining,Instructor,Date (MM//DD),Location,Status
1343,ATOC,181,001,Lecture,3.000,"Introduction to Atmospheric Science.",TR,10:05 am-11:25 am,170,0,0,0,"Parisa A Ariya",08/30-11/29,LEA 26,Active
,,,,,,,TR,10:05 am-11:25 am,,,,,"Parisa A Ariya",12/01-12/05,LEA 26,Active
1344,ATOC,182,001,Lecture,3.000,"Introduction to Oceanic Sciences.",WF,11:35 am-12:55 pm,84,0,0,0,"Carolina Olivia Dufour",08/30-12/01,STBIO S3/3,Active
,,,,,,,W,11:35 am-12:55 pm,,,,,"Carolina Olivia Dufour",10/18-10/18,ENGMD 276,Active
1345,ATOC,185,001,Lecture,3.000,"Natural Disasters.",TR,02:35 pm-03:55 pm,320,0,0,0,"John Richard Gyakum, John Stix",08/30-11/29,LEA 132,Active
,,,,,,,TR,02:35 pm-03:55 pm,,,,,"John Richard Gyakum, John Stix",12/01-12/05,LEA 132,Active
1346,ATOC,214,001,Lecture,3.000,"Introduction: Physics of the Atmosphere.",MWF,01:35 pm-02:25 pm,55,0,0,0,"Evangelia Ioannidou",08/30-12/04,ENGTR 2100,Active
,,,,,,,F,01:35 pm-02:25 pm,,,,,"Evangelia Ioannidou",10/13-10/13,ENGTR 0060,Active
,,,,,,,R,01:35 pm-02:25 pm,,,,,"Evangelia Ioannidou",11/30-11/30,ENGTR 2100,Active
1347,ATOC,312,001,Lecture,3.000,"Rotating Fluid Dynamics.",TRF,10:35 am-11:25 am,24,0,0,0,"Evangelia Ioannidou",08/30-11/29,BURN 719A,Active
,,,,,,,TRF,10:35 am-11:25 am,,,,,"Evangelia Ioannidou",12/01-12/05,BURN 719A,Active
8777,ATOC,312,002,Final Exam,0.000,"Rotating Fluid Dynamics.",R,09:05 am-11:55 am,0,0,0,0,"Evangelia Ioannidou",12/14-12/14,BURN 719A,Registration Not Required
1348,ATOC,315,001,Lecture,3.000,"Thermodynamics and Convection.",TR,11:35 am-12:55 pm,24,0,0,0,"Ivy Tan",08/30-11/29,BURN 934,Active
,,,,,,,TR,11:35 am-12:55 pm,,,,,"Ivy Tan",12/01-12/05,BURN 934,Active
8778,ATOC,315,002,Final Exam,0.000,"Thermodynamics and Convection.",W,02:05 pm-04:55 pm,0,0,0,0,"Ivy Tan",12/20-12/20,BURN 934,Registration Not Required
1349,ATOC,341,001,Lecture,3.000,"Caribbean Climate and Weather.",,TBA,15,0,0,0,"Djordje Romanic, Virginie Sabine Millien",08/30-12/05,TBA,Active
1350,ATOC,396,001,Project,3.000,"Undergraduate Research Project.",,TBA,10,0,0,0,TBA,08/30-12/05,TBA,Active
1351,ATOC,404,001,Lecture,3.000,"Climate Physics.",TR,11:35 am-12:55 pm,10,0,0,0,"Yi Huang",08/30-11/29,BURN 719A,Active
,,,,,,,TR,11:35 am-12:55 pm,,,,,"Yi Huang",12/01-12/05,BURN 719A,Active
1352,ATOC,480,001,Project,3.000,"Honours Research Project.",,TBA,10,0,0,0,TBA,08/30-12/05,TBA,Active
1353,ATOC,512,001,Lecture,3.000,"Atmospheric and Oceanic Dynamics.",WF,11:35 am-12:55 pm,24,0,0,0,"David N Straub",08/30-12/01,BURN 719A,Active
8731,ATOC,512,002,Final Exam,0.000,"Atmospheric and Oceanic Dynamics.",W,02:05 pm-04:55 pm,0,0,0,0,TBA,12/13-12/13,BURN 719A,Registration Not Required
1354,ATOC,519,001,Lecture,3.000,"Advances in Chemistry of Atmosphere.",TR,08:35 am-09:55 am,15,0,0,0,"Parisa A Ariya",08/30-11/29,BURN 934,Active
,,,,,,,TR,08:35 am-09:55 am,,,,,"Parisa A Ariya",12/01-12/05,BURN 934,Active
1355,ATOC,525,001,Lecture,3.000,"Atmospheric Radiation.",TR,01:05 pm-02:25 pm,20,0,0,0,"Yi Huang",08/30-11/29,BURN 719A,Active
,,,,,,,TR,01:05 pm-02:25 pm,,,,,"Yi Huang",08/30-11/29,BURN 708A,Active
,,,,,,,TR,01:05 pm-02:25 pm,,,,,"Yi Huang",12/01-12/05,BURN 708A,Active
,,,,,,,TR,01:05 pm-02:25 pm,,,,,"Yi Huang",12/01-12/05,BURN 719A,Active
1356,ATOC,531,001,Lecture,3.000,"Dynamics of Current Climates.",MW,04:05 pm-05:25 pm,24,0,0,0,"Evangelia Ioannidou",08/30-12/04,BURN 719A,Active
,,,,,,,MW,04:05 pm-05:25 pm,,,,,"Evangelia Ioannidou",08/30-12/04,BURN 708A,Active
,,,,,,,R,04:05 pm-05:25 pm,,,,,"Evangelia Ioannidou",11/30-11/30,BURN 708A,Active
,,,,,,,R,04:05 pm-05:25 pm,,,,,"Evangelia Ioannidou",11/30-11/30,BURN 719A,Active
8776,ATOC,531,002,Final Exam,0.000,"Dynamics of Current Climates.",T,02:05 pm-04:55 pm,0,0,0,0,"Evangelia Ioannidou",12/19-12/19,BURN 719A,Registration Not Required
1357,ATOC,540,001,Lecture,3.000,"Synoptic Meteorology 1.",MW,08:35 am-09:55 am,24,0,0,0,"John Richard Gyakum",08/30-12/04,BURN 719A,Active
,,,,,,,R,08:35 am-09:55 am,,,,,"John Richard Gyakum",11/30-11/30,BURN 719A,Active
8725,ATOC,540,002,Final Exam,0.000,"Synoptic Meteorology 1.",M,09:05 am-11:55 am,0,0,0,0,TBA,12/18-12/18,BURN 719A,Registration Not Required
1358,ATOC,670,001,Reading Course,3.000,"Reading Course: Meteorology 1.",,TBA,10,0,0,0,TBA,08/30-12/05,TBA,Active
1359,ATOC,671,001,Reading Course,3.000,"Reading Course: Meteorology 2.",,TBA,10,0,0,0,TBA,08/30-12/05,TBA,Active
1360,ATOC,672,001,Reading Course,3.000,"Reading Course: Oceanography 1.",,TBA,10,0,0,0,TBA,08/30-12/05,TBA,Active
1361,ATOC,691,001,Thesis Course,3.000,"Master's Thesis Literature Review.",,TBA,15,0,0,0,TBA,08/30-12/05,TBA,Active
1362,ATOC,692,001,Thesis Course,6.000,"Master's Thesis Research 1.",,TBA,10,0,0,0,TBA,08/30-12/05,TBA,Active
1363,ATOC,693,001,Thesis Course,6.000,"Master's Thesis Research 2.",,TBA,10,0,0,0,TBA,08/30-12/05,TBA,Active
1364,ATOC,694,001,Thesis Course,3.000,"Master's Thesis Progress Report and Seminar.",,TBA,10,0,0,0,TBA,08/30-12/05,TBA,Active
1365,ATOC,695,001,Thesis Course,6.000,"Master's Thesis Research 3.",,TBA,10,0,0,0,TBA,08/30-12/05,TBA,Active
1366,ATOC,699,001,Thesis Course,12.000,"Master's Thesis.",,TBA,10,0,0,0,TBA,08/30-12/05,TBA,Active
1367,ATOC,700,001,Comprehensive Exam,1.000,"Ph.D. Proposal Seminar.",,TBA,10,0,0,0,TBA,08/30-12/05,TBA,Active
1368,ATOC,701,001,Comprehensive Exam,0.000,"Ph.D. Comprehensive (General).",,TBA,10,0,0,0,TBA,08/30-12/05,TBA,Active
5770,ATOC,751D1,001,Seminar,0.500,"Seminar: Physical Meteorology.",W,02:35 pm-03:25 pm,15,0,0,0,"Bruno Tremblay",08/30-12/01,BURN 934,Active
5771,ATOC,752D1,001,Lecture,0.500,"Atmospheric, Oceanic and Climate Dynamics.",W,02:35 pm-03:25 pm,10,0,0,0,"Bruno Tremblay",08/30-12/01,BURN 934,Active
Arts & Science
CRN,Subject,Course,Section,Type,Credits,Title,Days,Time,Capacity,WL Capacity,WL Actual,WL Remaining,Instructor,Date (MM//DD),Location,Status
1369,BASC,396,001,Project,3.000,"Undergraduate Research Project.",,TBA,10,0,0,0,TBA,08/30-12/05,TBA,Active
5772,BASC,449D1,001,Research Course,3.000,"Integrative Research Project.",,TBA,10,0,0,0,TBA,08/30-12/05,TBA,Active
Biological and Biomedical Engr
CRN,Subject,Course,Section,Type,Credits,Title,Days,Time,Capacity,WL Capacity,WL Actual,WL Remaining,Instructor,Date (MM//DD),Location,Status
1040,BBME,600D1,001,Seminar,1.500,"Seminars in Biological and Biomedical Engineering.",F,01:35 pm-02:25 pm,40,0,0,0,"Guojun Chen, Sara Mahshid",08/30-12/01,DUFF 507/509,Active
1041,BBME,600N2,001,Seminar,1.500,"Seminars in Biological and Biomedical Engineering.",F,01:35 pm-02:25 pm,30,0,0,0,"Guojun Chen, Sara Mahshid",08/30-12/01,DUFF ,Active
1129,BBME,682,001,Internship,9.000,"Internship 2.",,TBA,10,0,0,0,"Mario Alberto Jardon Contla, Corinne Hoesli, Guojun Chen, Codruta Ignea, Ayyappasamy Sudalaiyadum Perumal",08/30-12/05,NOROOM NEEDED,Active
753,BBME,693,001,Thesis Course,6.000,"Thesis Research 1.",,TBA,25,0,0,0,TBA,08/30-12/05,TBA,Active
752,BBME,694,001,Thesis Course,6.000,"Thesis Research 2.",,TBA,20,0,0,0,TBA,08/30-12/05,TBA,Active
767,BBME,695,001,Thesis Course,12.000,"Thesis Submission.",,TBA,20,0,0,0,TBA,08/30-12/05,TBA,Active
1006,BBME,696,001,Thesis Course,3.000,"Thesis Research 3.",,TBA,40,0,0,0,TBA,08/30-12/05,TBA,Active
1009,BBME,697,001,Thesis Course,3.000,"Thesis Research 4.",,TBA,30,0,0,0,TBA,08/30-12/05,TBA,Active
763,BBME,701,001,Comprehensive Exam,0.000,"Ph.D. Comprehensive Examination.",,TBA,15,0,0,0,TBA,08/30-12/05,TBA,Active
Bioengineering
CRN,Subject,Course,Section,Type,Credits,Title,Days,Time,Capacity,WL Capacity,WL Actual,WL Remaining,Instructor,Date (MM//DD),Location,Status
1370,BIEN,200,001,Lecture,2.000,"Introduction to Bioengineering.",WF,04:05 pm-05:25 pm,75,0,0,0,"Natalie Reznikov, Dan Veniamin Nicolau",08/30-10/19,ENGMD 280,Active
,,,,,,,F,04:05 pm-05:25 pm,,,,,"Natalie Reznikov, Dan Veniamin Nicolau",10/20-10/20,STBIO S3/3,Active
,,,,,,,WF,04:05 pm-05:25 pm,,,,,"Natalie Reznikov, Dan Veniamin Nicolau",10/21-12/01,ENGMD 280,Active
1371,BIEN,200,002,Tutorial,0.000,"Introduction to Bioengineering.",T,02:35 pm-03:25 pm,75,0,0,0,"Natalie Reznikov, Dan Veniamin Nicolau",08/30-12/05,ENGTR 1100,Active
7680,BIEN,210,001,Lecture,3.000,"Electrical and Optical Properties of Biological Systems.",MW,11:35 am-12:55 pm,75,0,0,0,"Sebastian Wachsmann Hogiu",08/30-12/04,MDHAR G-10,Active
,,,,,,,R,11:35 am-12:55 pm,,,,,"Sebastian Wachsmann Hogiu",11/30-11/30,MDHAR G-10,Active
7681,BIEN,210,002,Tutorial,0.000,"Electrical and Optical Properties of Biological Systems.",F,01:35 pm-03:25 pm,75,0,0,0,"Sebastian Wachsmann Hogiu",08/30-10/19,ENGMD 276,Active
,,,,,,,F,01:35 pm-03:25 pm,,,,,"Sebastian Wachsmann Hogiu",10/20-10/20,MCMED 210/11,Active
,,,,,,,F,01:35 pm-03:25 pm,,,,,"Sebastian Wachsmann Hogiu",10/21-12/05,ENGMD 276,Active
1372,BIEN,219,001,Lecture,4.000,"Introduction to Physical Molecular and Cell Biology.",MWF,10:35 am-11:25 am,75,0,0,0,"Alanna Jean Watt, Rodrigo Reyes Lamothe, Adam Gerald Hendricks",08/30-12/04,STBIO N2/2,Active
,,,,,,,R,10:35 am-11:25 am,,,,,"Alanna Jean Watt, Rodrigo Reyes Lamothe, Adam Gerald Hendricks",11/30-11/30,STBIO N2/2,Active
1373,BIEN,219,002,Tutorial,0.000,"Introduction to Physical Molecular and Cell Biology.",R,04:35 pm-05:25 pm,25,0,0,0,"Alanna Jean Watt, Rodrigo Reyes Lamothe, Adam Gerald Hendricks",08/30-11/29,STBIO S3/3,Active
,,,,,,,R,04:35 pm-05:25 pm,,,,,"Alanna Jean Watt, Rodrigo Reyes Lamothe, Adam Gerald Hendricks",12/01-12/05,STBIO S3/3,Active
1374,BIEN,219,003,Tutorial,0.000,"Introduction to Physical Molecular and Cell Biology.",R,04:35 pm-05:25 pm,25,0,0,0,"Alanna Jean Watt, Rodrigo Reyes Lamothe, Adam Gerald Hendricks",08/30-11/29,ENGTR 2100,Active
,,,,,,,R,04:35 pm-05:25 pm,,,,,"Alanna Jean Watt, Rodrigo Reyes Lamothe, Adam Gerald Hendricks",12/01-12/05,ENGTR 2100,Active
1375,BIEN,219,004,Tutorial,0.000,"Introduction to Physical Molecular and Cell Biology.",T,04:35 pm-05:25 pm,25,0,0,0,"Alanna Jean Watt, Rodrigo Reyes Lamothe, Adam Gerald Hendricks",08/30-12/05,EDUC 216,Active
1376,BIEN,219,005,Tutorial,0.000,"Introduction to Physical Molecular and Cell Biology.",F,04:35 pm-05:25 pm,25,0,0,0,"Alanna Jean Watt, Rodrigo Reyes Lamothe, Adam Gerald Hendricks",08/30-12/05,LEA 14,Active
1377,BIEN,267,001,Lecture,3.000,"Bioanalytical Methods in Bioengineering.",F,12:35 pm-01:25 pm,75,0,0,0,"Codruta Ignea",08/30-12/01,ENGMD 276,Active
1378,BIEN,267,002,Laboratory,0.000,"Bioanalytical Methods in Bioengineering.",T,08:35 am-12:25 pm,25,0,0,0,"Codruta Ignea",08/30-12/05,TBA,Active
1379,BIEN,267,003,Laboratory,0.000,"Bioanalytical Methods in Bioengineering.",T,01:05 pm-04:55 pm,24,0,0,0,"Codruta Ignea",08/30-12/05,TBA,Active
1380,BIEN,267,004,Laboratory,0.000,"Bioanalytical Methods in Bioengineering.",W,08:35 am-12:25 pm,25,0,0,0,"Codruta Ignea",08/30-12/05,TBA,Active
1381,BIEN,267,005,Laboratory,0.000,"Bioanalytical Methods in Bioengineering.",W,01:05 pm-04:55 pm,25,0,0,0,"Codruta Ignea",08/30-12/05,TBA,Temporarily closed
1382,BIEN,290,001,Lecture,3.000,"Bioengineering Measurement Laboratory.",F,08:35 am-09:25 am,75,0,0,0,"Joseph Matthew Kinsella",08/30-12/01,STBIO S3/3,Active
1383,BIEN,290,003,Laboratory,0.000,"Bioengineering Measurement Laboratory.",R,08:35 am-12:25 pm,30,0,0,0,"Joseph Matthew Kinsella",08/30-11/29,TBA,Active
,,,,,,,R,08:35 am-12:25 pm,,,,,"Joseph Matthew Kinsella",12/01-12/05,TBA,Active
1384,BIEN,290,004,Laboratory,0.000,"Bioengineering Measurement Laboratory.",R,12:35 pm-04:25 pm,30,0,0,0,"Joseph Matthew Kinsella",08/30-11/29,TBA,Active
,,,,,,,R,12:35 pm-04:25 pm,,,,,"Joseph Matthew Kinsella",12/01-12/05,TBA,Active
1385,BIEN,290,005,Laboratory,0.000,"Bioengineering Measurement Laboratory.",M,08:35 am-12:25 pm,21,0,0,0,"Joseph Matthew Kinsella",08/30-12/05,TBA,Cancelled
,,,,,,,R,08:35 am-12:25 pm,,,,,"Joseph Matthew Kinsella",11/30-11/30,TBA,Cancelled
1386,BIEN,290,006,Laboratory,0.000,"Bioengineering Measurement Laboratory.",F,02:35 pm-06:25 pm,25,0,0,0,"Joseph Matthew Kinsella",08/30-12/05,TBA,Active
1387,BIEN,310,001,Lecture,3.000,"Introduction to Biomolecular Engineering.",WF,01:05 pm-02:25 pm,75,0,0,0,"Yu Xia, Jasmin Coulombe-Huntington",08/30-12/01,ENGTR 1100,Active
1388,BIEN,314,001,Lecture,3.000,"Transport Phenomena in Biological Systems 1.",M,11:35 am-12:55 pm,75,0,0,0,"Rupa Haldavnekar, Caroline Elizabeth Wagner",08/30-12/04,BURN 306,Active
,,,,,,,R,11:35 am-12:55 pm,,,,,"Rupa Haldavnekar, Caroline Elizabeth Wagner",08/30-09/08,MCMED 1027,Active
,,,,,,,R,11:35 am-12:55 pm,,,,,"Rupa Haldavnekar, Caroline Elizabeth Wagner",09/14-10/05,MCMED 210/11,Active
,,,,,,,R,11:35 am-12:55 pm,,,,,"Rupa Haldavnekar, Caroline Elizabeth Wagner",10/12-10/12,MCMED 325,Active
,,,,,,,R,11:35 am-12:55 pm,,,,,"Rupa Haldavnekar, Caroline Elizabeth Wagner",10/19-10/26,MCMED 210/11,Active
,,,,,,,R,11:35 am-12:55 pm,,,,,"Rupa Haldavnekar, Caroline Elizabeth Wagner",11/02-11/23,MCMED 325,Active
,,,,,,,R,11:35 am-12:55 pm,,,,,"Rupa Haldavnekar, Caroline Elizabeth Wagner",11/30-11/30,BURN 306,Active
,,,,,,,R,11:35 am-12:55 pm,,,,,"Rupa Haldavnekar, Caroline Elizabeth Wagner",11/30-11/30,MCMED 325,Active
1389,BIEN,314,002,Tutorial,0.000,"Transport Phenomena in Biological Systems 1.",R,01:35 pm-04:25 pm,75,0,0,0,"Rupa Haldavnekar, Caroline Elizabeth Wagner",08/30-09/08,MC2001 461,Active
,,,,,,,R,01:35 pm-04:25 pm,,,,,"Rupa Haldavnekar, Caroline Elizabeth Wagner",09/14-09/14,MCMED 210/11,Active
,,,,,,,R,01:35 pm-04:25 pm,,,,,"Rupa Haldavnekar, Caroline Elizabeth Wagner",09/21-09/21,MC2001 461,Active
,,,,,,,R,01:35 pm-04:25 pm,,,,,"Rupa Haldavnekar, Caroline Elizabeth Wagner",09/28-09/28,MCMED 210/11,Active
,,,,,,,R,01:35 pm-04:25 pm,,,,,"Rupa Haldavnekar, Caroline Elizabeth Wagner",10/05-10/05,MCMED 521,Active
,,,,,,,R,01:35 pm-04:25 pm,,,,,"Rupa Haldavnekar, Caroline Elizabeth Wagner",10/12-10/12,MC2001 461,Active
,,,,,,,R,01:35 pm-04:25 pm,,,,,"Rupa Haldavnekar, Caroline Elizabeth Wagner",10/19-10/19,MCMED 210/11,Active
,,,,,,,R,01:35 pm-04:25 pm,,,,,"Rupa Haldavnekar, Caroline Elizabeth Wagner",10/26-10/26,MCMED 521,Active
,,,,,,,R,01:35 pm-04:25 pm,,,,,"Rupa Haldavnekar, Caroline Elizabeth Wagner",11/02-11/23,MCMED 210/11,Active
,,,,,,,R,01:35 pm-04:25 pm,,,,,"Rupa Haldavnekar, Caroline Elizabeth Wagner",11/30-11/30,MCMED 521,Active
8645,BIEN,314,003,Midterm Exam,0.000,"Transport Phenomena in Biological Systems 1.",R,01:05 pm-03:55 pm,75,0,0,0,TBA,11/02-11/02,LEA 232,Active
1390,BIEN,350,001,Lecture,4.000,"Biosignals, Systems and Control.",WF,11:35 am-12:55 pm,75,0,0,0,"Georgios Mitsis",08/30-12/01,ENGMD 280,Active
1391,BIEN,350,002,Tutorial,0.000,"Biosignals, Systems and Control.",T,08:35 am-11:25 am,75,0,0,0,"Georgios Mitsis",08/30-12/05,MCMED 1027,Active
1392,BIEN,410,001,Lecture,3.000,"Computational Methods in Biomolecular Engineering.",MW,10:05 am-11:25 am,55,0,0,0,"Yu Xia, Jasmin Coulombe-Huntington",08/30-12/04,ENGTR 2100,Active
,,,,,,,R,10:05 am-11:25 am,,,,,"Yu Xia, Jasmin Coulombe-Huntington",11/30-11/30,ENGTR 2100,Active
1393,BIEN,420,001,Lecture,3.000,"Biodevices Design for Diagnostics and Screening.",T,01:05 pm-02:25 pm,75,0,0,0,"Ayyappasamy Sudalaiyadum Perumal, Dan Veniamin Nicolau",08/30-12/05,BURN 306,Active
,,,,,,,F,01:05 pm-02:25 pm,,,,,"Ayyappasamy Sudalaiyadum Perumal, Dan Veniamin Nicolau",08/30-12/01,STBIO N2/2,Active
1394,BIEN,420,002,Tutorial,0.000,"Biodevices Design for Diagnostics and Screening.",F,10:35 am-12:25 pm,75,0,0,0,"Ayyappasamy Sudalaiyadum Perumal, Dan Veniamin Nicolau",08/30-12/05,ENGTR 1100,Active
5773,BIEN,470D1,001,Lecture,3.000,"Bioengineering Design Project.",R,01:35 pm-02:25 pm,80,0,0,0,"Allen Joseph Ehrlicher",08/30-11/29,ENGMD 280,Active
1395,BIEN,471,001,Project,2.000,"Bioengineering Research Project.",,TBA,75,0,0,0,"Caroline Elizabeth Wagner",08/30-12/05,TBA,Active
1396,BIEN,500,001,Lecture,3.000,"Special Topics in Bioengineering 1.",TBA,TBA,15,0,0,0,TBA,08/30-12/05,TBA,Cancelled
1397,BIEN,500,002,Lecture,3.000,"Special Topics in Bioengineering 1.",TBA,TBA,15,0,0,0,TBA,08/30-12/05,TBA,Cancelled
1398,BIEN,510,001,Lecture,3.000,"Engineered Nanomaterials for Biomedical Applications.",MW,01:05 pm-02:25 pm,15,0,0,0,"Ayyappasamy Sudalaiyadum Perumal, Joseph Matthew Kinsella",08/30-12/04,BIRKS 203,Active
,,,,,,,R,01:05 pm-02:25 pm,,,,,"Ayyappasamy Sudalaiyadum Perumal, Joseph Matthew Kinsella",11/30-11/30,BIRKS 203,Active
1399,BIEN,510,002,Lecture,3.000,"Engineered Nanomaterials for Biomedical Applications.",MW,01:05 pm-02:25 pm,35,0,0,0,"Ayyappasamy Sudalaiyadum Perumal, Joseph Matthew Kinsella",08/30-12/04,BIRKS 203,Active
,,,,,,,R,01:05 pm-02:25 pm,,,,,"Ayyappasamy Sudalaiyadum Perumal, Joseph Matthew Kinsella",11/30-11/30,BIRKS 203,Active
1400,BIEN,550,001,Lecture,3.000,"Biomolecular Devices.",MW,02:35 pm-03:55 pm,10,0,0,0,"Adam Gerald Hendricks",08/30-12/04,RPHYS 115,Active
,,,,,,,R,02:35 pm-03:55 pm,,,,,"Adam Gerald Hendricks",11/30-11/30,RPHYS 115,Active
1401,BIEN,550,002,Lecture,3.000,"Biomolecular Devices.",MW,02:35 pm-03:55 pm,40,0,0,0,"Adam Gerald Hendricks",08/30-12/04,RPHYS 115,Active
,,,,,,,R,02:35 pm-03:55 pm,,,,,"Adam Gerald Hendricks",11/30-11/30,RPHYS 115,Active
1402,BIEN,550,005,Tutorial,0.000,"Biomolecular Devices.",M,04:05 pm-04:55 pm,10,0,0,0,"Adam Gerald Hendricks",08/30-12/05,ENGTR 2120,Active
,,,,,,,R,04:05 pm-04:55 pm,,,,,"Adam Gerald Hendricks",11/30-11/30,ENGTR 2120,Active
1403,BIEN,550,006,Tutorial,0.000,"Biomolecular Devices.",M,04:05 pm-04:55 pm,40,0,0,0,"Adam Gerald Hendricks",08/30-12/05,ENGTR 2120,Active
,,,,,,,R,04:05 pm-04:55 pm,,,,,"Adam Gerald Hendricks",11/30-11/30,ENGTR 2120,Active
1404,BIEN,560,001,Lecture,3.000,"Design of Biosensors.",TR,10:05 am-11:25 am,4,0,0,0,"Sebastian Wachsmann Hogiu, Dan Veniamin Nicolau",08/30-11/29,ENGMD 276,Active
,,,,,,,TR,10:05 am-11:25 am,,,,,"Sebastian Wachsmann Hogiu, Dan Veniamin Nicolau",12/01-12/05,ENGMD 276,Active
1405,BIEN,560,002,Lecture,3.000,"Design of Biosensors.",TR,10:05 am-11:25 am,75,0,0,0,"Sebastian Wachsmann Hogiu, Dan Veniamin Nicolau",08/30-11/29,ENGMD 276,Active
,,,,,,,TR,10:05 am-11:25 am,,,,,"Sebastian Wachsmann Hogiu, Dan Veniamin Nicolau",12/01-12/05,ENGMD 276,Active
1406,BIEN,560,003,Laboratory,0.000,"Design of Biosensors.",M,09:35 am-11:25 am,2,0,0,0,"Sebastian Wachsmann Hogiu",08/30-12/05,MAASS 328,Active
,,,,,,,R,09:35 am-11:25 am,,,,,"Sebastian Wachsmann Hogiu",11/30-11/30,MAASS 328,Active
1407,BIEN,560,004,Laboratory,0.000,"Design of Biosensors.",M,09:35 am-11:25 am,30,0,0,0,"Sebastian Wachsmann Hogiu",08/30-12/05,MAASS 328,Active
,,,,,,,R,09:35 am-11:25 am,,,,,"Sebastian Wachsmann Hogiu",11/30-11/30,MAASS 328,Active
1408,BIEN,560,005,Laboratory,0.000,"Design of Biosensors.",M,05:35 pm-07:25 pm,2,0,0,0,"Sebastian Wachsmann Hogiu",08/30-12/05,MAASS 328,Active
,,,,,,,R,05:35 pm-07:25 pm,,,,,"Sebastian Wachsmann Hogiu",11/30-11/30,MAASS 328,Active
1409,BIEN,560,006,Laboratory,0.000,"Design of Biosensors.",M,05:35 pm-07:25 pm,30,0,0,0,"Sebastian Wachsmann Hogiu",08/30-12/05,MAASS 328,Active
,,,,,,,R,05:35 pm-07:25 pm,,,,,"Sebastian Wachsmann Hogiu",11/30-11/30,MAASS 328,Active
1410,BIEN,560,007,Laboratory,0.000,"Design of Biosensors.",TBA,TBA,10,0,0,0,TBA,08/30-12/05,TBA,Cancelled
1411,BIEN,560,008,Laboratory,0.000,"Design of Biosensors.",TBA,TBA,10,0,0,0,TBA,08/30-12/05,TBA,Cancelled
1412,BIEN,570,001,Lecture,3.000,"Active Mechanics in Biology.",TR,11:35 am-12:55 pm,20,0,0,0,"Allen Joseph Ehrlicher",08/30-11/29,ARTS 260,Active
,,,,,,,TR,11:35 am-12:55 pm,,,,,"Allen Joseph Ehrlicher",12/01-12/05,ARTS 260,Active
1413,BIEN,570,002,Lecture,3.000,"Active Mechanics in Biology.",TR,11:35 am-12:55 pm,30,0,0,0,"Allen Joseph Ehrlicher",08/30-11/29,ARTS 260,Active
,,,,,,,TR,11:35 am-12:55 pm,,,,,"Allen Joseph Ehrlicher",12/01-12/05,ARTS 260,Active
1414,BIEN,570,003,Tutorial,0.000,"Active Mechanics in Biology.",T,02:35 pm-04:25 pm,20,0,0,0,"Allen Joseph Ehrlicher",08/30-12/05,RPHYS 115,Active
1415,BIEN,570,004,Tutorial,0.000,"Active Mechanics in Biology.",T,02:35 pm-04:25 pm,30,0,0,0,"Allen Joseph Ehrlicher",08/30-12/05,RPHYS 115,Active
1416,BIEN,585,001,Lecture,3.000,"Metabolic Engineering.",F,02:35 pm-05:25 pm,30,0,0,0,"Codruta Ignea",08/30-12/01,BIRKS 111,Active
1417,BIEN,585,002,Lecture,3.000,"Metabolic Engineering.",F,02:35 pm-05:25 pm,15,0,0,0,"Codruta Ignea",08/30-12/01,BIRKS 111,Active
1418,BIEN,585,003,Laboratory,0.000,"Metabolic Engineering.",M,01:35 pm-04:25 pm,30,0,0,0,"Codruta Ignea",08/30-12/05,SH680 355,Active
,,,,,,,R,01:35 pm-04:25 pm,,,,,"Codruta Ignea",11/30-11/30,SH680 355,Active
1419,BIEN,585,004,Laboratory,0.000,"Metabolic Engineering.",M,01:35 pm-04:25 pm,15,0,0,0,"Codruta Ignea",08/30-12/05,SH680 355,Active
,,,,,,,R,01:35 pm-04:25 pm,,,,,"Codruta Ignea",11/30-11/30,SH680 355,Active
1420,BIEN,590,001,Lecture,3.000,"Cell Culture Engineering.",M,08:35 am-11:25 am,35,0,0,0,"Amine A. Kamen, Mario Alberto Jardon Contla",08/30-12/04,BIRKS 203,Active
,,,,,,,R,08:35 am-11:25 am,,,,,"Amine A. Kamen, Mario Alberto Jardon Contla",11/30-11/30,BIRKS 203,Active
1421,BIEN,590,002,Lecture,3.000,"Cell Culture Engineering.",M,08:35 am-11:25 am,35,0,0,0,"Amine A. Kamen, Mario Alberto Jardon Contla",08/30-12/04,BIRKS 203,Active
,,,,,,,R,08:35 am-11:25 am,,,,,"Amine A. Kamen, Mario Alberto Jardon Contla",11/30-11/30,BIRKS 203,Active
7880,BIEN,601,001,Lecture,3.000,"cGMP and Regulation in Biomanufacturing.",R,01:35 pm-04:25 pm,40,0,0,0,"Mario Alberto Jardon Contla",08/30-11/29,ENGTR 2110,Active
7682,BIEN,670,001,Lecture,3.000,"Downstream Processing.",W,02:35 pm-05:25 pm,35,0,0,0,"Ayyappasamy Sudalaiyadum Perumal",08/30-12/01,LEA 212,Active
7683,BIEN,670,002,Tutorial,0.000,"Downstream Processing.",W,09:35 am-11:25 am,35,0,0,0,"Ayyappasamy Sudalaiyadum Perumal",08/30-12/05,EDUC 338,Active
7684,BIEN,675,001,Lecture,3.000,"Process Analytical Technologies and Data Sciences.",T,08:35 am-11:25 am,35,0,0,0,"Rupa Haldavnekar, Amine A. Kamen",08/30-12/05,DUFF 507/509,Active
1422,BIEN,685,001,Lecture,3.000,"Gene and Cell Therapy Viral Vectors Biomanufacturing.",TBA,TBA,15,0,0,0,TBA,08/30-12/05,TBA,Cancelled
Biochemistry
CRN,Subject,Course,Section,Type,Credits,Title,Days,Time,Capacity,WL Capacity,WL Actual,WL Remaining,Instructor,Date (MM//DD),Location,Status
1423,BIOC,311,001,Lecture,3.000,"Metabolic Biochemistry.",MWF,12:35 pm-01:25 pm,390,0,0,0,"Maxime Denis, Lawrence Kazak, Kalle Burgess Gehring, Vincent Giguere",08/30-12/04,MCMED 522,Active
,,,,,,,R,12:35 pm-01:25 pm,,,,,"Maxime Denis, Lawrence Kazak, Kalle Burgess Gehring, Vincent Giguere",11/30-11/30,MCMED 522,Active
1424,BIOC,320,001,Lecture,3.000,"Laboratory Methods in Biochemistry and Molecular Biology 2.",M,01:35 pm-02:25 pm,96,0,0,0,"Jose Guerreiro Teodoro",08/30-12/04,MCMED 521,Active
,,,,,,,R,01:35 pm-02:25 pm,,,,,"Jose Guerreiro Teodoro",11/30-11/30,MCMED 521,Active
1425,BIOC,320,002,Laboratory,0.000,"Laboratory Methods in Biochemistry and Molecular Biology 2.",T,01:35 pm-06:25 pm,24,0,0,0,"Jose Guerreiro Teodoro",08/30-12/05,MCMED 910,Active
1426,BIOC,320,003,Laboratory,0.000,"Laboratory Methods in Biochemistry and Molecular Biology 2.",W,01:35 pm-06:25 pm,24,0,0,0,"Jose Guerreiro Teodoro",08/30-12/05,MCMED 910,Active
1427,BIOC,320,004,Laboratory,0.000,"Laboratory Methods in Biochemistry and Molecular Biology 2.",R,01:35 pm-06:25 pm,24,0,0,0,"Jose Guerreiro Teodoro",08/30-11/29,MCMED 910,Active
,,,,,,,R,01:35 pm-06:25 pm,,,,,"Jose Guerreiro Teodoro",12/01-12/05,MCMED 910,Active
1428,BIOC,320,005,Laboratory,0.000,"Laboratory Methods in Biochemistry and Molecular Biology 2.",F,01:35 pm-06:25 pm,24,0,0,0,"Jose Guerreiro Teodoro",08/30-12/05,MCMED 910,Active
1429,BIOC,396,001,Project,3.000,"Undergraduate Research Project.",,TBA,13,0,0,0,TBA,08/30-12/05,TBA,Active
1430,BIOC,450,001,Lecture,3.000,"Protein Structure and Function.",MWF,01:35 pm-02:25 pm,80,0,0,0,"Maria Vera Ugalde, Bhushan Nagar, Kalle Burgess Gehring, Albert Marinus Berghuis, Reza Salavati, Alba Guarne, Enrico Purisima, Thomas Martin Schmeing, Christopher James von Roretz",08/30-12/04,MCMED 1034,Active
,,,,,,,R,01:35 pm-02:25 pm,,,,,"Maria Vera Ugalde, Bhushan Nagar, Kalle Burgess Gehring, Albert Marinus Berghuis, Reza Salavati, Alba Guarne, Enrico Purisima, Thomas Martin Schmeing, Christopher James von Roretz",11/30-11/30,MCMED 1034,Active
8270,BIOC,450,002,Midterm Exam,0.000,"Protein Structure and Function.",W,06:35 pm-09:25 pm,0,0,0,0,TBA,09/27-09/27,STBIO S1/4,Registration Not Required
,,,,,,,F,06:35 pm-09:25 pm,,,,,TBA,11/10-11/10,STBIO S1/4,Registration Not Required
1431,BIOC,454,001,Lecture,3.000,"Nucleic Acids.",MWF,12:35 pm-01:25 pm,100,0,0,0,"Katie Cockburn, William Abraham Pastor, Alain Nepveu, Josee Dostie, Sidong Huang, Ian Robert Watson, Imed Eddine Gallouzi, Jose Guerreiro Teodoro, Thomas Duchaine",08/30-12/04,MCMED 1034,Active
,,,,,,,R,12:35 pm-01:25 pm,,,,,"Katie Cockburn, William Abraham Pastor, Alain Nepveu, Josee Dostie, Sidong Huang, Ian Robert Watson, Imed Eddine Gallouzi, Jose Guerreiro Teodoro, Thomas Duchaine",11/30-11/30,MCMED 1034,Active
8236,BIOC,454,002,Midterm Exam,0.000,"Nucleic Acids.",R,06:35 pm-09:25 pm,0,0,0,0,TBA,10/19-10/19,SADB 2/36,Registration Not Required
1432,BIOC,462,001,Laboratory,6.000,"Research Laboratory in Biochemistry.",,TBA,40,0,0,0,TBA,08/30-12/05,TBA,Active
1433,BIOC,491,001,Laboratory,6.000,"Independent Research.",TBA,TBA,5,0,0,0,TBA,08/30-12/05,TBA,Active
1434,BIOC,600,001,Lecture,3.000,"Advanced Strategies in Genetics and Genomics.",W,10:05 am-12:25 pm,15,0,0,0,"William Abraham Pastor, Kurt Dejgaard, Josee Dostie, Vincent Giguere, Thomas Duchaine, Yojiro Yamanaka, Sidong Huang, Ian Robert Watson, Lawrence Kazak, Alexandre Montpetit, Hamed Shateri Najafabadi",08/30-12/01,MCMED 908,Active
1435,BIOC,603,001,Lecture,3.000,"Genomics and Gene Expression.",T,02:05 pm-04:55 pm,18,0,0,0,"Luke McCaffrey, Imed Eddine Gallouzi, Sidong Huang, Peter Michael Siegel, William Abraham Pastor, Logan Walsh, Lawrence Kazak, William Joseph Muller",08/30-12/05,MCMED 908,Active
5774,BIOC,696D1,001,Seminar,1.500,"Seminars in Biochemistry.",,TBA,50,0,0,0,"Christine E Laberge",08/30-12/05,TBA,Active
6122,BIOC,696N2,001,Seminar,1.500,"Seminars in Biochemistry.",,TBA,20,0,0,0,"Christine E Laberge",08/30-12/05,TBA,Active
1436,BIOC,697,001,Thesis Course,9.000,"Thesis Research 1.",,TBA,45,0,0,0,TBA,08/30-12/05,TBA,Active
1437,BIOC,698,001,Thesis Course,12.000,"Thesis Research 2.",,TBA,10,0,0,0,TBA,08/30-12/05,TBA,Active
1438,BIOC,699,001,Thesis Course,15.000,"Thesis Research 3.",,TBA,25,0,0,0,TBA,08/30-12/05,TBA,Active
1439,BIOC,701,001,Seminar,0.000,"Research Seminar 1.",,TBA,30,0,0,0,TBA,08/30-12/05,TBA,Active
1440,BIOC,702,001,Thesis Course,0.000,"Ph.D. Thesis Proposal.",,TBA,20,0,0,0,TBA,08/30-12/05,TBA,Active
1441,BIOC,703,001,Seminar,0.000,"Ph.D. Seminar.",,TBA,20,0,0,0,TBA,08/30-12/05,TBA,Active
Bio-Ethics
CRN,Subject,Course,Section,Type,Credits,Title,Days,Time,Capacity,WL Capacity,WL Actual,WL Remaining,Instructor,Date (MM//DD),Location,Status
1042,BIOE,680,001,Lecture,3.000,"Bioethical Theory.",F,10:05 am-12:55 pm,15,0,0,0,"Phoebe Friesen",08/30-12/01,MC2001 1135,Active
1043,BIOE,687,001,Reading Course,3.000,"Directed Readings 2.",,TBA,5,0,0,0,TBA,08/30-12/05,TBA,Active
1044,BIOE,690,001,Thesis Course,3.000,"M.Sc. Thesis Literature Survey.",TBA,TBA,15,0,0,0,TBA,08/30-12/05,TBA,Active
1045,BIOE,691,001,Thesis Course,3.000,"M.Sc. Thesis Research Proposal.",TBA,TBA,10,0,0,0,TBA,08/30-12/05,TBA,Active
1046,BIOE,692,001,Thesis Course,6.000,"M.Sc. Thesis Research Progress Report.",TBA,TBA,10,0,0,0,TBA,08/30-12/05,TBA,Active
1047,BIOE,693,001,Thesis Course,12.000,"M.Sc. Thesis.",TBA,TBA,10,0,0,0,TBA,08/30-12/05,TBA,Active
Biology (Sci)
CRN,Subject,Course,Section,Type,Credits,Title,Days,Time,Capacity,WL Capacity,WL Actual,WL Remaining,Instructor,Date (MM//DD),Location,Status
1442,BIOL,101,001,Laboratory,1.000,"Organismal Biology Laboratory.",T,06:35 pm-08:25 pm,5,0,0,0,TBA,08/30-12/05,DUFF CFLOOR,Active
1443,BIOL,101,002,Laboratory,1.000,"Organismal Biology Laboratory.",W,06:35 pm-08:25 pm,5,0,0,0,TBA,08/30-12/01,DUFF CFLOOR,Active
1444,BIOL,101,003,Laboratory,1.000,"Organismal Biology Laboratory.",R,06:35 pm-08:25 pm,5,0,0,0,TBA,08/30-11/29,DUFF CFLOOR,Active
1445,BIOL,101,004,Laboratory,1.000,"Organismal Biology Laboratory.",F,06:35 pm-08:25 pm,5,0,0,0,TBA,08/30-12/01,DUFF CFLOOR,Active
1446,BIOL,111,001,Lecture,3.000,"Principles: Organismal Biology.",MW,01:35 pm-02:25 pm,528,0,0,0,"Andrew Hendry, Elena Melania Cristescu, Benjamin Jesse Shapiro, Fiona Marie Brydone Soper",08/30-12/04,LEA 132,Active
,,,,,,,R,01:35 pm-02:25 pm,,,,,"Andrew Hendry, Elena Melania Cristescu, Benjamin Jesse Shapiro, Fiona Marie Brydone Soper",11/30-11/30,LEA 132,Active
1447,BIOL,111,002,Laboratory,0.000,"Principles: Organismal Biology.",T,06:35 pm-08:25 pm,132,0,0,0,TBA,08/30-12/05,DUFF CFLOOR,Active
1448,BIOL,111,003,Laboratory,0.000,"Principles: Organismal Biology.",W,06:35 pm-08:25 pm,132,0,0,0,TBA,08/30-12/05,DUFF CFLOOR,Active
1449,BIOL,111,004,Laboratory,0.000,"Principles: Organismal Biology.",R,06:35 pm-08:25 pm,132,0,0,0,TBA,08/30-11/29,DUFF CFLOOR,Active
,,,,,,,R,06:35 pm-08:25 pm,,,,,TBA,12/01-12/05,DUFF CFLOOR,Active
1450,BIOL,111,005,Laboratory,0.000,"Principles: Organismal Biology.",F,06:35 pm-08:25 pm,132,0,0,0,TBA,08/30-12/05,DUFF CFLOOR,Active
7633,BIOL,111,006,Midterm Exam,0.000,"Principles: Organismal Biology.",M,06:05 pm-09:25 pm,0,0,0,0,TBA,10/16-10/16,LEA 132,Registration Not Required
,,,,,,,M,06:05 pm-09:25 pm,,,,,TBA,10/16-10/16,LEA 219,Registration Not Required
,,,,,,,M,06:05 pm-09:25 pm,,,,,TBA,10/16-10/16,ENGMC 304,Registration Not Required
,,,,,,,M,06:05 pm-09:25 pm,,,,,TBA,10/16-10/16,STBIO S1/4,Registration Not Required
,,,,,,,M,06:05 pm-09:25 pm,,,,,TBA,10/16-10/16,ENGMC 204,Registration Not Required
,,,,,,,M,06:05 pm-09:25 pm,,,,,TBA,10/16-10/16,LEA 26,Registration Not Required
1451,BIOL,115,001,Lecture,3.000,"Essential Biology.",TR,10:05 am-11:25 am,375,25,0,25,"Sarah Woolley, Jacalyn Mari Vogel",08/30-11/29,MCMED 522,Active
,,,,,,,TR,10:05 am-11:25 am,,,,,"Sarah Woolley, Jacalyn Mari Vogel",12/01-12/05,MCMED 522,Active
7634,BIOL,115,002,Midterm Exam,0.000,"Essential Biology.",W,06:05 pm-08:55 pm,0,0,0,0,TBA,10/04-10/04,LEA 219,Registration Not Required
,,,,,,,W,06:05 pm-08:55 pm,,,,,TBA,10/04-10/04,LEA 132,Registration Not Required
,,,,,,,W,06:05 pm-08:55 pm,,,,,TBA,10/04-10/04,LEA 26,Registration Not Required
,,,,,,,M,06:05 pm-08:55 pm,,,,,TBA,11/06-11/06,LEA 219,Registration Not Required
,,,,,,,M,06:05 pm-08:55 pm,,,,,TBA,11/06-11/06,LEA 132,Registration Not Required
,,,,,,,M,06:05 pm-08:55 pm,,,,,TBA,11/06-11/06,LEA 26,Registration Not Required
1452,BIOL,200,001,Lecture,3.000,"Molecular Biology.",MWF,08:35 am-09:25 am,660,0,0,0,"Paul Lasko, Richard D W Roy, Kenneth E M Hastings",08/30-12/04,LEA 132,Active
,,,,,,,R,08:35 am-09:25 am,,,,,"Paul Lasko, Richard D W Roy, Kenneth E M Hastings",11/30-11/30,LEA 132,Active
1453,BIOL,200,002,Lecture,3.000,"Molecular Biology.",MWF,11:35 am-12:25 pm,612,0,0,0,"Paul Lasko, Richard D W Roy, Kenneth E M Hastings",08/30-12/04,LEA 132,Active
,,,,,,,R,11:35 am-12:25 pm,,,,,"Paul Lasko, Richard D W Roy, Kenneth E M Hastings",11/30-11/30,LEA 132,Active
7636,BIOL,200,003,Optional Tutorial,0.000,"Molecular Biology.",T,05:35 pm-06:25 pm,0,0,0,0,TBA,08/30-12/05,STBIO S3/4,Registration Not Required
,,,,,,,W,09:35 am-10:25 am,,,,,TBA,08/30-12/05,STBIO S3/4,Registration Not Required
,,,,,,,W,06:35 pm-08:25 pm,,,,,TBA,08/30-12/05,STBIO S3/4,Registration Not Required
,,,,,,,R,02:35 pm-03:55 pm,,,,,TBA,08/30-11/29,STBIO S3/4,Registration Not Required
,,,,,,,R,05:35 pm-06:55 pm,,,,,TBA,08/30-11/29,STBIO S3/4,Registration Not Required
,,,,,,,R,02:35 pm-03:55 pm,,,,,TBA,12/01-12/05,STBIO S3/4,Registration Not Required
,,,,,,,R,05:35 pm-06:55 pm,,,,,TBA,12/01-12/05,STBIO S3/4,Registration Not Required
7635,BIOL,200,004,Midterm Exam,0.000,"Molecular Biology.",W,06:35 pm-08:25 pm,0,0,0,0,TBA,10/18-10/18,ADAMS AUD,Registration Not Required
,,,,,,,W,06:35 pm-08:25 pm,,,,,TBA,10/18-10/18,LEA 132,Registration Not Required
,,,,,,,W,06:35 pm-08:25 pm,,,,,TBA,10/18-10/18,LEA 219,Registration Not Required
,,,,,,,W,06:35 pm-08:25 pm,,,,,TBA,10/18-10/18,LEA 26,Registration Not Required
,,,,,,,W,06:35 pm-08:25 pm,,,,,TBA,10/18-10/18,STBIO S1/3,Registration Not Required
,,,,,,,W,06:35 pm-08:25 pm,,,,,TBA,10/18-10/18,MAASS 112,Registration Not Required
,,,,,,,W,06:35 pm-08:25 pm,,,,,TBA,10/18-10/18,ENGMC 204,Registration Not Required
,,,,,,,W,06:35 pm-08:25 pm,,,,,TBA,10/18-10/18,ENGMC 304,Registration Not Required
,,,,,,,W,06:35 pm-08:25 pm,,,,,TBA,10/18-10/18,STBIO S1/4,Registration Not Required
,,,,,,,W,06:35 pm-08:25 pm,,,,,TBA,10/18-10/18,MAASS 112,Registration Not Required
1454,BIOL,200,988,Lecture,3.000,"Molecular Biology.",,TBA,25,0,0,0,"Serge Champetier",08/30-12/05,TBA,Active
1455,BIOL,206,001,Lecture,3.000,"Methods in Biology.",MF,12:35 pm-01:25 pm,120,0,0,0,"Laura Jo Pollock, Hans Carl Erling Larsson, Brian Leung",08/30-12/05,SADB 2/36,Active
,,,,,,,R,12:35 pm-01:25 pm,,,,,"Laura Jo Pollock, Hans Carl Erling Larsson, Brian Leung",11/30-11/30,SADB 2/36,Active
1456,BIOL,206,002,Laboratory,0.000,"Methods in Biology.",T,08:35 am-11:25 am,20,0,0,0,"Laura Jo Pollock",08/30-12/05,REDMUS 106B,Active
1457,BIOL,206,003,Laboratory,0.000,"Methods in Biology.",T,11:35 am-02:25 pm,20,0,0,0,"Laura Jo Pollock",08/30-12/05,REDMUS 106B,Active
1458,BIOL,206,004,Laboratory,0.000,"Methods in Biology.",T,02:35 pm-05:25 pm,20,0,0,0,"Laura Jo Pollock",08/30-12/05,REDMUS 106B,Active
1459,BIOL,206,005,Laboratory,0.000,"Methods in Biology.",W,08:35 am-11:25 am,20,0,0,0,"Laura Jo Pollock",08/30-12/05,REDMUS 106B,Active
1460,BIOL,206,006,Laboratory,0.000,"Methods in Biology.",W,11:35 am-02:25 pm,20,0,0,0,"Laura Jo Pollock",08/30-12/05,REDMUS 106B,Active
1461,BIOL,206,007,Laboratory,0.000,"Methods in Biology.",W,02:35 pm-05:25 pm,20,0,0,0,"Laura Jo Pollock",08/30-12/05,REDMUS 106B,Active
1462,BIOL,210,001,Lecture,3.000,"Perspectives of Science.",WF,08:35 am-09:55 am,100,15,0,15,"Shelton Michael Hendricks, Alanna Jean Watt",08/30-12/01,MCMED 1034,Active
8408,BIOL,210,002,Optional Tutorial,0.000,"Perspectives of Science.",T,09:35 am-10:25 am,0,0,0,0,TBA,09/12-12/05,BURN 426,Registration Not Required
,,,,,,,T,06:05 pm-06:55 pm,,,,,TBA,09/12-12/05,BURN 306,Registration Not Required
1463,BIOL,215,001,Lecture,3.000,"Introduction to Ecology and Evolution.",TR,11:35 am-12:55 pm,200,0,0,0,"Jennifer M. Sunday, Ehab Abouheif",08/30-11/29,LEA 26,Active
,,,,,,,TR,11:35 am-12:55 pm,,,,,"Jennifer M. Sunday, Ehab Abouheif",12/01-12/05,LEA 26,Active
5501,BIOL,215,002,Tutorial,0.000,"Introduction to Ecology and Evolution.",T,10:05 am-11:25 am,20,0,0,0,TBA,08/30-12/05,STBIO S2/2,Active
5502,BIOL,215,003,Tutorial,0.000,"Introduction to Ecology and Evolution.",W,02:35 pm-03:55 pm,20,0,0,0,TBA,08/30-12/05,STBIO S2/2,Active
5503,BIOL,215,004,Tutorial,0.000,"Introduction to Ecology and Evolution.",M,11:35 am-12:55 pm,20,0,0,0,TBA,08/30-12/05,STBIO S2/2,Active
,,,,,,,R,11:35 am-12:55 pm,,,,,TBA,11/30-11/30,STBIO S2/2,Active
5504,BIOL,215,005,Tutorial,0.000,"Introduction to Ecology and Evolution.",F,10:05 am-11:25 am,20,0,0,0,TBA,08/30-12/05,STBIO S2/2,Active
5505,BIOL,215,006,Tutorial,0.000,"Introduction to Ecology and Evolution.",T,02:35 pm-03:55 pm,20,0,0,0,TBA,08/30-12/05,STBIO S2/2,Active
5506,BIOL,215,007,Tutorial,0.000,"Introduction to Ecology and Evolution.",T,08:35 am-09:55 am,20,0,0,0,TBA,08/30-12/05,STBIO S2/2,Active
5507,BIOL,215,008,Tutorial,0.000,"Introduction to Ecology and Evolution.",T,01:05 pm-02:25 pm,20,0,0,0,TBA,08/30-12/05,STBIO S2/2,Active
5508,BIOL,215,009,Tutorial,0.000,"Introduction to Ecology and Evolution.",M,08:35 am-09:55 am,20,0,0,0,TBA,08/30-12/05,STBIO S2/2,Active
,,,,,,,R,08:35 am-09:55 am,,,,,TBA,11/30-11/30,STBIO S2/2,Active
5509,BIOL,215,010,Tutorial,0.000,"Introduction to Ecology and Evolution.",M,10:05 am-11:25 am,20,0,0,0,TBA,08/30-12/05,STBIO S2/2,Active
,,,,,,,R,10:05 am-11:25 am,,,,,TBA,11/30-11/30,STBIO S2/2,Active
5510,BIOL,215,011,Tutorial,0.000,"Introduction to Ecology and Evolution.",M,01:05 pm-02:25 pm,20,0,0,0,TBA,08/30-12/05,STBIO S2/2,Active
,,,,,,,R,01:05 pm-02:25 pm,,,,,TBA,11/30-11/30,STBIO S2/2,Active
7640,BIOL,215,012,Midterm Exam,0.000,"Introduction to Ecology and Evolution.",R,06:05 pm-08:55 pm,0,0,0,0,TBA,10/19-10/19,LEA 132,Registration Not Required
1464,BIOL,219,001,Lecture,4.000,"Introduction to Physical Molecular and Cell Biology.",MWF,10:35 am-11:25 am,75,0,0,0,"Adam Gerald Hendricks, Rodrigo Reyes Lamothe, Alanna Jean Watt",08/30-12/04,STBIO N2/2,Active
,,,,,,,R,10:35 am-11:25 am,,,,,"Adam Gerald Hendricks, Rodrigo Reyes Lamothe, Alanna Jean Watt",11/30-11/30,STBIO N2/2,Active
1465,BIOL,219,002,Tutorial,0.000,"Introduction to Physical Molecular and Cell Biology.",R,04:35 pm-05:25 pm,30,0,0,0,TBA,08/30-11/29,STBIO S3/3,Active
,,,,,,,R,04:35 pm-05:25 pm,,,,,TBA,12/01-12/05,STBIO S3/3,Active
1466,BIOL,219,003,Tutorial,0.000,"Introduction to Physical Molecular and Cell Biology.",R,04:35 pm-05:25 pm,30,0,0,0,TBA,08/30-11/29,ENGTR 2100,Active
,,,,,,,R,04:35 pm-05:25 pm,,,,,TBA,12/01-12/05,ENGTR 2100,Active
1467,BIOL,219,004,Tutorial,0.000,"Introduction to Physical Molecular and Cell Biology.",T,04:35 pm-05:25 pm,30,0,0,0,TBA,08/30-12/05,EDUC 216,Active
1468,BIOL,219,005,Tutorial,0.000,"Introduction to Physical Molecular and Cell Biology.",F,04:35 pm-05:25 pm,30,0,0,0,TBA,08/30-12/05,LEA 14,Active
1469,BIOL,300,001,Lecture,3.000,"Molecular Biology of the Gene.",MWF,01:35 pm-02:25 pm,130,10,0,10,"Frieder Bernd Schöck, Nam Sung Moon",08/30-12/04,DUFF THTR 1,Active
,,,,,,,R,01:35 pm-02:25 pm,,,,,"Frieder Bernd Schöck, Nam Sung Moon",11/30-11/30,DUFF THTR 1,Active
7637,BIOL,300,002,Midterm Exam,0.000,"Molecular Biology of the Gene.",W,06:35 pm-08:55 pm,0,0,0,0,TBA,10/04-10/04,ADAMS AUD,Registration Not Required
1470,BIOL,301,001,Lecture,4.000,"Cell and Molecular Laboratory.",F,03:35 pm-04:25 pm,208,0,0,0,"Maxime Leroux, Rodrigo Reyes Lamothe, Paul Martin Harrison",08/30-12/01,MAASS 112,Active
1471,BIOL,301,002,Laboratory,0.000,"Cell and Molecular Laboratory.",M,01:35 pm-07:25 pm,52,0,0,0,"Maxime Leroux",08/30-12/05,STBIO N4/2,Active
,,,,,,,R,01:35 pm-07:25 pm,,,,,"Maxime Leroux",11/30-11/30,STBIO N4/2,Active
1472,BIOL,301,003,Laboratory,0.000,"Cell and Molecular Laboratory.",T,01:35 pm-07:25 pm,52,0,0,0,"Maxime Leroux",08/30-12/05,STBIO N4/2,Active
1473,BIOL,301,004,Laboratory,0.000,"Cell and Molecular Laboratory.",W,01:35 pm-07:25 pm,52,0,0,0,"Maxime Leroux",08/30-12/05,STBIO N4/2,Active
1474,BIOL,301,005,Laboratory,0.000,"Cell and Molecular Laboratory.",R,01:35 pm-07:25 pm,52,0,0,0,"Maxime Leroux",08/30-11/29,STBIO N4/2,Active
,,,,,,,R,01:35 pm-07:25 pm,,,,,"Maxime Leroux",12/01-12/05,STBIO N4/2,Active
1475,BIOL,302,001,Lecture,3.000,"Fundamentals of Genetics and Genomics.",MWF,10:35 am-11:25 am,125,10,0,10,"Tamara Lynn Western, Daniel J Schoen, Paul Lasko",08/30-12/04,MAASS 10,Active
,,,,,,,R,10:35 am-11:25 am,,,,,"Tamara Lynn Western, Daniel J Schoen, Paul Lasko",11/30-11/30,MAASS 10,Active
1476,BIOL,302,002,Conference,0.000,"Fundamentals of Genetics and Genomics.",T,12:35 pm-01:25 pm,25,0,0,0,"Paul Lasko, Daniel J Schoen",08/30-12/05,STBIO N5/1,Registration Not Required
1477,BIOL,302,003,Conference,0.000,"Fundamentals of Genetics and Genomics.",M,04:35 pm-05:25 pm,25,0,0,0,"Paul Lasko, Daniel J Schoen",08/30-12/05,STBIO N5/1,Registration Not Required
,,,,,,,R,04:35 pm-05:25 pm,,,,,"Paul Lasko, Daniel J Schoen",11/30-11/30,STBIO N5/1,Registration Not Required
1478,BIOL,302,004,Conference,0.000,"Fundamentals of Genetics and Genomics.",M,08:35 am-09:25 am,25,0,0,0,"Paul Lasko, Daniel J Schoen",08/30-12/05,STBIO N5/1,Registration Not Required
,,,,,,,R,08:35 am-09:25 am,,,,,"Paul Lasko, Daniel J Schoen",11/30-11/30,STBIO N5/1,Registration Not Required
1479,BIOL,302,005,Conference,0.000,"Fundamentals of Genetics and Genomics.",M,12:35 pm-01:25 pm,25,0,0,0,TBA,08/30-12/05,STBIO N5/1,Registration Not Required
,,,,,,,R,12:35 pm-01:25 pm,,,,,TBA,11/30-11/30,STBIO N5/1,Registration Not Required
1480,BIOL,302,006,Conference,0.000,"Fundamentals of Genetics and Genomics.",M,11:35 am-12:25 pm,25,0,0,0,TBA,08/30-12/05,STBIO N5/1,Registration Not Required
,,,,,,,R,11:35 am-12:25 pm,,,,,TBA,11/30-11/30,STBIO N5/1,Registration Not Required
1481,BIOL,302,007,Conference,0.000,"Fundamentals of Genetics and Genomics.",M,02:35 pm-03:25 pm,25,0,0,0,TBA,08/30-12/05,STBIO N5/1,Registration Not Required
,,,,,,,R,02:35 pm-03:25 pm,,,,,TBA,11/30-11/30,STBIO N5/1,Registration Not Required
7641,BIOL,302,008,Midterm Exam,0.000,"Fundamentals of Genetics and Genomics.",W,06:35 pm-09:25 pm,0,0,0,0,TBA,10/25-10/25,LEA 132,Registration Not Required
1482,BIOL,304,001,Lecture,3.000,"Evolution.",MWF,03:35 pm-04:25 pm,60,6,0,6,"Andrew Hendry, Ehab Abouheif, Hans Carl Erling Larsson",08/30-09/07,MCMED 1027,Active
,,,,,,,MWF,03:35 pm-04:25 pm,,,,,"Andrew Hendry, Ehab Abouheif, Hans Carl Erling Larsson",09/08-12/04,BIRKS 203,Active
,,,,,,,R,03:35 pm-04:25 pm,,,,,"Andrew Hendry, Ehab Abouheif, Hans Carl Erling Larsson",11/30-11/30,BIRKS 203,Active
1483,BIOL,304,002,Laboratory,0.000,"Evolution.",TBA,TBA,0,0,0,0,TBA,08/30-12/05,TBA,Cancelled
1484,BIOL,304,003,Laboratory,0.000,"Evolution.",TBA,TBA,0,0,0,0,TBA,08/30-12/05,TBA,Cancelled
8189,BIOL,304,004,Midterm Exam,0.000,"Evolution.",F,03:35 pm-04:25 pm,0,0,0,0,"Andrew Hendry",09/29-09/29,STBIO S3/3,Registration Not Required
1485,BIOL,306,001,Lecture,3.000,"Neural Basis of Behaviour.",MWF,02:35 pm-03:25 pm,250,20,0,20,"Jon Sakata, Joseph Alan Dent",08/30-12/04,SADB M-1,Active
,,,,,,,R,02:35 pm-03:25 pm,,,,,"Jon Sakata, Joseph Alan Dent",11/30-11/30,SADB M-1,Active
7642,BIOL,306,002,Midterm Exam,0.000,"Neural Basis of Behaviour.",M,06:35 pm-09:25 pm,0,0,0,0,TBA,10/30-10/30,LEA 132,Registration Not Required
,,,,,,,M,06:35 pm-09:25 pm,,,,,TBA,10/30-10/30,LEA 219,Registration Not Required
1486,BIOL,308,001,Lecture,3.000,"Ecological Dynamics.",MW,08:35 am-09:55 am,100,0,0,0,"Frederic Guichard",08/30-12/04,STBIO S3/3,Active
,,,,,,,R,08:35 am-09:55 am,,,,,"Frederic Guichard",11/30-11/30,STBIO S3/3,Active
1487,BIOL,308,002,Tutorial,0.000,"Ecological Dynamics.",W,10:35 am-12:25 pm,35,0,0,0,"Frederic Guichard",08/30-12/05,STBIO S3/4,Active
1488,BIOL,308,003,Tutorial,0.000,"Ecological Dynamics.",F,08:35 am-10:25 am,35,0,0,0,"Frederic Guichard",08/30-12/05,STBIO S3/4,Active
1489,BIOL,308,004,Tutorial,0.000,"Ecological Dynamics.",M,11:35 am-01:25 pm,35,0,0,0,"Frederic Guichard",08/30-12/05,STBIO S3/4,Active
,,,,,,,R,11:35 am-01:25 pm,,,,,"Frederic Guichard",11/30-11/30,STBIO S3/4,Active
1490,BIOL,309,001,Lecture,3.000,"Mathematical Models in Biology.",TR,11:35 am-12:55 pm,70,10,0,10,"Gil Bub",08/30-11/29,ENGTR 1090,Active
,,,,,,,TR,11:35 am-12:55 pm,,,,,"Gil Bub",12/01-12/05,ENGTR 1090,Active
7639,BIOL,309,002,Optional Tutorial,0.000,"Mathematical Models in Biology.",F,02:35 pm-03:55 pm,0,0,0,0,TBA,09/22-12/05,STBIO S3/4,Registration Not Required
1491,BIOL,316,001,Lecture,3.000,"Biomembranes and Organelles.",TR,02:35 pm-03:55 pm,25,5,0,5,"Huanquan Zheng",08/30-11/29,STBIO N5/1,Active
,,,,,,,TR,02:35 pm-03:55 pm,,,,,"Huanquan Zheng",12/01-12/05,STBIO N5/1,Active
7734,BIOL,343,001,Lecture,3.000,"Biodiversity in the Caribean.",,TBA,20,0,0,0,"Brian Leung, Virginie Sabine Millien",10/10-10/25,TBA,Active
1493,BIOL,377,001,Project,3.000,"Independent Reading Project.",TBA,TBA,30,0,0,0,TBA,08/30-12/05,TBA,Active
1494,BIOL,395,001,Seminar,1.000,"Quantitative Biology Seminar.",T,04:35 pm-05:25 pm,75,7,0,7,"Ehab Abouheif, Laura Jo Pollock, Brian Leung, Andrew Hendry, Arnold Ludwig Hayer, Abigail Gerhold, Gregor Florian Fussmann, Frederic Guichard, Paul William Wiseman, Claudia Kleinman, Marlene H Oeffinger, Shelton Michael Hendricks",08/30-12/05,STBIO S3/3,Active
1495,BIOL,396,001,Project,3.000,"Undergraduate Research Project.",TBA,TBA,25,0,0,0,TBA,08/30-12/05,TBA,Active
1496,BIOL,413,001,Project,1.000,"Directed Reading.",TBA,TBA,30,0,0,0,TBA,08/30-12/05,TBA,Active
1497,BIOL,414,001,Lecture,3.000,"Invertebrate Brain Circuits and Behaviours.",M,01:35 pm-03:25 pm,30,5,0,5,"Tomoko Oyama",08/30-12/04,LEA 210,Active
,,,,,,,W,08:35 am-09:25 am,,,,,"Tomoko Oyama",08/30-12/01,STBIO S3/4,Active
,,,,,,,R,01:35 pm-03:25 pm,,,,,"Tomoko Oyama",11/30-11/30,LEA 210,Active
1498,BIOL,432,001,Lecture,3.000,"Limnology.",MTR,10:35 am-11:25 am,27,5,0,5,"Lars Lonsmann Iversen, Irene Gregory-Eaves",08/30-12/05,STBIO S3/4,Active
1499,BIOL,465,001,Lecture,3.000,"Conservation Biology.",TR,08:35 am-09:55 am,80,9,0,9,"Lauren J. Chapman",08/30-11/29,MAASS 217,Active
,,,,,,,TR,08:35 am-09:55 am,,,,,"Lauren J. Chapman",10/24-10/26,STBIO N7/1,Active
,,,,,,,TR,08:35 am-09:55 am,,,,,"Lauren J. Chapman",12/01-12/05,MAASS 217,Active
1500,BIOL,466,001,Project,3.000,"Independent Research Project 1.",,TBA,35,0,0,0,TBA,08/30-12/05,TBA,Active
1501,BIOL,467,001,Project,3.000,"Independent Research Project 2.",,TBA,35,0,0,0,TBA,08/30-12/05,TBA,Active
1502,BIOL,468,001,Project,6.000,"Independent Research Project 3.",,TBA,35,0,0,0,TBA,08/30-12/05,TBA,Active
5776,BIOL,468D1,001,Project,3.000,"Independent Research Project 3.",,TBA,35,0,0,0,TBA,08/30-12/05,TBA,Active
1157,BIOL,468D2,001,Project,3.000,"Independent Research Project 3.",,TBA,5,0,0,0,TBA,08/30-12/05,NOROOM NEEDED,Active
6123,BIOL,468D2,002,Project,3.000,"Independent Research Project 3.",TBA,TBA,10,0,0,0,TBA,08/30-12/05,TBA,Active
1503,BIOL,469,001,Project,9.000,"Independent Research Project 4.",,TBA,30,0,0,0,TBA,08/30-12/05,TBA,Active
5777,BIOL,469D1,001,Project,4.500,"Independent Research Project 4.",,TBA,35,0,0,0,TBA,08/30-12/05,TBA,Active
5778,BIOL,479D1,001,Project,4.500,"Honours Research Project 1.",,TBA,30,0,0,0,TBA,08/30-12/05,TBA,Active
5779,BIOL,480D1,001,Project,6.000,"Honours Research Project 2.",,TBA,0,0,0,0,TBA,08/30-12/05,TBA,Cancelled
5780,BIOL,499D1,001,Conference,2.000,"Honours Seminar in Biology.",T,03:05 pm-04:25 pm,40,0,0,0,"Jon Sakata",08/30-12/05,STBIO S3/4,Active
,,,,,,,T,03:05 pm-04:25 pm,,,,,"Jon Sakata",10/05-12/05,MCMED 204,Active
1504,BIOL,506,001,Seminar,3.000,"Neurobiology of Learning.",TR,11:35 am-12:55 pm,18,6,0,6,"Blake Richards, Yang Zhou, Edward Scott Ruthazer, Aparna Suvrathan, Wayne Steven Sossin, Per Jesper Sjostrom, Shelton Michael Hendricks",08/30-11/29,STBIO S2/2,Active
,,,,,,,TR,11:35 am-12:55 pm,,,,,"Blake Richards, Yang Zhou, Edward Scott Ruthazer, Aparna Suvrathan, Wayne Steven Sossin, Per Jesper Sjostrom, Shelton Michael Hendricks",12/01-12/05,STBIO S2/2,Active
1505,BIOL,524,001,Seminar,3.000,"Topics in Molecular Biology.",M,02:35 pm-05:25 pm,14,4,0,4,"David Dankort, Hugh Clarke",08/30-12/04,STBIO S2/2,Active
,,,,,,,R,02:35 pm-05:25 pm,,,,,"David Dankort, Hugh Clarke",11/30-11/30,STBIO S2/2,Active
1506,BIOL,546,001,Seminar,3.000,"Genetics of Model Systems.",F,08:35 am-11:25 am,12,4,0,4,"Siegfried Hekimi",08/30-12/01,LEA 116,Active
1507,BIOL,565,001,Lecture,3.000,"Cell and Tissue Mechanobiology.",TR,01:05 pm-02:25 pm,18,3,0,3,"Arnold Ludwig Hayer",08/30-11/29,STBIO S3/4,Active
,,,,,,,TR,01:05 pm-02:25 pm,,,,,"Arnold Ludwig Hayer",12/01-12/05,STBIO S3/4,Active
1508,BIOL,575,001,Lecture,3.000,"Human Biochemical Genetics.",TR,08:35 am-09:55 am,25,5,0,5,"Thomas Kitzler, Jacques Jean Guy Genest, Gary A.B. Armstrong, Nancy Elise Braverman, Pierre Moffatt, David Watkins, Karen Elizabeth Christensen, Miltiadis Paliouras, Eric Alan Shoubridge",08/30-11/29,STBIO N5/1,Active
,,,,,,,TR,08:35 am-09:55 am,,,,,"Thomas Kitzler, Jacques Jean Guy Genest, Gary A.B. Armstrong, Nancy Elise Braverman, Pierre Moffatt, David Watkins, Karen Elizabeth Christensen, Miltiadis Paliouras, Eric Alan Shoubridge",12/01-12/05,STBIO N5/1,Active
1509,BIOL,588,001,Lecture,3.000,"Advances in Molecular/Cellular Neurobiology.",R,01:05 pm-02:25 pm,20,0,0,0,"Kenneth E M Hastings, Peter Scott McPherson, Yang Zhou, Jean-Francois Poulin, Arjun Krishnaswamy",08/30-11/29,STBIO S2/2,Active
1510,BIOL,588,002,Seminar,0.000,"Advances in Molecular/Cellular Neurobiology.",W,02:35 pm-03:55 pm,10,0,0,0,"Kenneth E M Hastings, Peter Scott McPherson, Yang Zhou, Jean-Francois Poulin, Arjun Krishnaswamy",08/30-12/05,STBIO N5/1,Active
1511,BIOL,588,003,Seminar,0.000,"Advances in Molecular/Cellular Neurobiology.",W,01:05 pm-02:25 pm,10,0,0,0,"Kenneth E M Hastings, Peter Scott McPherson, Yang Zhou, Jean-Francois Poulin, Arjun Krishnaswamy",08/30-12/05,STBIO N5/1,Active
1512,BIOL,592,001,Lecture,3.000,"Integrated Bioinformatics.",TR,10:05 am-11:25 am,25,5,0,5,"Paul Martin Harrison",08/30-11/29,STBIO N5/1,Active
,,,,,,,TR,10:05 am-11:25 am,,,,,"Paul Martin Harrison",12/01-12/05,STBIO N5/1,Active
1513,BIOL,601,001,Lecture,1.500,"Introduction to Graduate Studies in Biology.",T,11:35 am-12:55 pm,38,5,0,5,"Fiona Marie Brydone Soper, Abigail Gerhold",08/30-12/05,STBIO S3/4,Active
,,,,,,,F,01:05 pm-02:25 pm,,,,,"Fiona Marie Brydone Soper, Abigail Gerhold",11/17-11/17,STBIO N5/1,Active
,,,,,,,T,11:35 am-12:55 pm,,,,,"Fiona Marie Brydone Soper, Abigail Gerhold",11/28-11/28,MCMED 1027,Active
,,,,,,,T,11:35 am-12:55 pm,,,,,"Fiona Marie Brydone Soper, Abigail Gerhold",12/05-12/05,MCMED 1027,Active
1514,BIOL,632,001,Lecture,3.000,"Advanced Limnology.",MTR,10:35 am-11:25 am,3,1,0,1,"Irene Gregory-Eaves, Lars Lonsmann Iversen",08/30-12/05,STBIO S3/4,Active
8229,BIOL,650,001,Lecture,3.000,"Recent Advances in Biology 1.",,TBA,1,0,0,0,"Irene Gregory-Eaves",08/30-12/05,TBA,Active
8346,BIOL,650,002,Lecture,3.000,"Recent Advances in Biology 1.",,TBA,5,0,0,0,"Virginie Sabine Millien",08/30-12/05,TBA,Active
8138,BIOL,651,001,Lecture,3.000,"Recent Advances in Biology 2.",,TBA,15,0,0,0,"Laura Jo Pollock, Jennifer M. Sunday",08/30-12/05,TBA,Active
8016,BIOL,651,002,Lecture,3.000,"Recent Advances in Biology 2.",TBA,TBA,5,0,0,0,TBA,08/30-12/05,TBA,Active
8347,BIOL,652,001,Lecture,3.000,"Recent Advances in Biology 3.",,TBA,5,0,0,0,"Jennifer M. Sunday",08/30-12/05,TBA,Active
8403,BIOL,655,001,Project,3.000,"Laboratory Projects and Techniques 1.",,TBA,2,0,0,0,TBA,08/30-12/05,TBA,Active
1515,BIOL,697,001,Thesis Course,13.000,"Master's Thesis Research 1.",TBA,TBA,30,0,0,0,TBA,08/30-12/05,TBA,Active
1516,BIOL,698,001,Thesis Course,13.000,"Master's Thesis Research 2.",TBA,TBA,30,0,0,0,TBA,08/30-12/05,TBA,Active
1517,BIOL,699,001,Thesis Course,13.000,"Master's Thesis Research 3.",TBA,TBA,30,0,0,0,TBA,08/30-12/05,TBA,Active
1518,BIOL,700,001,Thesis Course,0.000,"Doctoral Qualifying Examination.",TBA,TBA,20,0,0,0,TBA,08/30-12/05,TBA,Active
1519,BIOL,702,001,Seminar,6.000,"Ph.D. Seminar.",,TBA,10,0,0,0,TBA,08/30-12/05,TBA,Active
Biostatistics
CRN,Subject,Course,Section,Type,Credits,Title,Days,Time,Capacity,WL Capacity,WL Actual,WL Remaining,Instructor,Date (MM//DD),Location,Status
1520,BIOS,601,001,Lecture,4.000,"Epidemiology: Introduction and Statistical Models.",MW,12:35 pm-02:25 pm,23,0,0,0,"James Anthony Hanley",08/30-12/04,MC2001 1140,Active
,,,,,,,R,12:35 pm-02:25 pm,,,,,"James Anthony Hanley",11/30-11/30,MC2001 1140,Active
1521,BIOS,612,001,Lecture,4.000,"Advanced Generalized Linear Models.",TR,02:35 pm-04:25 pm,15,0,0,0,"Shirin Golchi",08/30-11/29,MC2001 1135,Active
,,,,,,,TR,02:35 pm-04:25 pm,,,,,"Shirin Golchi",12/01-12/05,MC2001 1135,Active
1522,BIOS,624,001,Lecture,4.000,"Data Analysis and Report Writing.",MW,01:35 pm-03:25 pm,15,0,0,0,"Andrea Benedetti",08/30-12/04,MC2001 1203,Active
,,,,,,,R,01:35 pm-03:25 pm,,,,,"Andrea Benedetti",11/30-11/30,MC2001 1203,Active
1523,BIOS,630,001,Project,6.000,"Research Project/Practicum in Biostatistics.",,TBA,15,0,0,0,TBA,08/30-12/05,TBA,Active
5781,BIOS,630D1,001,Project,3.000,"Research Project/Practicum in Biostatistics.",,TBA,5,0,0,0,TBA,08/30-12/05,TBA,Active
1524,BIOS,690,001,Thesis Course,21.000,"M.Sc. Thesis.",,TBA,5,0,0,0,TBA,08/30-12/05,TBA,Active
1525,BIOS,694,001,Lecture,4.000,"Special Topics in Biostatistics 4.",MW,11:35 am-01:25 pm,15,0,0,0,"Qihuang Zhang",08/30-12/04,MC2001 1203,Active
,,,,,,,R,11:35 am-01:25 pm,,,,,"Qihuang Zhang",11/30-11/30,MC2001 1203,Active
5782,BIOS,702D1,001,Seminar,0.000,"Ph.D. Proposal.",M,08:35 am-11:25 am,10,0,0,0,"Erica E.M. Moodie",08/30-12/05,MC2001 1203,Active
,,,,,,,R,08:35 am-11:25 am,,,,,"Erica E.M. Moodie",11/30-11/30,MC2001 1203,Active
Biotechnology
CRN,Subject,Course,Section,Type,Credits,Title,Days,Time,Capacity,WL Capacity,WL Actual,WL Remaining,Instructor,Date (MM//DD),Location,Status
1526,BIOT,505,001,Lecture,3.000,"Selected Topics in Biotechnology.",F,02:35 pm-05:25 pm,128,0,0,0,"David Noble Harpp",08/30-12/01,MAASS 10,Active
Biomedical Engineering
CRN,Subject,Course,Section,Type,Credits,Title,Days,Time,Capacity,WL Capacity,WL Actual,WL Remaining,Instructor,Date (MM//DD),Location,Status
1527,BMDE,501,001,Lecture,3.000,"Selected Topics in Biomedical Engineering.",MW,01:05 pm-02:25 pm,22,0,0,0,"Danilo Bzdok",08/30-12/04,DUFF 321,Active
,,,,,,,R,01:05 pm-02:25 pm,,,,,"Danilo Bzdok",11/30-11/30,DUFF 321,Active
1528,BMDE,503,001,Lecture,3.000,"Biomedical Instrumentation.",TR,01:05 pm-02:25 pm,16,0,0,0,"Ross Wagner",08/30-11/29,DUFF 321,Active
,,,,,,,TR,01:05 pm-02:25 pm,,,,,"Ross Wagner",12/01-12/05,DUFF 321,Active
1099,BMDE,507,001,Lecture,3.000,"Formulation and Delivery of Biotherapeutics.",MW,02:35 pm-03:55 pm,20,0,0,0,"Guojun Chen",08/30-12/04,DUFF 321,Active
1529,BMDE,508,001,Lecture,3.000,"Introduction to Micro and Nano-Bioengineering.",T,09:35 am-11:25 am,20,0,0,0,"David Juncker",08/30-12/05,DUFF 321,Active
,,,,,,,R,09:35 am-10:25 am,,,,,"David Juncker",08/30-11/29,DUFF 321,Active
1530,BMDE,512,001,Lecture,3.000,"Finite-Element Modelling in Biomedical Engineering.",MW,10:05 am-11:25 am,20,0,0,0,"W Robert J Funnell",08/30-12/04,DUFF 321,Active
,,,,,,,R,10:05 am-11:25 am,,,,,"W Robert J Funnell",11/30-11/30,DUFF 321,Active
1531,BMDE,519,001,Lecture,3.000,"Biomedical Signals and Systems.",W,04:05 pm-05:55 pm,25,0,0,0,"Robert E Kearney",08/30-12/01,DUFF 321,Active
1532,BMDE,520,001,Lecture,3.000,"Machine Learning for Biomedical Data.",T,02:35 pm-05:25 pm,35,0,0,0,"Danilo Bzdok",08/30-12/05,EDUC 624,Active
7897,BMDE,521,001,Lecture,3.000,"Computational Methods Single-Cell Analytics.",W,08:35 am-11:25 am,5,0,0,0,"Jun Ding",08/30-12/01,SH680 1261,Active