-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (64 loc) · 3.86 KB
/
index.html
File metadata and controls
77 lines (64 loc) · 3.86 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>Population Genetic Statistics Across Multi-Species Databases by DIPnet</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="stylesheets/normalize.css" media="screen">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen">
<link rel="stylesheet" type="text/css" href="stylesheets/github-light.css" media="screen">
</head>
<body>
<section class="page-header">
<h1 class="project-name">Population Genetic Statistics Across Multi-Species Databases</h1>
<h2 class="project-tagline">Calculate population genetic statistics for multi-species databases like the DIPnet database</h2>
<a href="https://github.com/DIPnet/popgenDB" class="btn">View on GitHub</a>
<a href="https://github.com/DIPnet/popgenDB/zipball/master" class="btn">Download .zip</a>
<a href="https://github.com/DIPnet/popgenDB/tarball/master" class="btn">Download .tar.gz</a>
</section>
<section class="main-content">
<h1>
<a id="population-genetic-statistics-for-the-dipnet-dataset" class="anchor" href="#population-genetic-statistics-for-the-dipnet-dataset" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Population Genetic Statistics for the DIPnet dataset</h1>
<p>Added April 20, 2015 by Eric Crandall</p>
<p><a href="https://github.com/DIPnet/popgenDB">These scripts</a> are intended for use with the DIPnet dataset that will be finished on May 1, 2015. We plan to convert these scripts eventually into an R package that will talk with the DIPnet database as stored in the FIMS framework to calculate multispecies population genetic statistics. The way it currently works is that all the functions are stored in <code>DIPnet_Stats_Functions.R</code> and a script for driving those functions is in <code>DIPnet_Stats_Script.R</code>. </p>
<p>You'll want to change the paths in <code>config_example.R</code> to values that point to local versions of the DIPnet DB and spatial DB and then save that file as <code>config.R</code>. Similarly, you can create an empty directory "/output" save whatever results you get to it. These files won't be synced (pushed or pulled) with GitHub because they are included in the .gitignore file.</p>
<p>There are major functions for looping over the whole database and calculating:</p>
<ol>
<li>
<p>Genetic diversity statistics</p>
<ol>
<li>Unique Haplotype Number</li>
<li>Haplotype Diversity</li>
<li>Shannon-Wiener Diversity</li>
<li>Effective number of haplotypes</li>
<li>Local FST</li>
<li>Nucleotide Diversity (per site and per locus)</li>
<li>Watterson's ThetaS</li>
<li>Tajima's D</li>
<li>Coverage (Chao and Jost 2012)</li>
<li>Coverage standardized haplotype diversity</li>
</ol>
</li>
<li>
<p>Genetic structure statistics</p>
<ol>
<li>Nei's Fst</li>
<li>Nei's Gst</li>
<li>Hedrick's G'st</li>
<li>Jost's D</li>
<li>Weir & Cockerham's Theta</li>
<li>Excoffier et al. PhiST</li>
<li>Chi-Square Test of Population Differentiation</li>
<li>Nei's Da</li>
</ol>
</li>
<li><p>Hierarchical Structure using AMOVA (up to 3 levels currently supported)</p></li>
</ol>
<footer class="site-footer">
<span class="site-footer-owner"><a href="https://github.com/DIPnet/popgenDB">Population Genetic Statistics Across Multi-Species Databases</a> is maintained by <a href="https://github.com/DIPnet">DIPnet</a>.</span>
<span class="site-footer-credits">This page was generated by <a href="https://pages.github.com">GitHub Pages</a> using the <a href="https://github.com/jasonlong/cayman-theme">Cayman theme</a> by <a href="https://twitter.com/jasonlong">Jason Long</a>.</span>
</footer>
</section>
</body>
</html>