-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwikis.html
More file actions
1321 lines (1293 loc) · 129 KB
/
wikis.html
File metadata and controls
1321 lines (1293 loc) · 129 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US"><!-- InstanceBegin template="/Templates/page_no_menu.dwt.php" codeOutsideHTMLIsLocked="false" -->
<head>
<!-- InstanceBeginEditable name="doctitle" -->
<title>NESCent: The National Evolutionary Synthesis Center</title>
<script language="javascript" src="scripts/ajax.js"></script>
<script language="javascript">
<!-- InstanceEndEditable -->
<meta http-equiv="Content-Language" content="en-us" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Style-Type" content="text/css"/>
<meta http-equiv="content-script-type" content="applicationx-javascript"/>
<!--Futura Fonts-->
<script type="text/javascript" src="//fast.fonts.com/jsapi/945a5566-272e-404d-b831-73f880c7dd6e.js"></script>
<link href="//fast.fonts.com/cssapi/945a5566-272e-404d-b831-73f880c7dd6e.css" rel="stylesheet" type="text/css" />
<!--[if IE 6]>
<link href="scripts/styleie6.css" rel="stylesheet" type="text/css" />
<![endif]-->
<!--[if IE 7]>
<link href="scripts/styleie7.css" rel="stylesheet" type="text/css" />
<![endif]-->
<!--[if IE 8]>
<link href="scripts/style.css" rel="stylesheet" type="text/css" />
<![endif]-->
<!--[if IE 9]>
<link href="scripts/style.css" rel="stylesheet" type="text/css" />
<![endif]-->
<!--[if !IE]><!-->
<link href="/scripts/style.css" rel="stylesheet" type="text/css" media="screen" />
<!--<![endif]-->
<!--[if lt IE 7]>
<script defer type="text/javascript" src="scripts/pngfix.js"></script>
<![endif]-->
<link href="include/lightbox.css" rel="stylesheet" type="text/css" media="screen" />
<script type="text/javascript" src="include/lightbox.js"></script>
<link rel="stylesheet" type="text/css" href="include/home/engine2/home.css" media="screen" />
<style type="text/css">a#vlb{display:none}</style>
<script type="text/javascript" src="include/jquery.js"></script>
<link rel="stylesheet" href="scripts/print.css" type="text/css" media="print" />
<!--[if lt IE 7]><link href="scripts/style_ie.css" rel="stylesheet" type="text/css" media="screen" /><![endif]-->
<script type="text/javascript">
<!--
document.write('<style type="text/css">.no_js {display:none;}<\/style>');
-->
</script>
<link rel="stylesheet" type="text/css" href="scripts/superfish.css" media="screen"/>
<script type="text/javascript" src="scripts/hoverIntent.js"></script>
<script type="text/javascript" src="scripts/superfish.js"></script>
<script type="text/javascript">
jQuery(function(){
jQuery('ul.sf-menu').superfish();
});
</script>
<!-- InstanceBeginEditable name="head" --><!-- InstanceEndEditable -->
</head>
<body>
<br />
<div id="pagewrapper">
<div id="logo_wrap">
<br /><!-- add some space-->
<div id="topbar">
<!--Page header for all pages JNewman AIBS NESCent Re-design 7-2011-->
<form name="header_search" action="http://www.google.com/search" method="get">
<!--Label for Search-->
<input class="form_text" style="height:20px;margin-right:-5px;border:1px solid #BBBBBB;" id="as_q" name="as_q" type="text" alt="Search Box" value="search NESCent site" size="24" onfocus="this.value=''"/> <a href="wikis.html#" name="searchButtonSubmit" onclick="document.forms.header_search.submit(); return false;"><img src="images/go_button.gif" width="28" height="24"border="0" alt="SEARCH" /></a>
<!--end label -->
<input type="hidden" name="num" value="80" />
<input type="hidden" name="as_sitesearch" value="www.nescent.org" />
</form>
<br />
<!--Top Navbar-->
<!--<div id="topbar">-->
<ul>
<li><a href="about/index.html">about</a></li>
<li><a href="dir/index.html">people</a></li>
<li><a href="news/index.html">news</a></li>
<li><a href="about/contact.php.html">contact</a></li>
<!-- <li><a href=" http://www.gifts.duke.edu/nescent"><span style="color:red;">donate</span></a></li> -->
<!--<li><a href="sitemap.php.html">search</a></li>-->
</ul>
<div id="topbar_line"> <!--empty--></div>
<!--</div>-->
<!--<div style="clear:both;"> </div>-->
<!--End TopNav bar-->
</div>
<div id="logo_left">
<!--<a href="/"><img id="logo" src="images/logo.png" alt="The National Evolutionary Synthesis Center" /></a>-->
<a href="http://tricem.org"><img id="logo" src="images/nescent_becoming_tricem.png" alt="The National Evolutionary Synthesis Center" /></a>
</div>
</div>
<div class="clear"></div>
<div id="content"><a name="startcontent"></a><!-- InstanceBeginEditable name="content" -->
<a name="startmenu"></a>
<div id="menu">
<!--Module to display the main navigation on the Landing pages and Interal pages-->
<!--Main Nav Level-->
<ul class="sf-menu">
<li style="background-color:#FF7F00;line-height:1.0;"><a href="science/index.html" style="font-size:28px;" >SCIENCE</a>
<ul style="background-color:#FF7F00;font-size:23px;line-height:-2.0">
<li><a href="science/overview.php.html" title="Overview">Overview</a></li>
<li><a href="science/proposals.php.html" title="Call for proposals">Call for proposals</a></li>
<li><a href="science/awards.php.html" title="Supported projects">Supported projects</a></li>
<li><a href="science/products.php.html" title="Products">Products</a></li>
<li><a href="wikis.html#">Quick jumps</a>
<ul style="background-color:#FF7F00;font-size:23px;line-height:-2.0">
<!--<li><a href="http://kaboodle.nescent.org" title="Kaboodle">Kaboodle</a></li>-->
<li><a href="science/sos.php.html" title="Science of Science Project">Science of Science Project</a></li>
</ul>
</li>
</ul>
</li>
<li style="background-color:#00A330;line-height:1.0;border-left:2px solid #ffffff;border-right:2px solid #ffffff;"0><a href="informatics/index.html" style="font-size:28px;">INFORMATICS</a>
<ul style="background-color:#00A330;font-size:23px;line-height:-2.0;">
<li><a href="informatics/overview.php.html" title="Overview">Overview</a></li>
<li><a href="informatics/initiatives.php.html" title="Informatics Major Initiatives">Major initiatives</a></li>
<li><a href="informatics/whitepapers.php.html" title=" Informatics White Papers">White papers</a></li>
<li><a href="informatics/policies.php.html" title="Informatics Polices">Policies</a></li>
<li><a href="informatics/products.php.html" title="Informatics Software and Databases">Software and Databases</a></li>
<li><a href="wikis.html#">Quick jumps</a>
<ul style="background-color:#00A330;font-size:21px;line-height:-2.0">
<li><a href="http://datadryad.org" target="_blank" title="Dayrad Data Repository">Dryad Data Repository</a></li>
<li><a href="http://phenoscape.org/" target="_blank" title="Phenoscape">Phenoscape</a></li>
<!--<li><a href="http://www.gmod.org/wiki/Main_Page" target="_blank" title="Generic Model Organism Database project">Generic Model Organism Database</a></li>-->
<!--<li><a href="http://dx.doi.org/10.5281/zenodo.19021/Main_Page" target="_blank"title="GARLI">GARLI</a></li>-->
<li><a href="http://informatics.nescent.org/wiki/Main_Page#Phyloinformatics_Summer_of_Code" target="_blank" title="Google Summer of Code Program">Google Summer of Code Program</a></li>
</ul>
</li>
</ul>
</li>
<li style="background-color:#333399;line-height:1.0;border-right:1px solid #333399;"><a href="eog/index.html" style="font-size:28px;" >EDUCATION & OUTREACH</a>
<ul style="background-color:#333399;font-size:23px;line-height:-2.0">
<li><a href="eog/overview.php.html" title="Overview">Overview</a></li>
<li><a href="eog/initiatives.php.html" title="Initiatives">Initiatives</a></li>
<li><a href="eog/resources.php.html" title="Education Resources">Education Resources</a></li>
<li><a href="eog/products.php.html" title="Products">Products</a></li>
<li><a href="courses/index.html" title="Courses">Courses</a></li>
<!--<li><a href="courses/proposals/index.html" title="Courses Call for Proposals">Call for course proposals</a></li>-->
<li><a href="wikis.html#">Quick jumps</a>
<ul style="background-color:#333399;font-size:21px;line_height:-2.0">
<!--<li><a href="https://academy.nescent.org/wiki/Main_Page" target="_blank" title="NESCent Academy">NESCent Academy</a></li>-->
<li><a href="http://filmfestival.nescent.org" title="Education and Outreach NESCent Evolution Film Festival">NESCent Evolution Film Festival</a></li>
<li><a href="http://ambassadors.nescent.org" title="NESCent Ambassador Programs">NESCent Ambassador Program</a></li>
<li><a href="http://roadshow.nescent.org" title="Datrwin Day Roadshow">Darwin Day Roadshow</a></li>
<li><a href="http://blogcontest.nescent.org" title="Evolution Blog Contest">Evolution Blog Contest</a></li>
</ul>
</li>
</ul>
</li>
</ul>
</div><!--end Menu-->
<div id="breadcrumbs">
<a href="index.html" title="Home">Home</a> > Wikis
</div><!--end bread crumbs-->
<a name=" start left side navigation"></a>
<div id="left_block">
<div id="amenu">
<ul>
<li><a href="about/index.html">About the Center</a></li>
<li><a href="about/partners.php.html">Partners</a></li>
<li><a href="about/employment.php.html">Employment</a></li>
<li><a href="about/information.php.html">Information for Visitors</a></li>
<li><a href="dir/index.html">People</a></li>
<li ><a href="about/contact.php.html">Contact Us</a></li>
<li><a href="about/directions.php.html">Driving Directions</a></li>
<li><a href="about/faq.php.html">FAQ</a></li>
</ul>
</div> <div id="right_block" style="margin-top:0px;">
<div id="right_line"><!--empty--></div>
<h3>Electronic resources for sponsored groups and meetings</h3>
<table><tr><td>
Search: <input type="text" name="search_string" onkeyup="javascript:queryWikis(this.value);" /></td><td> <div id="show_all" style="display:none; float:right"><a href="javascript:showAll()">show all</a></div></td></tr></table>
<p>
<div id="wiki_table">
<table width="100%" border="0">
<tr>
<th width="10%" >Short Name</th>
<th width="60%" >Working Group </th>
<th width="10%">Wiki</th>
<th width="10%">Email List</th>
<th width="10%">Email Archive</th>
<th width="10%">Email Password Reminder</th>
</tr>
<tr>
<td class="even" >courses_gmod_09</td>
<td class="even" >2009 GMOD Summer School</td>
<td class="even"><a href="/wg_courses_gmod_09"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td colspan=3 class="even"><table>
<tr>
<td colspan=3 class="even">GMOD course 2009 - America</tr>
<tr>
<td class="even"><a href="mailto:Gmod-course-2009-am@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/private/gmod-course-2009-am/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/options/gmod-course-2009-am"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td colspan=3 class="even">GMOD course 2009 - Europe</tr>
<tr>
<td class="even"><a href="mailto:Gmod-course-2009-eu@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/private/gmod-course-2009-eu/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/options/gmod-course-2009-am"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr></table></td>
<tr>
<td class="odd" >courses_gmod_10</td>
<td class="odd" >2010 GMOD Course</td>
<td class="odd"><a href="/wg_courses_gmod_10"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td colspan=3 class="odd"><table></table></td>
<tr>
<td class="even" >courses_gmod_11</td>
<td class="even" >2011 GMOD Course</td>
<td class="even"><a href="/wg_courses_gmod_11"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td colspan=3 class="even"><table></table></td>
<tr>
<td class="odd" >courses_gmod_12</td>
<td class="odd" >2012 GMOD Course</td>
<td class="odd"><a href="/wg_courses_gmod_12"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td colspan=3 class="odd"><table></table></td>
<tr>
<td class="even" >myelin</td>
<td class="even" >A new model for evolutionary innovation</td>
<td class="even"><a href="/wg_myelin"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="even"><a href="mailto:wg-myelin@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/private/wg-myelin/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/options/wg-myelin"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="odd" >modelselection</td>
<td class="odd" >A working group to solve problems in model selection and phylogeny in mixed multi-factor meta-analysis</td>
<td class="odd"><a href="/wg_modelselection"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:wg-modelselection@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/wg-modelselection/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/wg-modelselection"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >indo-pacific</td>
<td class="even" >Advancing genetic diversity research in the Indian and Pacific Oceans</td>
<td class="even"><a href="http://indo-pacific.wikispaces.com"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td colspan=3 class="even"><table></table></td>
<tr>
<td class="odd" >EvoEcoImmunology</td>
<td class="odd" >Advancing knowledge of evolutionary and ecological immunology</td>
<td class="odd"><a href="http://evoecoimmunology.wikispaces.com"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td colspan=3 class="odd"><table></table></td>
<tr>
<td class="even" >scientific-synthesis</td>
<td class="even" >Advancing Theory and Research on Scientific Synthesis</td>
<td class="even"><a href="http://scientific-synthesis.wikispaces.com"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td colspan=3 class="even"><table></table></td>
<tr>
<td class="odd" >sexualselectionspeciation</td>
<td class="odd" >An Integrative Evolutionary Approach to Examine Sexual Selection as a Mechanism of Speciation </td>
<td class="odd"><a href="/wg_sexualselectionspeciation"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:wg-sexualselectionspeciation@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/wg-sexualselectionspeciation/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/wg-sexualselectionspeciation/"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >iuegi</td>
<td class="even" >An integrative understanding of the evolution of genomic imprinting</td>
<td class="even"><a href="/wg_iuegi"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="even"><a href="mailto:wg-iuegi@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/private/wg-iuegi/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/options/wg-iuegi"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="odd" >courses_meta_analysis_09</td>
<td class="odd" >An Introduction to Meta-analysis in Ecology and Evolutionary Biology summer course</td>
<td class="odd"><a href="/wg_courses_meta_analysis_09"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:metaanalysis09@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/metaanalysis09/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/metaanalysis09"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >feeding</td>
<td class="even" >Analysis and Synthesis of Physiologic Data from the Mammalian Feeding Apparatus</td>
<td class="even"><a href="/wg_feeding"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="even"><a href="mailto:wg-feeding@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/private/wg-feeding/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/options/wg-feeding"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="odd" >AnthropogenicStimuli</td>
<td class="odd" >Anthropogenic Sensory Stimuli as Drivers of Evolution: A conceptual synthesis and roadmap for an integrated citizen-science research network</td>
<td class="odd"><a href="http://anthropogenicstimuli.wikispaces.com/"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td colspan=3 class="odd"><table></table></td>
<tr>
<td class="even" >bartol</td>
<td class="even" >AToL/CBOL Meeting</td>
<td class="even"><a href="/wg_bartol"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="even"><a href="mailto:wg-bartol@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/private/wg-bartol/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/options/wg-bartol"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="odd" >digitization</td>
<td class="odd" >Bio Collections Digitization Wiki</td>
<td class="odd"><a href="/wg_digitization"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:wg-digitization@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/wg-digitization/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/wg-digitization"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >non-model</td>
<td class="even" >Building non-model species genome curation communities</td>
<td class="even"><a href="http://non-model.wikispaces.com"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td colspan=3 class="even"><table></table></td>
<tr>
<td class="odd" >ems</td>
<td class="odd" >Building Tools for Emerging Model Systems in Development, Evolution, and Ecology</td>
<td class="odd"><a href="/wg_ems"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:wg-ems@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/wg-ems/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/wg-ems"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >supertree</td>
<td class="even" >Cetacea Supertree</td>
<td class="even"><a href="/wg_supertree"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td colspan=3 class="even"><table></table></td>
<tr>
<td class="odd" >cart</td>
<td class="odd" >Classification and Regression Tree (CART)</td>
<td class="odd"><a href="/wg_cart"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td colspan=3 class="odd"><table></table></td>
<tr>
<td class="even" >che</td>
<td class="even" >Communicating the Relevance of Human Evolution</td>
<td class="even"><a href="/wg_che"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="even"><a href="mailto:wg-che@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/private/wg-che/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/options/wg-che"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="odd" >summit</td>
<td class="odd" >Community Summit</td>
<td class="odd"><a href="/wg_summit"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:community_summit@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/community_summit/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/community_summit"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >cdao</td>
<td class="even" >Comparative Data Analysis Ontology</td>
<td class="even"><a href="/wg_cdao"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td colspan=3 class="even"><table></table></td>
<tr>
<td class="odd" >phyloinformatics</td>
<td class="odd" >Comparative Methods in R Hackathon</td>
<td class="odd"><a href="/wg_phyloinformatics"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:wg-rhack1@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/wg-rhack1/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/wg-rhack1"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >comphy</td>
<td class="even" >Computational Phyloinformatics Summer Course</td>
<td class="even"><a href="http://dx.doi.org/10.5281/zenodo.19024"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td colspan=3 class="even"><table>
<tr>
<td colspan=3 class="even">Instructors</tr>
<tr>
<td class="even"><a href="mailto:comphy-instructors@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/private/comphy-instructors/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/options/comphy-instructors"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td colspan=3 class="even">Students</tr>
<tr>
<td class="even"><a href="mailto:comphy-students@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/private/comphy-students/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/options/comphy-students"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr></table></td>
<tr>
<td class="odd" >comphy2009</td>
<td class="odd" >Computational Phyloinformatics Summer Course 2009</td>
<td class="odd"><a href="http://dx.doi.org/10.5281/zenodo.19024"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td colspan=3 class="odd"><table>
<tr>
<td colspan=3 class="odd">Computational Phyloinformatics Summer Course instructors 2009</tr>
<tr>
<td class="odd"><a href="mailto:comphy09-instructors@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/comphy09-instructors/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/comphy09-instructors"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td colspan=3 class="odd">Computational Phyloinformatics Summer Course students 2009</tr>
<tr>
<td class="odd"><a href="mailto:comphy09-students@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/comphy09-students/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/comphy09-students/"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr></table></td>
<tr>
<td class="even" >comphy2010</td>
<td class="even" >Computational Phyloinformatics Summer Course 2010</td>
<td class="even"><a href="http://dx.doi.org/10.5281/zenodo.19024"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td colspan=3 class="even"><table></table></td>
<tr>
<td class="odd" >comphy2011</td>
<td class="odd" >Computational Phyloinformatics Summer Course 2011</td>
<td class="odd"><a href="http://dx.doi.org/10.5281/zenodo.19024"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td colspan=3 class="odd"><table></table></td>
<tr>
<td class="even" >comphy2012</td>
<td class="even" >Computational Phyloinformatics Summer Course 2012</td>
<td class="even"><a href="http://dx.doi.org/10.5281/zenodo.19024"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td colspan=3 class="even"><table></table></td>
<tr>
<td class="odd" >plasticity</td>
<td class="odd" >Costs of Phenotypic Plasticity and Adaptation to Novel Environments </td>
<td class="odd"><a href="/wg_plasticity"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:wg-plasticity@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/wg-plasticity/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/wg-plasticity"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >collabsci</td>
<td class="even" >Cyberinfrastructure for Collaborative Science workshop</td>
<td class="even"><a href="/wg_collabsci"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="even"><a href="mailto:collabsci@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/private/collabsci/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/options/collabsci"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="odd" >histo</td>
<td class="odd" >Data Collection and Database Storage of Living and Fossil Hard Tissue Vertebrate Histology</td>
<td class="odd"><a href="/wg_histo"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:wg-histo@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/wg-histo/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/wg-histo"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >extinction</td>
<td class="even" >Determinants of extinction in ancient and modern seas</td>
<td class="even"><a href="/wg_extinction"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="even"><a href="mailto:wg-extinction@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/private/wg-extinction/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/options/wg-extinction/"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="odd" >taxondb21</td>
<td class="odd" >Developing & Integrating Taxonomic Databases For The 21st Century</td>
<td class="odd"><a href="/wg_taxondb21"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:wg-taxondb21@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/wg-taxondb21/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/wg-taxondb21"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >nescent-roadmap</td>
<td class="even" >Developing a Roadmap for The Future of Landscape Genomics</td>
<td class="even"><a href="http://nescent-roadmap.wikispaces.com"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td colspan=3 class="even"><table></table></td>
<tr>
<td class="odd" >biogeo</td>
<td class="odd" >Developing an integrative algorithmic method for historical biogeography</td>
<td class="odd"><a href="/wg_biogeo"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:wg-biogeo@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/wg-biogeo/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/wg-biogeo"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >poeciliid</td>
<td class="even" >Developing new model systems for evolutionary genomics using Poeciliid fishes</td>
<td class="even"><a href="/wg_poeciliid"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="even"><a href="mailto:wg-poeciliid@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/private/wg-poeciliid/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/options/wg-poeciliid"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="odd" >metaanalyses</td>
<td class="odd" >Development of a Novel Journal Concept for Evolutionary Meta-Analysis</td>
<td class="odd"><a href="/wg_metaanalyses"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:wg-metaanalyses@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/wg-metaanalyses/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/wg-metaanalyses"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >digitaldata</td>
<td class="even" >Digital Data Sharing And Registry Initiative</td>
<td class="even"><a href="http://wiki.datadryad.org/Main_Page"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="even"><a href="mailto:wg-digitaldata@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/private/wg-digitaldata/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/options/wg-digitaldata"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="odd" >domestication</td>
<td class="odd" >Domestication as an Evolutionary Phenomenon: Expanding the Synthesis</td>
<td class="odd"><a href="/wg_domestication"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:wg-domestication@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/wg-domestication/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/wg-domestication"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >e2biology</td>
<td class="even" >E2Biology Catalysis Meeting</td>
<td class="even"><a href="/wg_e2biology"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="even"><a href="mailto:wg-e2biology@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/private/wg-e2biology/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/options/wg-e2biology"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="odd" >hypsodonty</td>
<td class="odd" >Earth surface processes in the evolution of mammalian tooth shape</td>
<td class="odd"><a href="/wg_hypsodonty"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:wg-hypsodonty@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/wg-hypsodonty/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/wg-hypsodonty"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >sexchromosomes</td>
<td class="even" >Emergence of gender and sex chromosomes: evolutionary insights from a diversity of taxa</td>
<td class="even"><a href="/wg_sexchromosomes"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="even"><a href="mailto:wg-sexchromosomes@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/private/wg-sexchromosomes/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/options/wg-sexchromosomes"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="odd" >natural-selection</td>
<td class="odd" >Environmental and demographic determinants of natural selection</td>
<td class="odd"><a href="http://nescent-natural-selection.wikispaces.com/"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td colspan=3 class="odd"><table></table></td>
<tr>
<td class="even" >evoed</td>
<td class="even" >Evo-Ed</td>
<td class="even"><a href="/wg_evoed"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="even"><a href="mailto:wg-evoed@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/private/wg-evoed/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/options/wg-evoed"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="odd" >evoci</td>
<td class="odd" >Evoci toolkit: concept inventories to assess conceptual understanding of evolution</td>
<td class="odd"><a href="/wg_evoci"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:wg-evoci@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/wg-evoci/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/wg-evoci"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >evoio</td>
<td class="even" >Evoio.org</td>
<td class="even"><a href="/wg_evoio"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="even"><a href="mailto:phylo-vocamp1@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/private/phylo-vocamp1/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/options/phylo-vocamp1"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="odd" >evocurriculum</td>
<td class="odd" >Evolution Across the Curriculum</td>
<td class="odd"><a href="/wg_evocurriculum"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:wg-evocurriculum@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/wg-evocurriculum/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/wg-evocurriculum"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >polyphenism</td>
<td class="even" >Evolution and Development of Polyphenisms:Pathways to Innovation and Diversification</td>
<td class="even"><a href="/wg_polyphenism"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="even"><a href="mailto:wg-polyphenism@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/private/wg-polyphenism/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/options/wg-polyphenism"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="odd" >oceanchange</td>
<td class="odd" >Evolution and Global Change in the Oceans Workshop</td>
<td class="odd"><a href="/wg_oceanchange"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:wg-oceanchange@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/wg-oceanchange/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/wg-oceanchange"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >humanevo</td>
<td class="even" >Evolution in Contemporary Human Populations: Medical, Genetic and Behavioral Implications</td>
<td class="even"><a href="/wg_humanevo"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="even"><a href="mailto:wg-humanevo@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/private/wg-humanevo/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/options/wg-humanevo"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="odd" >fvt</td>
<td class="odd" >Evolution of Function-Valued Traits</td>
<td class="odd"><a href="/wg_fvt"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:wg-fvt@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/wg-fvt/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/wg-fvt"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >g_protein_evo</td>
<td class="even" >Evolution of G Protein Coupled Signaling: Lineages, Constraints, and Tempo</td>
<td class="even"><a href="/wg_g_protein_evo"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="even"><a href="mailto:wg-g_protein_evo@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/private/wg-g_protein_evo/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/options/wg-g_protein_evo"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="odd" >evodentistry</td>
<td class="odd" >EVOLUTION OF HUMAN TEETH AND JAWS: IMPLICATIONS FOR DENTISTRY AND ORTHODONTICS</td>
<td class="odd"><a href="/wg_evodentistry"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:wg-evodentistry@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/wg-evodentistry/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/wg-evodentistry"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >nesc-biome</td>
<td class="even" >Evolution of Indoor Biome</td>
<td class="even"><a href="http://nesc-biome.wikispaces.com"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td colspan=3 class="even"><table></table></td>
<tr>
<td class="odd" >evodisease</td>
<td class="odd" >Evolution of infectious diseases: integrating empirical and modelling approaches</td>
<td class="odd"><a href="/wg_evodisease"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:wg-evodisease@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/wg-evodisease/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/wg-evodisease"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >modelingsociality</td>
<td class="even" >Evolution of Insect Sociality: An Integrative Modeling Approach</td>
<td class="even"><a href="/wg_modelingsociality"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="even"><a href="mailto:wg-modelingsociality@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/private/wg-modelingsociality/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/options/wg-modelingsociality"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="odd" >astrobiology</td>
<td class="odd" >Evolution, Astrobiology, and Synthetic Biology: Defining the Common Foundations</td>
<td class="odd"><a href="/wg_astrobiology"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:wg-astrobiology@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/wg-astrobiology/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/wg-astrobiology"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >dbhack1</td>
<td class="even" >Evolutionary Database Interoperability Hackathon</td>
<td class="even"><a href="/wg_dbhack1"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="even"><a href="mailto:dbhack1@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/private/dbhack1/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/options/dbhack1"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="odd" >evoinfo</td>
<td class="odd" >Evolutionary Informatics Working Group</td>
<td class="odd"><a href="/wg_evoinfo"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:wg-evoinfo@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/wg-evoinfo/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/wg-evoinfo"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >woodyplants</td>
<td class="even" >Evolutionary Origins and Development of Woody Plants</td>
<td class="even"><a href="/wg_woodyplants"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="even"><a href="mailto:wg-woodyplants@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/private/wg-woodyplants/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/options/wg-woodyplants"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="odd" >multicellularity</td>
<td class="odd" >Evolutionary Origins of Multicellularity</td>
<td class="odd"><a href="http://multicellularity.wikispaces.com"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td colspan=3 class="odd"><table></table></td>
<tr>
<td class="even" >visual</td>
<td class="even" >Evolutionary shifts in vertebrate visual ecology and visual system morphology working group</td>
<td class="even"><a href="/wg_visual"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="even"><a href="mailto:wg-visual@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/private/wg-visual/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/options/wg-visual"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="odd" >evos</td>
<td class="odd" >EvoS Consortium Wiki</td>
<td class="odd"><a href="/wg_evos"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:evos@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/evos/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/option/evos"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >evolutionary-synthesis</td>
<td class="even" >Explaining cultural diversity: A new evolutionary synthesis</td>
<td class="even"><a href="http://evolutionary-synthesis.wikispaces.com"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td colspan=3 class="even"><table></table></td>
<tr>
<td class="odd" >floralassembly</td>
<td class="odd" >Floral assembly: Quantifying the composition of a complex adaptive structure</td>
<td class="odd"><a href="/wg_floralassembly"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:wg-floralassembly@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/wg-floralassembly/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/wg-floralassembly"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >famed</td>
<td class="even" >Fossil and Molecular Estimates of Divergence Times for the Tree of Life</td>
<td class="even"><a href="/wg_famed"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="even"><a href="mailto:wg-famed@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/private/wg-famed/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/options/wg-famed"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="odd" >systematicsfuture</td>
<td class="odd" >Future Directions in Systematics</td>
<td class="odd"><a href="/wg_systematicsfuture"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td colspan=3 class="odd"><table></table></td>
<tr>
<td class="even" >garli</td>
<td class="even" >GARLI support/user forum</td>
<td class="even"><a href="http://dx.doi.org/10.5281/zenodo.19021"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td colspan=3 class="even"><table></table></td>
<tr>
<td class="odd" >gem</td>
<td class="odd" >Genetic monitoring: Development of tools for conservation and management</td>
<td class="odd"><a href="/wg_gem"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:wg-gem@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/wg-gem/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/wg-gem"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >manakins</td>
<td class="even" >Genome-enabled Research on Manakins</td>
<td class="even"><a href="http://manakins.wikispaces.com"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td colspan=3 class="even"><table></table></td>
<tr>
<td class="odd" >cichlids</td>
<td class="odd" >Genomic Approaches to the Study of Adaptive Radiation in African</td>
<td class="odd"><a href="/wg_cichlids"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:wg-cichlids@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/wg-cichlids/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/wg-cichlids"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >GI</td>
<td class="even" >Genomic Introgression</td>
<td class="even"><a href="/wg_GI"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="even"><a href="mailto:wg-GI@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/private/wg-GI/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/options/wg-GI"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="odd" >germination</td>
<td class="odd" >Germination, Trait Coevolution, and Niche Limits in Changing Environments Working Group</td>
<td class="odd"><a href="/wg_germination"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:wg-germination@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/wg-germination/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/wg-germination/"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >emod</td>
<td class="even" >GMOD Help Desk</td>
<td class="even"><a href="/wg_emod"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="even"><a href="mailto:wg-emod@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/private/wg-emod/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/options/wg-emod"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="odd" >gmod2008</td>
<td class="odd" >GMOD Summer School</td>
<td class="odd"><a href="/wg_gmod2008"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td colspan=3 class="odd"><table></table></td>
<tr>
<td class="even" >gmodevohackathon</td>
<td class="even" >GMOD Tools for Evolutionary Biology Hackathon</td>
<td class="even"><a href="http://dx.doi.org/10.5281/zenodo.19020"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="even"><a href="mailto:gmodevohackathon@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/private/gmodevohackathon/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/options/gmodevohackathon"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="odd" >GPWGII</td>
<td class="odd" >Grass Phylogeny Working Group II: Inferring the complex history of C4 photosynthesis in grasses</td>
<td class="odd"><a href="/wg_GPWGII"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:wg-gpwgii@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/wg-gpwgii/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/wg-gpwgii"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >hive</td>
<td class="even" >Helping Interdisciplinary Vocabulary Engineering</td>
<td class="even"><a href="/wg_hive"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td colspan=3 class="even"><table></table></td>
<tr>
<td class="odd" >eukmetagen</td>
<td class="odd" >High-throughput biodiversity research using eukaryotic metagenetics</td>
<td class="odd"><a href="/wg_eukmetagen"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:wg-eukmetagen@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/wg-eukmetagen/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/wg-eukmetagen"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >hypoxia</td>
<td class="even" >Human Evolution and Adaptation to High-Altitude Hypoxia</td>
<td class="even"><a href="/wg_hypoxia"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="even"><a href="mailto:wg-hypoxia@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/private/wg-hypoxia/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/options/wg-hypoxia"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="odd" >evmed</td>
<td class="odd" >Infusing Medical Education with Evolutionary Thinking</td>
<td class="odd"><a href="/wg_evmed"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:wg-evmed@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/wg-evmed/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/wg-evmed"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >nescent-macroevolution</td>
<td class="even" >Integrating approaches to macroevolution: combining fossils and phylogenies</td>
<td class="even"><a href="http://nescent-macroevolution.wikispaces.com"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td colspan=3 class="even"><table></table></td>
<tr>
<td class="odd" >quaternary</td>
<td class="odd" >Integrating datasets to investigate megafaunal extinction in the Late Quaternary</td>
<td class="odd"><a href="/wg_quaternary"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:wg-quaternary@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/wg-quaternary/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/wg-quaternary"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >humanfertility</td>
<td class="even" >Integrating Evolutionary Models of Human Fertility Change</td>
<td class="even"><a href="http://humanfertility.wikispaces.com"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td colspan=3 class="even"><table></table></td>
<tr>
<td class="odd" >ifat-dm</td>
<td class="odd" >Integrating fossil and molecular data in the study of diversification</td>
<td class="odd"><a href="/wg_ifat-dm"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:ifat-dm@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/ifat-dm/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/ifat-dm"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >rodentdiversification</td>
<td class="even" >Integrating historical biogeography and phylogeography with the fossil record and landscape history</td>
<td class="even"><a href="http://rodentdiversification.wikispaces.com"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td colspan=3 class="even"><table></table></td>
<tr>
<td class="odd" >sociality</td>
<td class="odd" >Integrative models of vertebrate sociality: evolution, mechanism and emergent properties</td>
<td class="odd"><a href="/wg_sociality"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:wg-sociality@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/wg-sociality/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/wg-sociality"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >JSCpostdocs2011</td>
<td class="even" >Joint Synthesis Center Postdoctoral Symposium 2011</td>
<td class="even"><a href="/wg_JSCpostdocs2011"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="even"><a href="mailto:JSCpostdocs2011@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/private/jscpostdocs2011/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/options/jscpostdocs2011"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="odd" >k12evolution</td>
<td class="odd" >K-12 Evolution Education and the Underserved</td>
<td class="odd"><a href="http://k12evolution.wikispaces.com"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td colspan=3 class="odd"><table></table></td>
<tr>
<td class="even" >socialtraits</td>
<td class="even" >Large-scale demographic, network and behavioral trait analyses of sociality group</td>
<td class="even"><a href="/wg_socialtraits"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="even"><a href="mailto:wg-socialtraits@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/private/wg-socialtraits/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/options/wg-socialtraits"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="odd" >fossil-record</td>
<td class="odd" >Learning Evolution from the Fossil Record: K-12 Explorations in Deep Time</td>
<td class="odd"><a href="http://fossil-record.wikispaces.com/"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td colspan=3 class="odd"><table></table></td>
<tr>
<td class="even" >bakerslaw</td>
<td class="even" >Linking self-fertilization, dispersal and distribution traits of species: Is Baker’s law an exception to the rule?</td>
<td class="even"><a href="http://bakerslaw.wikispaces.com"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td colspan=3 class="even"><table></table></td>
<tr>
<td class="odd" >dimme</td>
<td class="odd" >Mathematical models, microbes & evolutionary diversification</td>
<td class="odd"><a href="/wg_dimme"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:wg-dimme@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/wg-dimme/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/wg-dimme"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >RangeDynamics</td>
<td class="even" >Mechanistic distribution models: energetics, fitness, and population dynamics</td>
<td class="even"><a href="/wg_RangeDynamics"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="even"><a href="mailto:wg-RangeDynamics@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/private/wg-RangeDynamics/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/options/wg-RangeDynamics"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="odd" >protevolbiophysics</td>
<td class="odd" >Modeling protein structural and energetic constraints on sequence evolution</td>
<td class="odd"><a href="/wg_protevolbiophysics"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:wg-protevolbiophysics@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/wg-protevolbiophysics/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/wg-protevolbiophysics"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >languagediversity</td>
<td class="even" >Modeling the diversification of human languages</td>
<td class="even"><a href="/wg_languagediversity"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="even"><a href="mailto:wg-languagediversity@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/private/wg-languagediversity/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/options/wg-languagediversity"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="odd" >netvar</td>
<td class="odd" >Modeling Variation in Gene Networks</td>
<td class="odd"><a href="/wg_netvar"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:wg-netvar@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/wg-netvar/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/wg-netvar"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >montane</td>
<td class="even" >Montane diversity in space and time</td>
<td class="even"><a href="/wg_montane"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="even"><a href="mailto:wg-montane@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/private/wg-montane/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/options/wg-montane"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="odd" >academy</td>
<td class="odd" >NESCent Academy</td>
<td class="odd"><a href="/wg_academy"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td colspan=3 class="odd"><table></table></td>
<tr>
<td class="even" >public_documents</td>
<td class="even" >NESCent Public Documents</td>
<td class="even"><a href="/wg_public_documents"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td colspan=3 class="even"><table></table></td>
<tr>
<td class="odd" >woodanatomy</td>
<td class="odd" >NESCent/ARC-NZ Research Network for Vegetation Function Wood (Subgroup a)</td>
<td class="odd"><a href="/wg_woodanatomy"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:wg-woodanatomy-a@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/wg-woodanatomy-a/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/wg-woodanatomy-a"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >woodanatomy</td>
<td class="even" >NESCent/ARC-NZ Research Network for Vegetation Function Wood (Subgroup b)</td>
<td class="even"><a href="/wg_woodanatomy"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="even"><a href="mailto:wg-woodanatomy-b@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/private/wg-woodanatomy-b/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/options/wg-woodanatomy-b"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="odd" >woodanatomy</td>
<td class="odd" >NESCent/ARC-NZ Research Network for Vegetation Function Wood (Subgroup c)</td>
<td class="odd"><a href="/wg_woodanatomy"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:wg-woodanatomy-c@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/wg-woodanatomy-c/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/wg-woodanatomy-c"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >next-gen2011</td>
<td class="even" >Next-Gen Sequencing Course 2011</td>
<td class="even"><a href="/wg_next-gen2011"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="even"><a href="mailto:next-gen2011@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/private/next-gen2011/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/options/next-gen2011"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="odd" >chemoreception</td>
<td class="odd" >Origins and Evolution of Chemoreception catalysis group</td>
<td class="odd"><a href="/wg_chemoreception"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:wg-chemoreception@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/wg-chemoreception/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/wg-chemoreception"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >grasslands</td>
<td class="even" >Origins of c4 grasslands: a new synthesis of phylogeny, ecology and paleobiology</td>
<td class="even"><a href="/wg_grasslands"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="even"><a href="mailto:wg-grasslands@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/private/wg-grasslands/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/options/wg-grasslands"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="odd" >oee</td>
<td class="odd" >Outreach and Education in Evolution Working Group</td>
<td class="odd"><a href="/wg_oee"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:wg-oee@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/wg-oee/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/wg-oee"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >humanevolution</td>
<td class="even" >Overcoming the Stumbling Blocks to Communicating Human Evolution</td>
<td class="even"><a href="/wg_humanevolution"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="even"><a href="mailto:wg-humanevolution@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/private/wg-humanevolution/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/options/wg-humanevolution/"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="odd" >cephalopod</td>
<td class="odd" >Paths to Cephalopod Genomics- Strategies, Choices, Organization</td>
<td class="odd"><a href="http://cephalopod-paths.wikispaces.com/"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td colspan=3 class="odd"><table></table></td>
<tr>
<td class="even" >madagascar</td>
<td class="even" >Patterns of Biodiversity in Madagascar</td>
<td class="even"><a href="/wg_madagascar"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td colspan=3 class="even"><table></table></td>
<tr>
<td class="odd" >patagonia</td>
<td class="odd" >Perspectives on the Origin and Conservation of Patagonia</td>
<td class="odd"><a href="/wg_patagonia"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:wg-patagonia@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/wg-patagonia/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/wg-patagonia"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >bodysize</td>
<td class="even" >Phanerozoic body size trends in time and space: macroevolution and macroecology</td>
<td class="even"><a href="/wg_bodysize"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="even"><a href="mailto:wg-bodysize@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/private/wg-bodysize/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/options/wg-bodysize"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="odd" >r-phylo</td>
<td class="odd" >Phylogenetic comparative methods</td>
<td class="odd"><a href="/wg_r-phylo"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td colspan=3 class="odd"><table></table></td>
<tr>
<td class="even" >phylopsy</td>
<td class="even" >Phylogenetic Psychology (How Does Cognition Evolve?)</td>
<td class="even"><a href="/wg_phylopsy"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="even"><a href="mailto:wg-phylopsy@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/private/wg-phylopsy/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/options/wg-phylopsy"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="odd" >phyloinfo2011</td>
<td class="odd" >Phyloinformatics Course 2011</td>
<td class="odd"><a href="/wg_phyloinfo2011"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:phyloinfo2011@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/phyloinfo2011/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/phyloinfo2011"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >phyloinformatics</td>
<td class="even" >Phyloinformatics Hackathon</td>
<td class="even"><a href="/wg_phyloinformatics"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="even"><a href="mailto:wg-phyloinformatics@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/private/wg-phyloinformatics/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/options/wg-phyloinformatics"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="odd" >nhphyto</td>
<td class="odd" >Phytogeography of the Northern Hemisphere</td>
<td class="odd"><a href="/wg_nhphyto"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="odd"><a href="mailto:wg-nhphyto@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/private/wg-nhphyto/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="odd"><a href="https://lists.nescent.org/mailman/options/wg-nhphyto"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="even" >plhd</td>
<td class="even" >Primate Life Histories</td>
<td class="even"><a href="/wg_plhd"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>
<td class="even"><a href="mailto:wg-plhd@nescent.org"><img src="img/stock/email.gif" border=0 alt="Mailing List" /></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/private/wg-plhd/"><img src="img/stock/archive.gif" border=0 alt="Mailing List Archive"/></a></td>
<td class="even"><a href="https://lists.nescent.org/mailman/options/wg-plhd"><img src="img/stock/reminder.gif" border=0 alt="Mailing List Password Reminder"/></a></td></tr>
<tr>
<td class="odd" >programming2011</td>
<td class="odd" >Programming for Biologists Course 2011</td>
<td class="odd"><a href="/wg_programming2011"><img src="img/stock/wiki.gif" border=0 alt="wiki" /></a></td>