<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://genome.sph.umich.edu/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Gzajac</id>
	<title>Genome Analysis Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://genome.sph.umich.edu/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Gzajac"/>
	<link rel="alternate" type="text/html" href="http://genome.sph.umich.edu/wiki/Special:Contributions/Gzajac"/>
	<updated>2026-09-24T08:06:00Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.1</generator>
	<entry>
		<id>http://genome.sph.umich.edu/w/index.php?title=VICES&amp;diff=15102</id>
		<title>VICES</title>
		<link rel="alternate" type="text/html" href="http://genome.sph.umich.edu/w/index.php?title=VICES&amp;diff=15102"/>
		<updated>2019-04-15T13:59:08Z</updated>

		<summary type="html">&lt;p&gt;Gzajac: /* Introduction */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Software|VICES]]&lt;br /&gt;
&lt;br /&gt;
= Introduction =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;VICES&#039;&#039;&#039; is a program that jointly estimates the proportion of contaminating DNA in samples genotyped on arrays and which other samples in the study the contaminating DNA came from.&lt;br /&gt;
&lt;br /&gt;
= Download =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;GitHub Repo:&#039;&#039;&#039; [https://github.com/gjmzajac/vices https://github.com/gjmzajac/vices]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ZIP archive:&#039;&#039;&#039; [https://github.com/gjmzajac/vices/zipball/master/ https://github.com/gjmzajac/vices/zipball/master/]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ubuntu 16.04 x64 Binary&#039;&#039;&#039; [[File:vices_v1.0.tar.gz|vices_v1.0.tar.gz]]&lt;br /&gt;
&lt;br /&gt;
= Installation =&lt;br /&gt;
&lt;br /&gt;
The easiest way to install VICES is to use cget as follows:&lt;br /&gt;
 cget install --prefix &amp;lt;install_prefix&amp;gt; gjmzajac/VICES&lt;br /&gt;
&lt;br /&gt;
Alternatively, you can setup a dev environment cmake directly.&lt;br /&gt;
 cd vices&lt;br /&gt;
 cget install -f ./requirements.txt                     # Install dependencies locally.&lt;br /&gt;
 mkdir build &amp;amp;&amp;amp; cd build                                # Create out of source build directory.&lt;br /&gt;
 cmake -DCMAKE_TOOLCHAIN_FILE=./cget/cget/cget.cmake .. # Configure project with dependency paths.&lt;br /&gt;
 make                                                   # Build.&lt;br /&gt;
&lt;br /&gt;
= Usage =&lt;br /&gt;
To run, &lt;br /&gt;
 ./vices -r reports_list.txt -o contam_estimates.txt&lt;br /&gt;
&lt;br /&gt;
The reports_list.txt file must list the paths of all the Illumina report files (either plaintext or gzipped) you are testing. All files in a single run must be from the same type and version of array with exactly the same markers. Output will be written to the file contam_estimates.txt.&lt;br /&gt;
&lt;br /&gt;
The output consists of a header (with the number of samples, markers, etc.) then three tab-delimited columns:&lt;br /&gt;
*&#039;&#039;&#039;Recipient_Index&#039;&#039;&#039; the index (starting with 0) of the samples being tested. These are in the same order as in the file with paths to report files provided to VICES. If the --sample-list option is used and points to a file containing sample IDs in the same order as the report files, then this column becomes &#039;&#039;&#039;Recipient_ID&#039;&#039;&#039;.&lt;br /&gt;
*&#039;&#039;&#039;Estimated_contamination&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Sources&#039;&#039;&#039; A breakdown of the estimated sources of contamination. Most will have only one source (AF for allele frequencies) because VICES does not perform the donor search for samples with estimated contamination proportion &amp;lt; 0.005 by AF.&lt;br /&gt;
Example (simulated) report files and output are provided in the section below&lt;br /&gt;
&lt;br /&gt;
We highly recommend running VICES only within the same batches they were genotyped in as the donor estimation can take a long time if you give it a long list of over 1000 samples. Other reasons to run in batches are that samples genotyped in different runs are probably less likely to have traded DNA, and batch effects may influence the calculation of allele frequencies, an important initial step in VICES. Your sequencing core should provide some information on batches. If you don&#039;t have any batch information, then running VICES on one (or at most 20) 96-well plate at a time should also work well. &lt;br /&gt;
&lt;br /&gt;
If any duplicate/twin samples are contaminated, this could bias the results. You might want to consider excluding one of each duplicate/twin pair before running/rerunning.&lt;br /&gt;
&lt;br /&gt;
No external allele frequencies are required. VICES calculates these directly from the report files you provide.&lt;br /&gt;
&lt;br /&gt;
= Options =&lt;br /&gt;
 -r, --report-list &amp;lt;file&amp;gt;              File with paths to Illumina report files&lt;br /&gt;
 -o, --output &amp;lt;file&amp;gt;                   Write output to a file [standard output]&lt;br /&gt;
 -f, --maf-threshold &amp;lt;float&amp;gt;           Min minor allele frequency for markers&lt;br /&gt;
 -c, --contam-threshold &amp;lt;float&amp;gt;        Threshold for estimating donor samples&lt;br /&gt;
 -s, --sample-list &amp;lt;file&amp;gt;              File with sample ids for report files&lt;br /&gt;
 -a, --af-only                         Specify analysis with AF only. No donor estimation&lt;br /&gt;
 -n, --snp-name-col &amp;lt;string&amp;gt;           Name of report file column containing SNP names&lt;br /&gt;
 -1, --allele1-col &amp;lt;string&amp;gt;            Name of report file column containing allele 1&lt;br /&gt;
 -2, --allele2-col &amp;lt;string&amp;gt;            Name of report file column containing allele 2&lt;br /&gt;
 -b, --b-allele-intensity-col &amp;lt;string&amp;gt; Name of report file column containing B allele intensity&lt;br /&gt;
 -m, --num-markers &amp;lt;int&amp;gt;               Maximum number of markers for contamination estimation&lt;br /&gt;
 -t, --threads &amp;lt;int&amp;gt;                   Number of threads for parallel computation&lt;br /&gt;
 -h, --help                            This help page&lt;br /&gt;
&lt;br /&gt;
= VICES Example =&lt;br /&gt;
&#039;&#039;&#039;Download Sample Files&#039;&#039;&#039; [[File:vices_test.zip|vices_test.zip]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Basic Command&#039;&#039;&#039; from within the directory with the example files:&lt;br /&gt;
 ~/vices/build/vices -r vices.test.report.list.txt -s vices.test.report.iids.txt -o vices.test.report.contam.txt&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Expected Output&#039;&#039;&#039; in vices.test.report.contam.txt:&lt;br /&gt;
 Recipient_ID    Estimated_contamination Sources&lt;br /&gt;
 iid_01  0.0107758       AF:0.00351165; Donor_iid_02:0.00726419&lt;br /&gt;
 iid_02  0.0371312       Donor_iid_01:0.0187088; Donor_iid_03:0.0184223&lt;br /&gt;
 iid_03  0.0791742       Donor_iid_01:0.0236221; Donor_iid_02:0.0165325; Donor_iid_08:0.0390197&lt;br /&gt;
 iid_04  0.0158945       AF:0.0158945&lt;br /&gt;
 iid_05  0.0535897       AF:0.025121; Donor_iid_04:0.0284687&lt;br /&gt;
 iid_06  0.0740575       AF:0.0346833; Donor_iid_04:0.0117261; Donor_iid_10:0.0276482&lt;br /&gt;
 iid_07  0.00551559      AF:0.00551559&lt;br /&gt;
 iid_08  -0.00673222     AF:-0.00673222&lt;br /&gt;
 iid_09  0.000255342     AF:0.000255342&lt;br /&gt;
 iid_10  9.90153e-05     AF:9.90153e-05&lt;br /&gt;
 iid_11  -0.00138426     AF:-0.00138426&lt;br /&gt;
 iid_12  -0.00588946     AF:-0.00588946&lt;br /&gt;
&lt;br /&gt;
= Citation =&lt;br /&gt;
A paper is in the works and should be published soon. For now, you can cite our abstract from the 2017 Biology of Genomes meeting&lt;br /&gt;
* G. J. M. Zajac, L. G. Fritsche, S. L. Dagenais, R. H. Lyons, C. M. Brummett, &amp;amp; G. Abecasis. &#039;&#039;VICES: Verify Intensity Contamination from Estimated Sources.&#039;&#039; Poster Session presented at: The Biology of Genomes; 2017 May 9-13; Cold Spring Harbor, NY.&lt;br /&gt;
&lt;br /&gt;
= Contact =&lt;br /&gt;
For questions or bug reports, email gzajac at umich.edu&lt;br /&gt;
&lt;br /&gt;
= Need Something Else? =&lt;br /&gt;
More Software: [[ContaminationDetection]]&lt;/div&gt;</summary>
		<author><name>Gzajac</name></author>
	</entry>
	<entry>
		<id>http://genome.sph.umich.edu/w/index.php?title=VICES&amp;diff=15101</id>
		<title>VICES</title>
		<link rel="alternate" type="text/html" href="http://genome.sph.umich.edu/w/index.php?title=VICES&amp;diff=15101"/>
		<updated>2019-04-12T17:49:49Z</updated>

		<summary type="html">&lt;p&gt;Gzajac: /* VICES Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Software|VICES]]&lt;br /&gt;
&lt;br /&gt;
= Introduction =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;VICES&#039;&#039;&#039; is a program that jointly estimates the proportion of contaminating DNA in samples genotyped on arrays and which other samples in the study it came from.&lt;br /&gt;
&lt;br /&gt;
= Download =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;GitHub Repo:&#039;&#039;&#039; [https://github.com/gjmzajac/vices https://github.com/gjmzajac/vices]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ZIP archive:&#039;&#039;&#039; [https://github.com/gjmzajac/vices/zipball/master/ https://github.com/gjmzajac/vices/zipball/master/]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ubuntu 16.04 x64 Binary&#039;&#039;&#039; [[File:vices_v1.0.tar.gz|vices_v1.0.tar.gz]]&lt;br /&gt;
&lt;br /&gt;
= Installation =&lt;br /&gt;
&lt;br /&gt;
The easiest way to install VICES is to use cget as follows:&lt;br /&gt;
 cget install --prefix &amp;lt;install_prefix&amp;gt; gjmzajac/VICES&lt;br /&gt;
&lt;br /&gt;
Alternatively, you can setup a dev environment cmake directly.&lt;br /&gt;
 cd vices&lt;br /&gt;
 cget install -f ./requirements.txt                     # Install dependencies locally.&lt;br /&gt;
 mkdir build &amp;amp;&amp;amp; cd build                                # Create out of source build directory.&lt;br /&gt;
 cmake -DCMAKE_TOOLCHAIN_FILE=./cget/cget/cget.cmake .. # Configure project with dependency paths.&lt;br /&gt;
 make                                                   # Build.&lt;br /&gt;
&lt;br /&gt;
= Usage =&lt;br /&gt;
To run, &lt;br /&gt;
 ./vices -r reports_list.txt -o contam_estimates.txt&lt;br /&gt;
&lt;br /&gt;
The reports_list.txt file must list the paths of all the Illumina report files (either plaintext or gzipped) you are testing. All files in a single run must be from the same type and version of array with exactly the same markers. Output will be written to the file contam_estimates.txt.&lt;br /&gt;
&lt;br /&gt;
The output consists of a header (with the number of samples, markers, etc.) then three tab-delimited columns:&lt;br /&gt;
*&#039;&#039;&#039;Recipient_Index&#039;&#039;&#039; the index (starting with 0) of the samples being tested. These are in the same order as in the file with paths to report files provided to VICES. If the --sample-list option is used and points to a file containing sample IDs in the same order as the report files, then this column becomes &#039;&#039;&#039;Recipient_ID&#039;&#039;&#039;.&lt;br /&gt;
*&#039;&#039;&#039;Estimated_contamination&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Sources&#039;&#039;&#039; A breakdown of the estimated sources of contamination. Most will have only one source (AF for allele frequencies) because VICES does not perform the donor search for samples with estimated contamination proportion &amp;lt; 0.005 by AF.&lt;br /&gt;
Example (simulated) report files and output are provided in the section below&lt;br /&gt;
&lt;br /&gt;
We highly recommend running VICES only within the same batches they were genotyped in as the donor estimation can take a long time if you give it a long list of over 1000 samples. Other reasons to run in batches are that samples genotyped in different runs are probably less likely to have traded DNA, and batch effects may influence the calculation of allele frequencies, an important initial step in VICES. Your sequencing core should provide some information on batches. If you don&#039;t have any batch information, then running VICES on one (or at most 20) 96-well plate at a time should also work well. &lt;br /&gt;
&lt;br /&gt;
If any duplicate/twin samples are contaminated, this could bias the results. You might want to consider excluding one of each duplicate/twin pair before running/rerunning.&lt;br /&gt;
&lt;br /&gt;
No external allele frequencies are required. VICES calculates these directly from the report files you provide.&lt;br /&gt;
&lt;br /&gt;
= Options =&lt;br /&gt;
 -r, --report-list &amp;lt;file&amp;gt;              File with paths to Illumina report files&lt;br /&gt;
 -o, --output &amp;lt;file&amp;gt;                   Write output to a file [standard output]&lt;br /&gt;
 -f, --maf-threshold &amp;lt;float&amp;gt;           Min minor allele frequency for markers&lt;br /&gt;
 -c, --contam-threshold &amp;lt;float&amp;gt;        Threshold for estimating donor samples&lt;br /&gt;
 -s, --sample-list &amp;lt;file&amp;gt;              File with sample ids for report files&lt;br /&gt;
 -a, --af-only                         Specify analysis with AF only. No donor estimation&lt;br /&gt;
 -n, --snp-name-col &amp;lt;string&amp;gt;           Name of report file column containing SNP names&lt;br /&gt;
 -1, --allele1-col &amp;lt;string&amp;gt;            Name of report file column containing allele 1&lt;br /&gt;
 -2, --allele2-col &amp;lt;string&amp;gt;            Name of report file column containing allele 2&lt;br /&gt;
 -b, --b-allele-intensity-col &amp;lt;string&amp;gt; Name of report file column containing B allele intensity&lt;br /&gt;
 -m, --num-markers &amp;lt;int&amp;gt;               Maximum number of markers for contamination estimation&lt;br /&gt;
 -t, --threads &amp;lt;int&amp;gt;                   Number of threads for parallel computation&lt;br /&gt;
 -h, --help                            This help page&lt;br /&gt;
&lt;br /&gt;
= VICES Example =&lt;br /&gt;
&#039;&#039;&#039;Download Sample Files&#039;&#039;&#039; [[File:vices_test.zip|vices_test.zip]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Basic Command&#039;&#039;&#039; from within the directory with the example files:&lt;br /&gt;
 ~/vices/build/vices -r vices.test.report.list.txt -s vices.test.report.iids.txt -o vices.test.report.contam.txt&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Expected Output&#039;&#039;&#039; in vices.test.report.contam.txt:&lt;br /&gt;
 Recipient_ID    Estimated_contamination Sources&lt;br /&gt;
 iid_01  0.0107758       AF:0.00351165; Donor_iid_02:0.00726419&lt;br /&gt;
 iid_02  0.0371312       Donor_iid_01:0.0187088; Donor_iid_03:0.0184223&lt;br /&gt;
 iid_03  0.0791742       Donor_iid_01:0.0236221; Donor_iid_02:0.0165325; Donor_iid_08:0.0390197&lt;br /&gt;
 iid_04  0.0158945       AF:0.0158945&lt;br /&gt;
 iid_05  0.0535897       AF:0.025121; Donor_iid_04:0.0284687&lt;br /&gt;
 iid_06  0.0740575       AF:0.0346833; Donor_iid_04:0.0117261; Donor_iid_10:0.0276482&lt;br /&gt;
 iid_07  0.00551559      AF:0.00551559&lt;br /&gt;
 iid_08  -0.00673222     AF:-0.00673222&lt;br /&gt;
 iid_09  0.000255342     AF:0.000255342&lt;br /&gt;
 iid_10  9.90153e-05     AF:9.90153e-05&lt;br /&gt;
 iid_11  -0.00138426     AF:-0.00138426&lt;br /&gt;
 iid_12  -0.00588946     AF:-0.00588946&lt;br /&gt;
&lt;br /&gt;
= Citation =&lt;br /&gt;
A paper is in the works and should be published soon. For now, you can cite our abstract from the 2017 Biology of Genomes meeting&lt;br /&gt;
* G. J. M. Zajac, L. G. Fritsche, S. L. Dagenais, R. H. Lyons, C. M. Brummett, &amp;amp; G. Abecasis. &#039;&#039;VICES: Verify Intensity Contamination from Estimated Sources.&#039;&#039; Poster Session presented at: The Biology of Genomes; 2017 May 9-13; Cold Spring Harbor, NY.&lt;br /&gt;
&lt;br /&gt;
= Contact =&lt;br /&gt;
For questions or bug reports, email gzajac at umich.edu&lt;br /&gt;
&lt;br /&gt;
= Need Something Else? =&lt;br /&gt;
More Software: [[ContaminationDetection]]&lt;/div&gt;</summary>
		<author><name>Gzajac</name></author>
	</entry>
	<entry>
		<id>http://genome.sph.umich.edu/w/index.php?title=VICES&amp;diff=15100</id>
		<title>VICES</title>
		<link rel="alternate" type="text/html" href="http://genome.sph.umich.edu/w/index.php?title=VICES&amp;diff=15100"/>
		<updated>2019-04-12T17:49:27Z</updated>

		<summary type="html">&lt;p&gt;Gzajac: /* VICES Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Software|VICES]]&lt;br /&gt;
&lt;br /&gt;
= Introduction =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;VICES&#039;&#039;&#039; is a program that jointly estimates the proportion of contaminating DNA in samples genotyped on arrays and which other samples in the study it came from.&lt;br /&gt;
&lt;br /&gt;
= Download =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;GitHub Repo:&#039;&#039;&#039; [https://github.com/gjmzajac/vices https://github.com/gjmzajac/vices]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ZIP archive:&#039;&#039;&#039; [https://github.com/gjmzajac/vices/zipball/master/ https://github.com/gjmzajac/vices/zipball/master/]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ubuntu 16.04 x64 Binary&#039;&#039;&#039; [[File:vices_v1.0.tar.gz|vices_v1.0.tar.gz]]&lt;br /&gt;
&lt;br /&gt;
= Installation =&lt;br /&gt;
&lt;br /&gt;
The easiest way to install VICES is to use cget as follows:&lt;br /&gt;
 cget install --prefix &amp;lt;install_prefix&amp;gt; gjmzajac/VICES&lt;br /&gt;
&lt;br /&gt;
Alternatively, you can setup a dev environment cmake directly.&lt;br /&gt;
 cd vices&lt;br /&gt;
 cget install -f ./requirements.txt                     # Install dependencies locally.&lt;br /&gt;
 mkdir build &amp;amp;&amp;amp; cd build                                # Create out of source build directory.&lt;br /&gt;
 cmake -DCMAKE_TOOLCHAIN_FILE=./cget/cget/cget.cmake .. # Configure project with dependency paths.&lt;br /&gt;
 make                                                   # Build.&lt;br /&gt;
&lt;br /&gt;
= Usage =&lt;br /&gt;
To run, &lt;br /&gt;
 ./vices -r reports_list.txt -o contam_estimates.txt&lt;br /&gt;
&lt;br /&gt;
The reports_list.txt file must list the paths of all the Illumina report files (either plaintext or gzipped) you are testing. All files in a single run must be from the same type and version of array with exactly the same markers. Output will be written to the file contam_estimates.txt.&lt;br /&gt;
&lt;br /&gt;
The output consists of a header (with the number of samples, markers, etc.) then three tab-delimited columns:&lt;br /&gt;
*&#039;&#039;&#039;Recipient_Index&#039;&#039;&#039; the index (starting with 0) of the samples being tested. These are in the same order as in the file with paths to report files provided to VICES. If the --sample-list option is used and points to a file containing sample IDs in the same order as the report files, then this column becomes &#039;&#039;&#039;Recipient_ID&#039;&#039;&#039;.&lt;br /&gt;
*&#039;&#039;&#039;Estimated_contamination&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Sources&#039;&#039;&#039; A breakdown of the estimated sources of contamination. Most will have only one source (AF for allele frequencies) because VICES does not perform the donor search for samples with estimated contamination proportion &amp;lt; 0.005 by AF.&lt;br /&gt;
Example (simulated) report files and output are provided in the section below&lt;br /&gt;
&lt;br /&gt;
We highly recommend running VICES only within the same batches they were genotyped in as the donor estimation can take a long time if you give it a long list of over 1000 samples. Other reasons to run in batches are that samples genotyped in different runs are probably less likely to have traded DNA, and batch effects may influence the calculation of allele frequencies, an important initial step in VICES. Your sequencing core should provide some information on batches. If you don&#039;t have any batch information, then running VICES on one (or at most 20) 96-well plate at a time should also work well. &lt;br /&gt;
&lt;br /&gt;
If any duplicate/twin samples are contaminated, this could bias the results. You might want to consider excluding one of each duplicate/twin pair before running/rerunning.&lt;br /&gt;
&lt;br /&gt;
No external allele frequencies are required. VICES calculates these directly from the report files you provide.&lt;br /&gt;
&lt;br /&gt;
= Options =&lt;br /&gt;
 -r, --report-list &amp;lt;file&amp;gt;              File with paths to Illumina report files&lt;br /&gt;
 -o, --output &amp;lt;file&amp;gt;                   Write output to a file [standard output]&lt;br /&gt;
 -f, --maf-threshold &amp;lt;float&amp;gt;           Min minor allele frequency for markers&lt;br /&gt;
 -c, --contam-threshold &amp;lt;float&amp;gt;        Threshold for estimating donor samples&lt;br /&gt;
 -s, --sample-list &amp;lt;file&amp;gt;              File with sample ids for report files&lt;br /&gt;
 -a, --af-only                         Specify analysis with AF only. No donor estimation&lt;br /&gt;
 -n, --snp-name-col &amp;lt;string&amp;gt;           Name of report file column containing SNP names&lt;br /&gt;
 -1, --allele1-col &amp;lt;string&amp;gt;            Name of report file column containing allele 1&lt;br /&gt;
 -2, --allele2-col &amp;lt;string&amp;gt;            Name of report file column containing allele 2&lt;br /&gt;
 -b, --b-allele-intensity-col &amp;lt;string&amp;gt; Name of report file column containing B allele intensity&lt;br /&gt;
 -m, --num-markers &amp;lt;int&amp;gt;               Maximum number of markers for contamination estimation&lt;br /&gt;
 -t, --threads &amp;lt;int&amp;gt;                   Number of threads for parallel computation&lt;br /&gt;
 -h, --help                            This help page&lt;br /&gt;
&lt;br /&gt;
= VICES Example =&lt;br /&gt;
&#039;&#039;&#039;Download Sample Files&#039;&#039;&#039; [[File:vices_test.zip|vices_test.zip]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Basic Command&#039;&#039;&#039; from within the directory with the example files:&lt;br /&gt;
 ~/vices/build/vices -r vices.test.report.list.txt -s vices.test.report.iids.txt -o vices.test.report.contam.txt&lt;br /&gt;
&lt;br /&gt;
Expected Output _:&lt;br /&gt;
 Recipient_ID    Estimated_contamination Sources&lt;br /&gt;
 iid_01  0.0107758       AF:0.00351165; Donor_iid_02:0.00726419&lt;br /&gt;
 iid_02  0.0371312       Donor_iid_01:0.0187088; Donor_iid_03:0.0184223&lt;br /&gt;
 iid_03  0.0791742       Donor_iid_01:0.0236221; Donor_iid_02:0.0165325; Donor_iid_08:0.0390197&lt;br /&gt;
 iid_04  0.0158945       AF:0.0158945&lt;br /&gt;
 iid_05  0.0535897       AF:0.025121; Donor_iid_04:0.0284687&lt;br /&gt;
 iid_06  0.0740575       AF:0.0346833; Donor_iid_04:0.0117261; Donor_iid_10:0.0276482&lt;br /&gt;
 iid_07  0.00551559      AF:0.00551559&lt;br /&gt;
 iid_08  -0.00673222     AF:-0.00673222&lt;br /&gt;
 iid_09  0.000255342     AF:0.000255342&lt;br /&gt;
 iid_10  9.90153e-05     AF:9.90153e-05&lt;br /&gt;
 iid_11  -0.00138426     AF:-0.00138426&lt;br /&gt;
 iid_12  -0.00588946     AF:-0.00588946&lt;br /&gt;
&lt;br /&gt;
= Citation =&lt;br /&gt;
A paper is in the works and should be published soon. For now, you can cite our abstract from the 2017 Biology of Genomes meeting&lt;br /&gt;
* G. J. M. Zajac, L. G. Fritsche, S. L. Dagenais, R. H. Lyons, C. M. Brummett, &amp;amp; G. Abecasis. &#039;&#039;VICES: Verify Intensity Contamination from Estimated Sources.&#039;&#039; Poster Session presented at: The Biology of Genomes; 2017 May 9-13; Cold Spring Harbor, NY.&lt;br /&gt;
&lt;br /&gt;
= Contact =&lt;br /&gt;
For questions or bug reports, email gzajac at umich.edu&lt;br /&gt;
&lt;br /&gt;
= Need Something Else? =&lt;br /&gt;
More Software: [[ContaminationDetection]]&lt;/div&gt;</summary>
		<author><name>Gzajac</name></author>
	</entry>
	<entry>
		<id>http://genome.sph.umich.edu/w/index.php?title=File:Vices_test.zip&amp;diff=15099</id>
		<title>File:Vices test.zip</title>
		<link rel="alternate" type="text/html" href="http://genome.sph.umich.edu/w/index.php?title=File:Vices_test.zip&amp;diff=15099"/>
		<updated>2019-04-12T17:02:24Z</updated>

		<summary type="html">&lt;p&gt;Gzajac: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Gzajac</name></author>
	</entry>
	<entry>
		<id>http://genome.sph.umich.edu/w/index.php?title=VICES&amp;diff=15098</id>
		<title>VICES</title>
		<link rel="alternate" type="text/html" href="http://genome.sph.umich.edu/w/index.php?title=VICES&amp;diff=15098"/>
		<updated>2019-04-12T15:40:34Z</updated>

		<summary type="html">&lt;p&gt;Gzajac: /* VICES Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Software|VICES]]&lt;br /&gt;
&lt;br /&gt;
= Introduction =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;VICES&#039;&#039;&#039; is a program that jointly estimates the proportion of contaminating DNA in samples genotyped on arrays and which other samples in the study it came from.&lt;br /&gt;
&lt;br /&gt;
= Download =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;GitHub Repo:&#039;&#039;&#039; [https://github.com/gjmzajac/vices https://github.com/gjmzajac/vices]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ZIP archive:&#039;&#039;&#039; [https://github.com/gjmzajac/vices/zipball/master/ https://github.com/gjmzajac/vices/zipball/master/]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ubuntu 16.04 x64 Binary&#039;&#039;&#039; [[File:vices_v1.0.tar.gz|vices_v1.0.tar.gz]]&lt;br /&gt;
&lt;br /&gt;
= Installation =&lt;br /&gt;
&lt;br /&gt;
The easiest way to install VICES is to use cget as follows:&lt;br /&gt;
 cget install --prefix &amp;lt;install_prefix&amp;gt; gjmzajac/VICES&lt;br /&gt;
&lt;br /&gt;
Alternatively, you can setup a dev environment cmake directly.&lt;br /&gt;
 cd vices&lt;br /&gt;
 cget install -f ./requirements.txt                     # Install dependencies locally.&lt;br /&gt;
 mkdir build &amp;amp;&amp;amp; cd build                                # Create out of source build directory.&lt;br /&gt;
 cmake -DCMAKE_TOOLCHAIN_FILE=./cget/cget/cget.cmake .. # Configure project with dependency paths.&lt;br /&gt;
 make                                                   # Build.&lt;br /&gt;
&lt;br /&gt;
= Usage =&lt;br /&gt;
To run, &lt;br /&gt;
 ./vices -r reports_list.txt -o contam_estimates.txt&lt;br /&gt;
&lt;br /&gt;
The reports_list.txt file must list the paths of all the Illumina report files (either plaintext or gzipped) you are testing. All files in a single run must be from the same type and version of array with exactly the same markers. Output will be written to the file contam_estimates.txt.&lt;br /&gt;
&lt;br /&gt;
The output consists of a header (with the number of samples, markers, etc.) then three tab-delimited columns:&lt;br /&gt;
*&#039;&#039;&#039;Recipient_Index&#039;&#039;&#039; the index (starting with 0) of the samples being tested. These are in the same order as in the file with paths to report files provided to VICES. If the --sample-list option is used and points to a file containing sample IDs in the same order as the report files, then this column becomes &#039;&#039;&#039;Recipient_ID&#039;&#039;&#039;.&lt;br /&gt;
*&#039;&#039;&#039;Estimated_contamination&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Sources&#039;&#039;&#039; A breakdown of the estimated sources of contamination. Most will have only one source (AF for allele frequencies) because VICES does not perform the donor search for samples with estimated contamination proportion &amp;lt; 0.005 by AF.&lt;br /&gt;
Example (simulated) report files and output are provided in the section below&lt;br /&gt;
&lt;br /&gt;
We highly recommend running VICES only within the same batches they were genotyped in as the donor estimation can take a long time if you give it a long list of over 1000 samples. Other reasons to run in batches are that samples genotyped in different runs are probably less likely to have traded DNA, and batch effects may influence the calculation of allele frequencies, an important initial step in VICES. Your sequencing core should provide some information on batches. If you don&#039;t have any batch information, then running VICES on one (or at most 20) 96-well plate at a time should also work well. &lt;br /&gt;
&lt;br /&gt;
If any duplicate/twin samples are contaminated, this could bias the results. You might want to consider excluding one of each duplicate/twin pair before running/rerunning.&lt;br /&gt;
&lt;br /&gt;
No external allele frequencies are required. VICES calculates these directly from the report files you provide.&lt;br /&gt;
&lt;br /&gt;
= Options =&lt;br /&gt;
 -r, --report-list &amp;lt;file&amp;gt;              File with paths to Illumina report files&lt;br /&gt;
 -o, --output &amp;lt;file&amp;gt;                   Write output to a file [standard output]&lt;br /&gt;
 -f, --maf-threshold &amp;lt;float&amp;gt;           Min minor allele frequency for markers&lt;br /&gt;
 -c, --contam-threshold &amp;lt;float&amp;gt;        Threshold for estimating donor samples&lt;br /&gt;
 -s, --sample-list &amp;lt;file&amp;gt;              File with sample ids for report files&lt;br /&gt;
 -a, --af-only                         Specify analysis with AF only. No donor estimation&lt;br /&gt;
 -n, --snp-name-col &amp;lt;string&amp;gt;           Name of report file column containing SNP names&lt;br /&gt;
 -1, --allele1-col &amp;lt;string&amp;gt;            Name of report file column containing allele 1&lt;br /&gt;
 -2, --allele2-col &amp;lt;string&amp;gt;            Name of report file column containing allele 2&lt;br /&gt;
 -b, --b-allele-intensity-col &amp;lt;string&amp;gt; Name of report file column containing B allele intensity&lt;br /&gt;
 -m, --num-markers &amp;lt;int&amp;gt;               Maximum number of markers for contamination estimation&lt;br /&gt;
 -t, --threads &amp;lt;int&amp;gt;                   Number of threads for parallel computation&lt;br /&gt;
 -h, --help                            This help page&lt;br /&gt;
&lt;br /&gt;
= VICES Example =&lt;br /&gt;
&#039;&#039;&#039;Download Sample Files&#039;&#039;&#039; [[File:vices_test.zip|vices_test.zip]]&lt;br /&gt;
&lt;br /&gt;
Basic Command:&lt;br /&gt;
 _&lt;br /&gt;
&lt;br /&gt;
Expected Output _:&lt;br /&gt;
 _&lt;br /&gt;
&lt;br /&gt;
= Citation =&lt;br /&gt;
A paper is in the works and should be published soon. For now, you can cite our abstract from the 2017 Biology of Genomes meeting&lt;br /&gt;
* G. J. M. Zajac, L. G. Fritsche, S. L. Dagenais, R. H. Lyons, C. M. Brummett, &amp;amp; G. Abecasis. &#039;&#039;VICES: Verify Intensity Contamination from Estimated Sources.&#039;&#039; Poster Session presented at: The Biology of Genomes; 2017 May 9-13; Cold Spring Harbor, NY.&lt;br /&gt;
&lt;br /&gt;
= Contact =&lt;br /&gt;
For questions or bug reports, email gzajac at umich.edu&lt;br /&gt;
&lt;br /&gt;
= Need Something Else? =&lt;br /&gt;
More Software: [[ContaminationDetection]]&lt;/div&gt;</summary>
		<author><name>Gzajac</name></author>
	</entry>
	<entry>
		<id>http://genome.sph.umich.edu/w/index.php?title=VICES&amp;diff=15097</id>
		<title>VICES</title>
		<link rel="alternate" type="text/html" href="http://genome.sph.umich.edu/w/index.php?title=VICES&amp;diff=15097"/>
		<updated>2019-04-12T15:34:05Z</updated>

		<summary type="html">&lt;p&gt;Gzajac: /* Installation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Software|VICES]]&lt;br /&gt;
&lt;br /&gt;
= Introduction =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;VICES&#039;&#039;&#039; is a program that jointly estimates the proportion of contaminating DNA in samples genotyped on arrays and which other samples in the study it came from.&lt;br /&gt;
&lt;br /&gt;
= Download =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;GitHub Repo:&#039;&#039;&#039; [https://github.com/gjmzajac/vices https://github.com/gjmzajac/vices]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ZIP archive:&#039;&#039;&#039; [https://github.com/gjmzajac/vices/zipball/master/ https://github.com/gjmzajac/vices/zipball/master/]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ubuntu 16.04 x64 Binary&#039;&#039;&#039; [[File:vices_v1.0.tar.gz|vices_v1.0.tar.gz]]&lt;br /&gt;
&lt;br /&gt;
= Installation =&lt;br /&gt;
&lt;br /&gt;
The easiest way to install VICES is to use cget as follows:&lt;br /&gt;
 cget install --prefix &amp;lt;install_prefix&amp;gt; gjmzajac/VICES&lt;br /&gt;
&lt;br /&gt;
Alternatively, you can setup a dev environment cmake directly.&lt;br /&gt;
 cd vices&lt;br /&gt;
 cget install -f ./requirements.txt                     # Install dependencies locally.&lt;br /&gt;
 mkdir build &amp;amp;&amp;amp; cd build                                # Create out of source build directory.&lt;br /&gt;
 cmake -DCMAKE_TOOLCHAIN_FILE=./cget/cget/cget.cmake .. # Configure project with dependency paths.&lt;br /&gt;
 make                                                   # Build.&lt;br /&gt;
&lt;br /&gt;
= Usage =&lt;br /&gt;
To run, &lt;br /&gt;
 ./vices -r reports_list.txt -o contam_estimates.txt&lt;br /&gt;
&lt;br /&gt;
The reports_list.txt file must list the paths of all the Illumina report files (either plaintext or gzipped) you are testing. All files in a single run must be from the same type and version of array with exactly the same markers. Output will be written to the file contam_estimates.txt.&lt;br /&gt;
&lt;br /&gt;
The output consists of a header (with the number of samples, markers, etc.) then three tab-delimited columns:&lt;br /&gt;
*&#039;&#039;&#039;Recipient_Index&#039;&#039;&#039; the index (starting with 0) of the samples being tested. These are in the same order as in the file with paths to report files provided to VICES. If the --sample-list option is used and points to a file containing sample IDs in the same order as the report files, then this column becomes &#039;&#039;&#039;Recipient_ID&#039;&#039;&#039;.&lt;br /&gt;
*&#039;&#039;&#039;Estimated_contamination&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Sources&#039;&#039;&#039; A breakdown of the estimated sources of contamination. Most will have only one source (AF for allele frequencies) because VICES does not perform the donor search for samples with estimated contamination proportion &amp;lt; 0.005 by AF.&lt;br /&gt;
Example (simulated) report files and output are provided in the section below&lt;br /&gt;
&lt;br /&gt;
We highly recommend running VICES only within the same batches they were genotyped in as the donor estimation can take a long time if you give it a long list of over 1000 samples. Other reasons to run in batches are that samples genotyped in different runs are probably less likely to have traded DNA, and batch effects may influence the calculation of allele frequencies, an important initial step in VICES. Your sequencing core should provide some information on batches. If you don&#039;t have any batch information, then running VICES on one (or at most 20) 96-well plate at a time should also work well. &lt;br /&gt;
&lt;br /&gt;
If any duplicate/twin samples are contaminated, this could bias the results. You might want to consider excluding one of each duplicate/twin pair before running/rerunning.&lt;br /&gt;
&lt;br /&gt;
No external allele frequencies are required. VICES calculates these directly from the report files you provide.&lt;br /&gt;
&lt;br /&gt;
= Options =&lt;br /&gt;
 -r, --report-list &amp;lt;file&amp;gt;              File with paths to Illumina report files&lt;br /&gt;
 -o, --output &amp;lt;file&amp;gt;                   Write output to a file [standard output]&lt;br /&gt;
 -f, --maf-threshold &amp;lt;float&amp;gt;           Min minor allele frequency for markers&lt;br /&gt;
 -c, --contam-threshold &amp;lt;float&amp;gt;        Threshold for estimating donor samples&lt;br /&gt;
 -s, --sample-list &amp;lt;file&amp;gt;              File with sample ids for report files&lt;br /&gt;
 -a, --af-only                         Specify analysis with AF only. No donor estimation&lt;br /&gt;
 -n, --snp-name-col &amp;lt;string&amp;gt;           Name of report file column containing SNP names&lt;br /&gt;
 -1, --allele1-col &amp;lt;string&amp;gt;            Name of report file column containing allele 1&lt;br /&gt;
 -2, --allele2-col &amp;lt;string&amp;gt;            Name of report file column containing allele 2&lt;br /&gt;
 -b, --b-allele-intensity-col &amp;lt;string&amp;gt; Name of report file column containing B allele intensity&lt;br /&gt;
 -m, --num-markers &amp;lt;int&amp;gt;               Maximum number of markers for contamination estimation&lt;br /&gt;
 -t, --threads &amp;lt;int&amp;gt;                   Number of threads for parallel computation&lt;br /&gt;
 -h, --help                            This help page&lt;br /&gt;
&lt;br /&gt;
= VICES Example =&lt;br /&gt;
Coming soon&lt;br /&gt;
&lt;br /&gt;
= Citation =&lt;br /&gt;
A paper is in the works and should be published soon. For now, you can cite our abstract from the 2017 Biology of Genomes meeting&lt;br /&gt;
* G. J. M. Zajac, L. G. Fritsche, S. L. Dagenais, R. H. Lyons, C. M. Brummett, &amp;amp; G. Abecasis. &#039;&#039;VICES: Verify Intensity Contamination from Estimated Sources.&#039;&#039; Poster Session presented at: The Biology of Genomes; 2017 May 9-13; Cold Spring Harbor, NY.&lt;br /&gt;
&lt;br /&gt;
= Contact =&lt;br /&gt;
For questions or bug reports, email gzajac at umich.edu&lt;br /&gt;
&lt;br /&gt;
= Need Something Else? =&lt;br /&gt;
More Software: [[ContaminationDetection]]&lt;/div&gt;</summary>
		<author><name>Gzajac</name></author>
	</entry>
	<entry>
		<id>http://genome.sph.umich.edu/w/index.php?title=VICES&amp;diff=15096</id>
		<title>VICES</title>
		<link rel="alternate" type="text/html" href="http://genome.sph.umich.edu/w/index.php?title=VICES&amp;diff=15096"/>
		<updated>2019-04-12T15:33:47Z</updated>

		<summary type="html">&lt;p&gt;Gzajac: /* Download */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Software|VICES]]&lt;br /&gt;
&lt;br /&gt;
= Introduction =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;VICES&#039;&#039;&#039; is a program that jointly estimates the proportion of contaminating DNA in samples genotyped on arrays and which other samples in the study it came from.&lt;br /&gt;
&lt;br /&gt;
= Download =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;GitHub Repo:&#039;&#039;&#039; [https://github.com/gjmzajac/vices https://github.com/gjmzajac/vices]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ZIP archive:&#039;&#039;&#039; [https://github.com/gjmzajac/vices/zipball/master/ https://github.com/gjmzajac/vices/zipball/master/]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ubuntu 16.04 x64 Binary&#039;&#039;&#039; [[File:vices_v1.0.tar.gz|vices_v1.0.tar.gz]]&lt;br /&gt;
&lt;br /&gt;
= Installation =&lt;br /&gt;
&lt;br /&gt;
The easiest way to install VICES is to use cget as follows:&lt;br /&gt;
 cget install --prefix &amp;lt;install_prefix&amp;gt; gjmzajac/VICES&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Alternatively, you can setup a dev environment cmake directly.&lt;br /&gt;
 cd vices&lt;br /&gt;
 cget install -f ./requirements.txt                     # Install dependencies locally.&lt;br /&gt;
 mkdir build &amp;amp;&amp;amp; cd build                                # Create out of source build directory.&lt;br /&gt;
 cmake -DCMAKE_TOOLCHAIN_FILE=./cget/cget/cget.cmake .. # Configure project with dependency paths.&lt;br /&gt;
 make                                                   # Build.&lt;br /&gt;
&lt;br /&gt;
= Usage =&lt;br /&gt;
To run, &lt;br /&gt;
 ./vices -r reports_list.txt -o contam_estimates.txt&lt;br /&gt;
&lt;br /&gt;
The reports_list.txt file must list the paths of all the Illumina report files (either plaintext or gzipped) you are testing. All files in a single run must be from the same type and version of array with exactly the same markers. Output will be written to the file contam_estimates.txt.&lt;br /&gt;
&lt;br /&gt;
The output consists of a header (with the number of samples, markers, etc.) then three tab-delimited columns:&lt;br /&gt;
*&#039;&#039;&#039;Recipient_Index&#039;&#039;&#039; the index (starting with 0) of the samples being tested. These are in the same order as in the file with paths to report files provided to VICES. If the --sample-list option is used and points to a file containing sample IDs in the same order as the report files, then this column becomes &#039;&#039;&#039;Recipient_ID&#039;&#039;&#039;.&lt;br /&gt;
*&#039;&#039;&#039;Estimated_contamination&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Sources&#039;&#039;&#039; A breakdown of the estimated sources of contamination. Most will have only one source (AF for allele frequencies) because VICES does not perform the donor search for samples with estimated contamination proportion &amp;lt; 0.005 by AF.&lt;br /&gt;
Example (simulated) report files and output are provided in the section below&lt;br /&gt;
&lt;br /&gt;
We highly recommend running VICES only within the same batches they were genotyped in as the donor estimation can take a long time if you give it a long list of over 1000 samples. Other reasons to run in batches are that samples genotyped in different runs are probably less likely to have traded DNA, and batch effects may influence the calculation of allele frequencies, an important initial step in VICES. Your sequencing core should provide some information on batches. If you don&#039;t have any batch information, then running VICES on one (or at most 20) 96-well plate at a time should also work well. &lt;br /&gt;
&lt;br /&gt;
If any duplicate/twin samples are contaminated, this could bias the results. You might want to consider excluding one of each duplicate/twin pair before running/rerunning.&lt;br /&gt;
&lt;br /&gt;
No external allele frequencies are required. VICES calculates these directly from the report files you provide.&lt;br /&gt;
&lt;br /&gt;
= Options =&lt;br /&gt;
 -r, --report-list &amp;lt;file&amp;gt;              File with paths to Illumina report files&lt;br /&gt;
 -o, --output &amp;lt;file&amp;gt;                   Write output to a file [standard output]&lt;br /&gt;
 -f, --maf-threshold &amp;lt;float&amp;gt;           Min minor allele frequency for markers&lt;br /&gt;
 -c, --contam-threshold &amp;lt;float&amp;gt;        Threshold for estimating donor samples&lt;br /&gt;
 -s, --sample-list &amp;lt;file&amp;gt;              File with sample ids for report files&lt;br /&gt;
 -a, --af-only                         Specify analysis with AF only. No donor estimation&lt;br /&gt;
 -n, --snp-name-col &amp;lt;string&amp;gt;           Name of report file column containing SNP names&lt;br /&gt;
 -1, --allele1-col &amp;lt;string&amp;gt;            Name of report file column containing allele 1&lt;br /&gt;
 -2, --allele2-col &amp;lt;string&amp;gt;            Name of report file column containing allele 2&lt;br /&gt;
 -b, --b-allele-intensity-col &amp;lt;string&amp;gt; Name of report file column containing B allele intensity&lt;br /&gt;
 -m, --num-markers &amp;lt;int&amp;gt;               Maximum number of markers for contamination estimation&lt;br /&gt;
 -t, --threads &amp;lt;int&amp;gt;                   Number of threads for parallel computation&lt;br /&gt;
 -h, --help                            This help page&lt;br /&gt;
&lt;br /&gt;
= VICES Example =&lt;br /&gt;
Coming soon&lt;br /&gt;
&lt;br /&gt;
= Citation =&lt;br /&gt;
A paper is in the works and should be published soon. For now, you can cite our abstract from the 2017 Biology of Genomes meeting&lt;br /&gt;
* G. J. M. Zajac, L. G. Fritsche, S. L. Dagenais, R. H. Lyons, C. M. Brummett, &amp;amp; G. Abecasis. &#039;&#039;VICES: Verify Intensity Contamination from Estimated Sources.&#039;&#039; Poster Session presented at: The Biology of Genomes; 2017 May 9-13; Cold Spring Harbor, NY.&lt;br /&gt;
&lt;br /&gt;
= Contact =&lt;br /&gt;
For questions or bug reports, email gzajac at umich.edu&lt;br /&gt;
&lt;br /&gt;
= Need Something Else? =&lt;br /&gt;
More Software: [[ContaminationDetection]]&lt;/div&gt;</summary>
		<author><name>Gzajac</name></author>
	</entry>
	<entry>
		<id>http://genome.sph.umich.edu/w/index.php?title=VICES&amp;diff=15095</id>
		<title>VICES</title>
		<link rel="alternate" type="text/html" href="http://genome.sph.umich.edu/w/index.php?title=VICES&amp;diff=15095"/>
		<updated>2019-04-12T15:25:18Z</updated>

		<summary type="html">&lt;p&gt;Gzajac: /* Download */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Software|VICES]]&lt;br /&gt;
&lt;br /&gt;
= Introduction =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;VICES&#039;&#039;&#039; is a program that jointly estimates the proportion of contaminating DNA in samples genotyped on arrays and which other samples in the study it came from.&lt;br /&gt;
&lt;br /&gt;
= Download =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;GitHub Repo:&#039;&#039;&#039; [https://github.com/gjmzajac/vices https://github.com/gjmzajac/vices]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ZIP archive:&#039;&#039;&#039; [https://github.com/gjmzajac/vices/zipball/master/ https://github.com/gjmzajac/vices/zipball/master/]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ubuntu 16.04 x64 Binary&#039;&#039;&#039; [[File:vices_v1.0.tar.gz|vices_v1.0.tar.gz]]&lt;br /&gt;
&lt;br /&gt;
= Usage =&lt;br /&gt;
To run, &lt;br /&gt;
 ./vices -r reports_list.txt -o contam_estimates.txt&lt;br /&gt;
&lt;br /&gt;
The reports_list.txt file must list the paths of all the Illumina report files (either plaintext or gzipped) you are testing. All files in a single run must be from the same type and version of array with exactly the same markers. Output will be written to the file contam_estimates.txt.&lt;br /&gt;
&lt;br /&gt;
The output consists of a header (with the number of samples, markers, etc.) then three tab-delimited columns:&lt;br /&gt;
*&#039;&#039;&#039;Recipient_Index&#039;&#039;&#039; the index (starting with 0) of the samples being tested. These are in the same order as in the file with paths to report files provided to VICES. If the --sample-list option is used and points to a file containing sample IDs in the same order as the report files, then this column becomes &#039;&#039;&#039;Recipient_ID&#039;&#039;&#039;.&lt;br /&gt;
*&#039;&#039;&#039;Estimated_contamination&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Sources&#039;&#039;&#039; A breakdown of the estimated sources of contamination. Most will have only one source (AF for allele frequencies) because VICES does not perform the donor search for samples with estimated contamination proportion &amp;lt; 0.005 by AF.&lt;br /&gt;
Example (simulated) report files and output are provided in the section below&lt;br /&gt;
&lt;br /&gt;
We highly recommend running VICES only within the same batches they were genotyped in as the donor estimation can take a long time if you give it a long list of over 1000 samples. Other reasons to run in batches are that samples genotyped in different runs are probably less likely to have traded DNA, and batch effects may influence the calculation of allele frequencies, an important initial step in VICES. Your sequencing core should provide some information on batches. If you don&#039;t have any batch information, then running VICES on one (or at most 20) 96-well plate at a time should also work well. &lt;br /&gt;
&lt;br /&gt;
If any duplicate/twin samples are contaminated, this could bias the results. You might want to consider excluding one of each duplicate/twin pair before running/rerunning.&lt;br /&gt;
&lt;br /&gt;
No external allele frequencies are required. VICES calculates these directly from the report files you provide.&lt;br /&gt;
&lt;br /&gt;
= Options =&lt;br /&gt;
 -r, --report-list &amp;lt;file&amp;gt;              File with paths to Illumina report files&lt;br /&gt;
 -o, --output &amp;lt;file&amp;gt;                   Write output to a file [standard output]&lt;br /&gt;
 -f, --maf-threshold &amp;lt;float&amp;gt;           Min minor allele frequency for markers&lt;br /&gt;
 -c, --contam-threshold &amp;lt;float&amp;gt;        Threshold for estimating donor samples&lt;br /&gt;
 -s, --sample-list &amp;lt;file&amp;gt;              File with sample ids for report files&lt;br /&gt;
 -a, --af-only                         Specify analysis with AF only. No donor estimation&lt;br /&gt;
 -n, --snp-name-col &amp;lt;string&amp;gt;           Name of report file column containing SNP names&lt;br /&gt;
 -1, --allele1-col &amp;lt;string&amp;gt;            Name of report file column containing allele 1&lt;br /&gt;
 -2, --allele2-col &amp;lt;string&amp;gt;            Name of report file column containing allele 2&lt;br /&gt;
 -b, --b-allele-intensity-col &amp;lt;string&amp;gt; Name of report file column containing B allele intensity&lt;br /&gt;
 -m, --num-markers &amp;lt;int&amp;gt;               Maximum number of markers for contamination estimation&lt;br /&gt;
 -t, --threads &amp;lt;int&amp;gt;                   Number of threads for parallel computation&lt;br /&gt;
 -h, --help                            This help page&lt;br /&gt;
&lt;br /&gt;
= VICES Example =&lt;br /&gt;
Coming soon&lt;br /&gt;
&lt;br /&gt;
= Citation =&lt;br /&gt;
A paper is in the works and should be published soon. For now, you can cite our abstract from the 2017 Biology of Genomes meeting&lt;br /&gt;
* G. J. M. Zajac, L. G. Fritsche, S. L. Dagenais, R. H. Lyons, C. M. Brummett, &amp;amp; G. Abecasis. &#039;&#039;VICES: Verify Intensity Contamination from Estimated Sources.&#039;&#039; Poster Session presented at: The Biology of Genomes; 2017 May 9-13; Cold Spring Harbor, NY.&lt;br /&gt;
&lt;br /&gt;
= Contact =&lt;br /&gt;
For questions or bug reports, email gzajac at umich.edu&lt;br /&gt;
&lt;br /&gt;
= Need Something Else? =&lt;br /&gt;
More Software: [[ContaminationDetection]]&lt;/div&gt;</summary>
		<author><name>Gzajac</name></author>
	</entry>
	<entry>
		<id>http://genome.sph.umich.edu/w/index.php?title=VICES&amp;diff=15094</id>
		<title>VICES</title>
		<link rel="alternate" type="text/html" href="http://genome.sph.umich.edu/w/index.php?title=VICES&amp;diff=15094"/>
		<updated>2019-04-12T15:24:14Z</updated>

		<summary type="html">&lt;p&gt;Gzajac: /* Download */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Software|VICES]]&lt;br /&gt;
&lt;br /&gt;
= Introduction =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;VICES&#039;&#039;&#039; is a program that jointly estimates the proportion of contaminating DNA in samples genotyped on arrays and which other samples in the study it came from.&lt;br /&gt;
&lt;br /&gt;
= Download =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;GitHub Repo:&#039;&#039;&#039; [https://github.com/gjmzajac/vices https://github.com/gjmzajac/vices]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ZIP archive:&#039;&#039;&#039; [https://github.com/gjmzajac/vices/zipball/master/ https://github.com/gjmzajac/vices/zipball/master/]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ubuntu 16.04 x64 Binary&#039;&#039;&#039; [[vices_v1.0.tar.gz|vices_v1.0.tar.gz]]&lt;br /&gt;
&lt;br /&gt;
= Usage =&lt;br /&gt;
To run, &lt;br /&gt;
 ./vices -r reports_list.txt -o contam_estimates.txt&lt;br /&gt;
&lt;br /&gt;
The reports_list.txt file must list the paths of all the Illumina report files (either plaintext or gzipped) you are testing. All files in a single run must be from the same type and version of array with exactly the same markers. Output will be written to the file contam_estimates.txt.&lt;br /&gt;
&lt;br /&gt;
The output consists of a header (with the number of samples, markers, etc.) then three tab-delimited columns:&lt;br /&gt;
*&#039;&#039;&#039;Recipient_Index&#039;&#039;&#039; the index (starting with 0) of the samples being tested. These are in the same order as in the file with paths to report files provided to VICES. If the --sample-list option is used and points to a file containing sample IDs in the same order as the report files, then this column becomes &#039;&#039;&#039;Recipient_ID&#039;&#039;&#039;.&lt;br /&gt;
*&#039;&#039;&#039;Estimated_contamination&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Sources&#039;&#039;&#039; A breakdown of the estimated sources of contamination. Most will have only one source (AF for allele frequencies) because VICES does not perform the donor search for samples with estimated contamination proportion &amp;lt; 0.005 by AF.&lt;br /&gt;
Example (simulated) report files and output are provided in the section below&lt;br /&gt;
&lt;br /&gt;
We highly recommend running VICES only within the same batches they were genotyped in as the donor estimation can take a long time if you give it a long list of over 1000 samples. Other reasons to run in batches are that samples genotyped in different runs are probably less likely to have traded DNA, and batch effects may influence the calculation of allele frequencies, an important initial step in VICES. Your sequencing core should provide some information on batches. If you don&#039;t have any batch information, then running VICES on one (or at most 20) 96-well plate at a time should also work well. &lt;br /&gt;
&lt;br /&gt;
If any duplicate/twin samples are contaminated, this could bias the results. You might want to consider excluding one of each duplicate/twin pair before running/rerunning.&lt;br /&gt;
&lt;br /&gt;
No external allele frequencies are required. VICES calculates these directly from the report files you provide.&lt;br /&gt;
&lt;br /&gt;
= Options =&lt;br /&gt;
 -r, --report-list &amp;lt;file&amp;gt;              File with paths to Illumina report files&lt;br /&gt;
 -o, --output &amp;lt;file&amp;gt;                   Write output to a file [standard output]&lt;br /&gt;
 -f, --maf-threshold &amp;lt;float&amp;gt;           Min minor allele frequency for markers&lt;br /&gt;
 -c, --contam-threshold &amp;lt;float&amp;gt;        Threshold for estimating donor samples&lt;br /&gt;
 -s, --sample-list &amp;lt;file&amp;gt;              File with sample ids for report files&lt;br /&gt;
 -a, --af-only                         Specify analysis with AF only. No donor estimation&lt;br /&gt;
 -n, --snp-name-col &amp;lt;string&amp;gt;           Name of report file column containing SNP names&lt;br /&gt;
 -1, --allele1-col &amp;lt;string&amp;gt;            Name of report file column containing allele 1&lt;br /&gt;
 -2, --allele2-col &amp;lt;string&amp;gt;            Name of report file column containing allele 2&lt;br /&gt;
 -b, --b-allele-intensity-col &amp;lt;string&amp;gt; Name of report file column containing B allele intensity&lt;br /&gt;
 -m, --num-markers &amp;lt;int&amp;gt;               Maximum number of markers for contamination estimation&lt;br /&gt;
 -t, --threads &amp;lt;int&amp;gt;                   Number of threads for parallel computation&lt;br /&gt;
 -h, --help                            This help page&lt;br /&gt;
&lt;br /&gt;
= VICES Example =&lt;br /&gt;
Coming soon&lt;br /&gt;
&lt;br /&gt;
= Citation =&lt;br /&gt;
A paper is in the works and should be published soon. For now, you can cite our abstract from the 2017 Biology of Genomes meeting&lt;br /&gt;
* G. J. M. Zajac, L. G. Fritsche, S. L. Dagenais, R. H. Lyons, C. M. Brummett, &amp;amp; G. Abecasis. &#039;&#039;VICES: Verify Intensity Contamination from Estimated Sources.&#039;&#039; Poster Session presented at: The Biology of Genomes; 2017 May 9-13; Cold Spring Harbor, NY.&lt;br /&gt;
&lt;br /&gt;
= Contact =&lt;br /&gt;
For questions or bug reports, email gzajac at umich.edu&lt;br /&gt;
&lt;br /&gt;
= Need Something Else? =&lt;br /&gt;
More Software: [[ContaminationDetection]]&lt;/div&gt;</summary>
		<author><name>Gzajac</name></author>
	</entry>
	<entry>
		<id>http://genome.sph.umich.edu/w/index.php?title=File:Vices_v1.0.tar.gz&amp;diff=15093</id>
		<title>File:Vices v1.0.tar.gz</title>
		<link rel="alternate" type="text/html" href="http://genome.sph.umich.edu/w/index.php?title=File:Vices_v1.0.tar.gz&amp;diff=15093"/>
		<updated>2019-04-12T15:23:13Z</updated>

		<summary type="html">&lt;p&gt;Gzajac: Gzajac uploaded a new version of File:Vices v1.0.tar.gz&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Gzajac</name></author>
	</entry>
	<entry>
		<id>http://genome.sph.umich.edu/w/index.php?title=File:Vices_v1.0.tar.gz&amp;diff=15073</id>
		<title>File:Vices v1.0.tar.gz</title>
		<link rel="alternate" type="text/html" href="http://genome.sph.umich.edu/w/index.php?title=File:Vices_v1.0.tar.gz&amp;diff=15073"/>
		<updated>2019-02-22T19:11:01Z</updated>

		<summary type="html">&lt;p&gt;Gzajac: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Gzajac</name></author>
	</entry>
	<entry>
		<id>http://genome.sph.umich.edu/w/index.php?title=VICES&amp;diff=15072</id>
		<title>VICES</title>
		<link rel="alternate" type="text/html" href="http://genome.sph.umich.edu/w/index.php?title=VICES&amp;diff=15072"/>
		<updated>2019-02-22T19:10:35Z</updated>

		<summary type="html">&lt;p&gt;Gzajac: /* Download */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Software|VICES]]&lt;br /&gt;
&lt;br /&gt;
= Introduction =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;VICES&#039;&#039;&#039; is a program that jointly estimates the proportion of contaminating DNA in samples genotyped on arrays and which other samples in the study it came from.&lt;br /&gt;
&lt;br /&gt;
= Download =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;GitHub Repo:&#039;&#039;&#039; [https://github.com/gjmzajac/vices https://github.com/gjmzajac/vices]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ZIP archive:&#039;&#039;&#039; [https://github.com/gjmzajac/vices/zipball/master/ https://github.com/gjmzajac/vices/zipball/master/]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ubuntu 16.04 x64 Binary&#039;&#039;&#039; [[File:vices_v1.0.tar.gz|vices_v1.0.tar.gz]]&lt;br /&gt;
&lt;br /&gt;
= Usage =&lt;br /&gt;
To run, &lt;br /&gt;
 ./vices -r reports_list.txt -o contam_estimates.txt&lt;br /&gt;
&lt;br /&gt;
The reports_list.txt file must list the paths of all the Illumina report files (either plaintext or gzipped) you are testing. All files in a single run must be from the same type and version of array with exactly the same markers. Output will be written to the file contam_estimates.txt.&lt;br /&gt;
&lt;br /&gt;
The output consists of a header (with the number of samples, markers, etc.) then three tab-delimited columns:&lt;br /&gt;
*&#039;&#039;&#039;Recipient_Index&#039;&#039;&#039; the index (starting with 0) of the samples being tested. These are in the same order as in the file with paths to report files provided to VICES. If the --sample-list option is used and points to a file containing sample IDs in the same order as the report files, then this column becomes &#039;&#039;&#039;Recipient_ID&#039;&#039;&#039;.&lt;br /&gt;
*&#039;&#039;&#039;Estimated_contamination&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Sources&#039;&#039;&#039; A breakdown of the estimated sources of contamination. Most will have only one source (AF for allele frequencies) because VICES does not perform the donor search for samples with estimated contamination proportion &amp;lt; 0.005 by AF.&lt;br /&gt;
Example (simulated) report files and output are provided in the section below&lt;br /&gt;
&lt;br /&gt;
We highly recommend running VICES only within the same batches they were genotyped in as the donor estimation can take a long time if you give it a long list of over 1000 samples. Other reasons to run in batches are that samples genotyped in different runs are probably less likely to have traded DNA, and batch effects may influence the calculation of allele frequencies, an important initial step in VICES. Your sequencing core should provide some information on batches. If you don&#039;t have any batch information, then running VICES on one (or at most 20) 96-well plate at a time should also work well. &lt;br /&gt;
&lt;br /&gt;
If any duplicate/twin samples are contaminated, this could bias the results. You might want to consider excluding one of each duplicate/twin pair before running/rerunning.&lt;br /&gt;
&lt;br /&gt;
No external allele frequencies are required. VICES calculates these directly from the report files you provide.&lt;br /&gt;
&lt;br /&gt;
= Options =&lt;br /&gt;
 -r, --report-list &amp;lt;file&amp;gt;              File with paths to Illumina report files&lt;br /&gt;
 -o, --output &amp;lt;file&amp;gt;                   Write output to a file [standard output]&lt;br /&gt;
 -f, --maf-threshold &amp;lt;float&amp;gt;           Min minor allele frequency for markers&lt;br /&gt;
 -c, --contam-threshold &amp;lt;float&amp;gt;        Threshold for estimating donor samples&lt;br /&gt;
 -s, --sample-list &amp;lt;file&amp;gt;              File with sample ids for report files&lt;br /&gt;
 -a, --af-only                         Specify analysis with AF only. No donor estimation&lt;br /&gt;
 -n, --snp-name-col &amp;lt;string&amp;gt;           Name of report file column containing SNP names&lt;br /&gt;
 -1, --allele1-col &amp;lt;string&amp;gt;            Name of report file column containing allele 1&lt;br /&gt;
 -2, --allele2-col &amp;lt;string&amp;gt;            Name of report file column containing allele 2&lt;br /&gt;
 -b, --b-allele-intensity-col &amp;lt;string&amp;gt; Name of report file column containing B allele intensity&lt;br /&gt;
 -m, --num-markers &amp;lt;int&amp;gt;               Maximum number of markers for contamination estimation&lt;br /&gt;
 -t, --threads &amp;lt;int&amp;gt;                   Number of threads for parallel computation&lt;br /&gt;
 -h, --help                            This help page&lt;br /&gt;
&lt;br /&gt;
= VICES Example =&lt;br /&gt;
Coming soon&lt;br /&gt;
&lt;br /&gt;
= Citation =&lt;br /&gt;
A paper is in the works and should be published soon. For now, you can cite our abstract from the 2017 Biology of Genomes meeting&lt;br /&gt;
* G. J. M. Zajac, L. G. Fritsche, S. L. Dagenais, R. H. Lyons, C. M. Brummett, &amp;amp; G. Abecasis. &#039;&#039;VICES: Verify Intensity Contamination from Estimated Sources.&#039;&#039; Poster Session presented at: The Biology of Genomes; 2017 May 9-13; Cold Spring Harbor, NY.&lt;br /&gt;
&lt;br /&gt;
= Contact =&lt;br /&gt;
For questions or bug reports, email gzajac at umich.edu&lt;br /&gt;
&lt;br /&gt;
= Need Something Else? =&lt;br /&gt;
More Software: [[ContaminationDetection]]&lt;/div&gt;</summary>
		<author><name>Gzajac</name></author>
	</entry>
	<entry>
		<id>http://genome.sph.umich.edu/w/index.php?title=VICES&amp;diff=15070</id>
		<title>VICES</title>
		<link rel="alternate" type="text/html" href="http://genome.sph.umich.edu/w/index.php?title=VICES&amp;diff=15070"/>
		<updated>2019-02-13T01:55:08Z</updated>

		<summary type="html">&lt;p&gt;Gzajac: /* Download */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Software|VICES]]&lt;br /&gt;
&lt;br /&gt;
= Introduction =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;VICES&#039;&#039;&#039; is a program that jointly estimates the proportion of contaminating DNA in samples genotyped on arrays and which other samples in the study it came from.&lt;br /&gt;
&lt;br /&gt;
= Download =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;GitHub Repo:&#039;&#039;&#039; [https://github.com/gjmzajac/vices https://github.com/gjmzajac/vices]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ZIP archive:&#039;&#039;&#039; [https://github.com/gjmzajac/vices/zipball/master/ https://github.com/gjmzajac/vices/zipball/master/]&lt;br /&gt;
&amp;lt;!---&lt;br /&gt;
&#039;&#039;&#039;Ubuntu x64 Binary&#039;&#039;&#039; [[File:vices_v1.0|vices_v1.0]]&lt;br /&gt;
---&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Usage =&lt;br /&gt;
To run, &lt;br /&gt;
 ./vices -r reports_list.txt -o contam_estimates.txt&lt;br /&gt;
&lt;br /&gt;
The reports_list.txt file must list the paths of all the Illumina report files (either plaintext or gzipped) you are testing. All files in a single run must be from the same type and version of array with exactly the same markers. Output will be written to the file contam_estimates.txt.&lt;br /&gt;
&lt;br /&gt;
The output consists of a header (with the number of samples, markers, etc.) then three tab-delimited columns:&lt;br /&gt;
*&#039;&#039;&#039;Recipient_Index&#039;&#039;&#039; the index (starting with 0) of the samples being tested. These are in the same order as in the file with paths to report files provided to VICES. If the --sample-list option is used and points to a file containing sample IDs in the same order as the report files, then this column becomes &#039;&#039;&#039;Recipient_ID&#039;&#039;&#039;.&lt;br /&gt;
*&#039;&#039;&#039;Estimated_contamination&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Sources&#039;&#039;&#039; A breakdown of the estimated sources of contamination. Most will have only one source (AF for allele frequencies) because VICES does not perform the donor search for samples with estimated contamination proportion &amp;lt; 0.005 by AF.&lt;br /&gt;
Example (simulated) report files and output are provided in the section below&lt;br /&gt;
&lt;br /&gt;
We highly recommend running VICES only within the same batches they were genotyped in as the donor estimation can take a long time if you give it a long list of over 1000 samples. Other reasons to run in batches are that samples genotyped in different runs are probably less likely to have traded DNA, and batch effects may influence the calculation of allele frequencies, an important initial step in VICES. Your sequencing core should provide some information on batches. If you don&#039;t have any batch information, then running VICES on one (or at most 20) 96-well plate at a time should also work well. &lt;br /&gt;
&lt;br /&gt;
If any duplicate/twin samples are contaminated, this could bias the results. You might want to consider excluding one of each duplicate/twin pair before running/rerunning.&lt;br /&gt;
&lt;br /&gt;
No external allele frequencies are required. VICES calculates these directly from the report files you provide.&lt;br /&gt;
&lt;br /&gt;
= Options =&lt;br /&gt;
 -r, --report-list &amp;lt;file&amp;gt;              File with paths to Illumina report files&lt;br /&gt;
 -o, --output &amp;lt;file&amp;gt;                   Write output to a file [standard output]&lt;br /&gt;
 -f, --maf-threshold &amp;lt;float&amp;gt;           Min minor allele frequency for markers&lt;br /&gt;
 -c, --contam-threshold &amp;lt;float&amp;gt;        Threshold for estimating donor samples&lt;br /&gt;
 -s, --sample-list &amp;lt;file&amp;gt;              File with sample ids for report files&lt;br /&gt;
 -a, --af-only                         Specify analysis with AF only. No donor estimation&lt;br /&gt;
 -n, --snp-name-col &amp;lt;string&amp;gt;           Name of report file column containing SNP names&lt;br /&gt;
 -1, --allele1-col &amp;lt;string&amp;gt;            Name of report file column containing allele 1&lt;br /&gt;
 -2, --allele2-col &amp;lt;string&amp;gt;            Name of report file column containing allele 2&lt;br /&gt;
 -b, --b-allele-intensity-col &amp;lt;string&amp;gt; Name of report file column containing B allele intensity&lt;br /&gt;
 -m, --num-markers &amp;lt;int&amp;gt;               Maximum number of markers for contamination estimation&lt;br /&gt;
 -t, --threads &amp;lt;int&amp;gt;                   Number of threads for parallel computation&lt;br /&gt;
 -h, --help                            This help page&lt;br /&gt;
&lt;br /&gt;
= VICES Example =&lt;br /&gt;
Coming soon&lt;br /&gt;
&lt;br /&gt;
= Citation =&lt;br /&gt;
A paper is in the works and should be published soon. For now, you can cite our abstract from the 2017 Biology of Genomes meeting&lt;br /&gt;
* G. J. M. Zajac, L. G. Fritsche, S. L. Dagenais, R. H. Lyons, C. M. Brummett, &amp;amp; G. Abecasis. &#039;&#039;VICES: Verify Intensity Contamination from Estimated Sources.&#039;&#039; Poster Session presented at: The Biology of Genomes; 2017 May 9-13; Cold Spring Harbor, NY.&lt;br /&gt;
&lt;br /&gt;
= Contact =&lt;br /&gt;
For questions or bug reports, email gzajac at umich.edu&lt;br /&gt;
&lt;br /&gt;
= Need Something Else? =&lt;br /&gt;
More Software: [[ContaminationDetection]]&lt;/div&gt;</summary>
		<author><name>Gzajac</name></author>
	</entry>
	<entry>
		<id>http://genome.sph.umich.edu/w/index.php?title=VICES&amp;diff=15069</id>
		<title>VICES</title>
		<link rel="alternate" type="text/html" href="http://genome.sph.umich.edu/w/index.php?title=VICES&amp;diff=15069"/>
		<updated>2019-02-13T01:53:50Z</updated>

		<summary type="html">&lt;p&gt;Gzajac: /* Download */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Software|VICES]]&lt;br /&gt;
&lt;br /&gt;
= Introduction =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;VICES&#039;&#039;&#039; is a program that jointly estimates the proportion of contaminating DNA in samples genotyped on arrays and which other samples in the study it came from.&lt;br /&gt;
&lt;br /&gt;
= Download =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;GitHub Repo:&#039;&#039;&#039; [https://github.com/gjmzajac/vices https://github.com/gjmzajac/vices]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ZIP archive:&#039;&#039;&#039; [https://github.com/gjmzajac/vices/zipball/master/ https://github.com/gjmzajac/vices/zipball/master/]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ubuntu x64 Binary&#039;&#039;&#039; [[File:vices_v1.0|vices_v1.0]]&lt;br /&gt;
&lt;br /&gt;
= Usage =&lt;br /&gt;
To run, &lt;br /&gt;
 ./vices -r reports_list.txt -o contam_estimates.txt&lt;br /&gt;
&lt;br /&gt;
The reports_list.txt file must list the paths of all the Illumina report files (either plaintext or gzipped) you are testing. All files in a single run must be from the same type and version of array with exactly the same markers. Output will be written to the file contam_estimates.txt.&lt;br /&gt;
&lt;br /&gt;
The output consists of a header (with the number of samples, markers, etc.) then three tab-delimited columns:&lt;br /&gt;
*&#039;&#039;&#039;Recipient_Index&#039;&#039;&#039; the index (starting with 0) of the samples being tested. These are in the same order as in the file with paths to report files provided to VICES. If the --sample-list option is used and points to a file containing sample IDs in the same order as the report files, then this column becomes &#039;&#039;&#039;Recipient_ID&#039;&#039;&#039;.&lt;br /&gt;
*&#039;&#039;&#039;Estimated_contamination&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Sources&#039;&#039;&#039; A breakdown of the estimated sources of contamination. Most will have only one source (AF for allele frequencies) because VICES does not perform the donor search for samples with estimated contamination proportion &amp;lt; 0.005 by AF.&lt;br /&gt;
Example (simulated) report files and output are provided in the section below&lt;br /&gt;
&lt;br /&gt;
We highly recommend running VICES only within the same batches they were genotyped in as the donor estimation can take a long time if you give it a long list of over 1000 samples. Other reasons to run in batches are that samples genotyped in different runs are probably less likely to have traded DNA, and batch effects may influence the calculation of allele frequencies, an important initial step in VICES. Your sequencing core should provide some information on batches. If you don&#039;t have any batch information, then running VICES on one (or at most 20) 96-well plate at a time should also work well. &lt;br /&gt;
&lt;br /&gt;
If any duplicate/twin samples are contaminated, this could bias the results. You might want to consider excluding one of each duplicate/twin pair before running/rerunning.&lt;br /&gt;
&lt;br /&gt;
No external allele frequencies are required. VICES calculates these directly from the report files you provide.&lt;br /&gt;
&lt;br /&gt;
= Options =&lt;br /&gt;
 -r, --report-list &amp;lt;file&amp;gt;              File with paths to Illumina report files&lt;br /&gt;
 -o, --output &amp;lt;file&amp;gt;                   Write output to a file [standard output]&lt;br /&gt;
 -f, --maf-threshold &amp;lt;float&amp;gt;           Min minor allele frequency for markers&lt;br /&gt;
 -c, --contam-threshold &amp;lt;float&amp;gt;        Threshold for estimating donor samples&lt;br /&gt;
 -s, --sample-list &amp;lt;file&amp;gt;              File with sample ids for report files&lt;br /&gt;
 -a, --af-only                         Specify analysis with AF only. No donor estimation&lt;br /&gt;
 -n, --snp-name-col &amp;lt;string&amp;gt;           Name of report file column containing SNP names&lt;br /&gt;
 -1, --allele1-col &amp;lt;string&amp;gt;            Name of report file column containing allele 1&lt;br /&gt;
 -2, --allele2-col &amp;lt;string&amp;gt;            Name of report file column containing allele 2&lt;br /&gt;
 -b, --b-allele-intensity-col &amp;lt;string&amp;gt; Name of report file column containing B allele intensity&lt;br /&gt;
 -m, --num-markers &amp;lt;int&amp;gt;               Maximum number of markers for contamination estimation&lt;br /&gt;
 -t, --threads &amp;lt;int&amp;gt;                   Number of threads for parallel computation&lt;br /&gt;
 -h, --help                            This help page&lt;br /&gt;
&lt;br /&gt;
= VICES Example =&lt;br /&gt;
Coming soon&lt;br /&gt;
&lt;br /&gt;
= Citation =&lt;br /&gt;
A paper is in the works and should be published soon. For now, you can cite our abstract from the 2017 Biology of Genomes meeting&lt;br /&gt;
* G. J. M. Zajac, L. G. Fritsche, S. L. Dagenais, R. H. Lyons, C. M. Brummett, &amp;amp; G. Abecasis. &#039;&#039;VICES: Verify Intensity Contamination from Estimated Sources.&#039;&#039; Poster Session presented at: The Biology of Genomes; 2017 May 9-13; Cold Spring Harbor, NY.&lt;br /&gt;
&lt;br /&gt;
= Contact =&lt;br /&gt;
For questions or bug reports, email gzajac at umich.edu&lt;br /&gt;
&lt;br /&gt;
= Need Something Else? =&lt;br /&gt;
More Software: [[ContaminationDetection]]&lt;/div&gt;</summary>
		<author><name>Gzajac</name></author>
	</entry>
	<entry>
		<id>http://genome.sph.umich.edu/w/index.php?title=VICES&amp;diff=15068</id>
		<title>VICES</title>
		<link rel="alternate" type="text/html" href="http://genome.sph.umich.edu/w/index.php?title=VICES&amp;diff=15068"/>
		<updated>2019-02-13T01:52:07Z</updated>

		<summary type="html">&lt;p&gt;Gzajac: /* Download */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Software|VICES]]&lt;br /&gt;
&lt;br /&gt;
= Introduction =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;VICES&#039;&#039;&#039; is a program that jointly estimates the proportion of contaminating DNA in samples genotyped on arrays and which other samples in the study it came from.&lt;br /&gt;
&lt;br /&gt;
= Download =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;GitHub Repo:&#039;&#039;&#039; [https://github.com/gjmzajac/vices https://github.com/gjmzajac/vices]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ZIP archive:&#039;&#039;&#039; [https://github.com/gjmzajac/vices/zipball/master/ https://github.com/gjmzajac/vices/zipball/master/]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ubuntu x64 Binary&#039;&#039;&#039; [[vices_v1.0]]&lt;br /&gt;
&lt;br /&gt;
= Usage =&lt;br /&gt;
To run, &lt;br /&gt;
 ./vices -r reports_list.txt -o contam_estimates.txt&lt;br /&gt;
&lt;br /&gt;
The reports_list.txt file must list the paths of all the Illumina report files (either plaintext or gzipped) you are testing. All files in a single run must be from the same type and version of array with exactly the same markers. Output will be written to the file contam_estimates.txt.&lt;br /&gt;
&lt;br /&gt;
The output consists of a header (with the number of samples, markers, etc.) then three tab-delimited columns:&lt;br /&gt;
*&#039;&#039;&#039;Recipient_Index&#039;&#039;&#039; the index (starting with 0) of the samples being tested. These are in the same order as in the file with paths to report files provided to VICES. If the --sample-list option is used and points to a file containing sample IDs in the same order as the report files, then this column becomes &#039;&#039;&#039;Recipient_ID&#039;&#039;&#039;.&lt;br /&gt;
*&#039;&#039;&#039;Estimated_contamination&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Sources&#039;&#039;&#039; A breakdown of the estimated sources of contamination. Most will have only one source (AF for allele frequencies) because VICES does not perform the donor search for samples with estimated contamination proportion &amp;lt; 0.005 by AF.&lt;br /&gt;
Example (simulated) report files and output are provided in the section below&lt;br /&gt;
&lt;br /&gt;
We highly recommend running VICES only within the same batches they were genotyped in as the donor estimation can take a long time if you give it a long list of over 1000 samples. Other reasons to run in batches are that samples genotyped in different runs are probably less likely to have traded DNA, and batch effects may influence the calculation of allele frequencies, an important initial step in VICES. Your sequencing core should provide some information on batches. If you don&#039;t have any batch information, then running VICES on one (or at most 20) 96-well plate at a time should also work well. &lt;br /&gt;
&lt;br /&gt;
If any duplicate/twin samples are contaminated, this could bias the results. You might want to consider excluding one of each duplicate/twin pair before running/rerunning.&lt;br /&gt;
&lt;br /&gt;
No external allele frequencies are required. VICES calculates these directly from the report files you provide.&lt;br /&gt;
&lt;br /&gt;
= Options =&lt;br /&gt;
 -r, --report-list &amp;lt;file&amp;gt;              File with paths to Illumina report files&lt;br /&gt;
 -o, --output &amp;lt;file&amp;gt;                   Write output to a file [standard output]&lt;br /&gt;
 -f, --maf-threshold &amp;lt;float&amp;gt;           Min minor allele frequency for markers&lt;br /&gt;
 -c, --contam-threshold &amp;lt;float&amp;gt;        Threshold for estimating donor samples&lt;br /&gt;
 -s, --sample-list &amp;lt;file&amp;gt;              File with sample ids for report files&lt;br /&gt;
 -a, --af-only                         Specify analysis with AF only. No donor estimation&lt;br /&gt;
 -n, --snp-name-col &amp;lt;string&amp;gt;           Name of report file column containing SNP names&lt;br /&gt;
 -1, --allele1-col &amp;lt;string&amp;gt;            Name of report file column containing allele 1&lt;br /&gt;
 -2, --allele2-col &amp;lt;string&amp;gt;            Name of report file column containing allele 2&lt;br /&gt;
 -b, --b-allele-intensity-col &amp;lt;string&amp;gt; Name of report file column containing B allele intensity&lt;br /&gt;
 -m, --num-markers &amp;lt;int&amp;gt;               Maximum number of markers for contamination estimation&lt;br /&gt;
 -t, --threads &amp;lt;int&amp;gt;                   Number of threads for parallel computation&lt;br /&gt;
 -h, --help                            This help page&lt;br /&gt;
&lt;br /&gt;
= VICES Example =&lt;br /&gt;
Coming soon&lt;br /&gt;
&lt;br /&gt;
= Citation =&lt;br /&gt;
A paper is in the works and should be published soon. For now, you can cite our abstract from the 2017 Biology of Genomes meeting&lt;br /&gt;
* G. J. M. Zajac, L. G. Fritsche, S. L. Dagenais, R. H. Lyons, C. M. Brummett, &amp;amp; G. Abecasis. &#039;&#039;VICES: Verify Intensity Contamination from Estimated Sources.&#039;&#039; Poster Session presented at: The Biology of Genomes; 2017 May 9-13; Cold Spring Harbor, NY.&lt;br /&gt;
&lt;br /&gt;
= Contact =&lt;br /&gt;
For questions or bug reports, email gzajac at umich.edu&lt;br /&gt;
&lt;br /&gt;
= Need Something Else? =&lt;br /&gt;
More Software: [[ContaminationDetection]]&lt;/div&gt;</summary>
		<author><name>Gzajac</name></author>
	</entry>
	<entry>
		<id>http://genome.sph.umich.edu/w/index.php?title=VICES&amp;diff=15067</id>
		<title>VICES</title>
		<link rel="alternate" type="text/html" href="http://genome.sph.umich.edu/w/index.php?title=VICES&amp;diff=15067"/>
		<updated>2019-02-13T01:51:02Z</updated>

		<summary type="html">&lt;p&gt;Gzajac: /* Download */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Software|VICES]]&lt;br /&gt;
&lt;br /&gt;
= Introduction =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;VICES&#039;&#039;&#039; is a program that jointly estimates the proportion of contaminating DNA in samples genotyped on arrays and which other samples in the study it came from.&lt;br /&gt;
&lt;br /&gt;
= Download =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;GitHub Repo:&#039;&#039;&#039; [https://github.com/gjmzajac/vices https://github.com/gjmzajac/vices]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ZIP archive:&#039;&#039;&#039; [https://github.com/gjmzajac/vices/zipball/master/ https://github.com/gjmzajac/vices/zipball/master/]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ubuntu x64 Binary&#039;&#039;&#039; [[File:vices_v1.0]]&lt;br /&gt;
&lt;br /&gt;
= Usage =&lt;br /&gt;
To run, &lt;br /&gt;
 ./vices -r reports_list.txt -o contam_estimates.txt&lt;br /&gt;
&lt;br /&gt;
The reports_list.txt file must list the paths of all the Illumina report files (either plaintext or gzipped) you are testing. All files in a single run must be from the same type and version of array with exactly the same markers. Output will be written to the file contam_estimates.txt.&lt;br /&gt;
&lt;br /&gt;
The output consists of a header (with the number of samples, markers, etc.) then three tab-delimited columns:&lt;br /&gt;
*&#039;&#039;&#039;Recipient_Index&#039;&#039;&#039; the index (starting with 0) of the samples being tested. These are in the same order as in the file with paths to report files provided to VICES. If the --sample-list option is used and points to a file containing sample IDs in the same order as the report files, then this column becomes &#039;&#039;&#039;Recipient_ID&#039;&#039;&#039;.&lt;br /&gt;
*&#039;&#039;&#039;Estimated_contamination&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Sources&#039;&#039;&#039; A breakdown of the estimated sources of contamination. Most will have only one source (AF for allele frequencies) because VICES does not perform the donor search for samples with estimated contamination proportion &amp;lt; 0.005 by AF.&lt;br /&gt;
Example (simulated) report files and output are provided in the section below&lt;br /&gt;
&lt;br /&gt;
We highly recommend running VICES only within the same batches they were genotyped in as the donor estimation can take a long time if you give it a long list of over 1000 samples. Other reasons to run in batches are that samples genotyped in different runs are probably less likely to have traded DNA, and batch effects may influence the calculation of allele frequencies, an important initial step in VICES. Your sequencing core should provide some information on batches. If you don&#039;t have any batch information, then running VICES on one (or at most 20) 96-well plate at a time should also work well. &lt;br /&gt;
&lt;br /&gt;
If any duplicate/twin samples are contaminated, this could bias the results. You might want to consider excluding one of each duplicate/twin pair before running/rerunning.&lt;br /&gt;
&lt;br /&gt;
No external allele frequencies are required. VICES calculates these directly from the report files you provide.&lt;br /&gt;
&lt;br /&gt;
= Options =&lt;br /&gt;
 -r, --report-list &amp;lt;file&amp;gt;              File with paths to Illumina report files&lt;br /&gt;
 -o, --output &amp;lt;file&amp;gt;                   Write output to a file [standard output]&lt;br /&gt;
 -f, --maf-threshold &amp;lt;float&amp;gt;           Min minor allele frequency for markers&lt;br /&gt;
 -c, --contam-threshold &amp;lt;float&amp;gt;        Threshold for estimating donor samples&lt;br /&gt;
 -s, --sample-list &amp;lt;file&amp;gt;              File with sample ids for report files&lt;br /&gt;
 -a, --af-only                         Specify analysis with AF only. No donor estimation&lt;br /&gt;
 -n, --snp-name-col &amp;lt;string&amp;gt;           Name of report file column containing SNP names&lt;br /&gt;
 -1, --allele1-col &amp;lt;string&amp;gt;            Name of report file column containing allele 1&lt;br /&gt;
 -2, --allele2-col &amp;lt;string&amp;gt;            Name of report file column containing allele 2&lt;br /&gt;
 -b, --b-allele-intensity-col &amp;lt;string&amp;gt; Name of report file column containing B allele intensity&lt;br /&gt;
 -m, --num-markers &amp;lt;int&amp;gt;               Maximum number of markers for contamination estimation&lt;br /&gt;
 -t, --threads &amp;lt;int&amp;gt;                   Number of threads for parallel computation&lt;br /&gt;
 -h, --help                            This help page&lt;br /&gt;
&lt;br /&gt;
= VICES Example =&lt;br /&gt;
Coming soon&lt;br /&gt;
&lt;br /&gt;
= Citation =&lt;br /&gt;
A paper is in the works and should be published soon. For now, you can cite our abstract from the 2017 Biology of Genomes meeting&lt;br /&gt;
* G. J. M. Zajac, L. G. Fritsche, S. L. Dagenais, R. H. Lyons, C. M. Brummett, &amp;amp; G. Abecasis. &#039;&#039;VICES: Verify Intensity Contamination from Estimated Sources.&#039;&#039; Poster Session presented at: The Biology of Genomes; 2017 May 9-13; Cold Spring Harbor, NY.&lt;br /&gt;
&lt;br /&gt;
= Contact =&lt;br /&gt;
For questions or bug reports, email gzajac at umich.edu&lt;br /&gt;
&lt;br /&gt;
= Need Something Else? =&lt;br /&gt;
More Software: [[ContaminationDetection]]&lt;/div&gt;</summary>
		<author><name>Gzajac</name></author>
	</entry>
	<entry>
		<id>http://genome.sph.umich.edu/w/index.php?title=VICES&amp;diff=15066</id>
		<title>VICES</title>
		<link rel="alternate" type="text/html" href="http://genome.sph.umich.edu/w/index.php?title=VICES&amp;diff=15066"/>
		<updated>2019-02-13T01:31:17Z</updated>

		<summary type="html">&lt;p&gt;Gzajac: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Software|VICES]]&lt;br /&gt;
&lt;br /&gt;
= Introduction =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;VICES&#039;&#039;&#039; is a program that jointly estimates the proportion of contaminating DNA in samples genotyped on arrays and which other samples in the study it came from.&lt;br /&gt;
&lt;br /&gt;
= Download =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;GitHub Repo:&#039;&#039;&#039; [https://github.com/gjmzajac/vices https://github.com/gjmzajac/vices]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ZIP archive:&#039;&#039;&#039; [https://github.com/gjmzajac/vices/zipball/master/ https://github.com/gjmzajac/vices/zipball/master/]&lt;br /&gt;
&amp;lt;!--- &lt;br /&gt;
&#039;&#039;&#039;Ubuntu x64 Binary&#039;&#039;&#039; [[File:Example.jpg]]&lt;br /&gt;
---&amp;gt;&lt;br /&gt;
= Usage =&lt;br /&gt;
To run, &lt;br /&gt;
 ./vices -r reports_list.txt -o contam_estimates.txt&lt;br /&gt;
&lt;br /&gt;
The reports_list.txt file must list the paths of all the Illumina report files (either plaintext or gzipped) you are testing. All files in a single run must be from the same type and version of array with exactly the same markers. Output will be written to the file contam_estimates.txt.&lt;br /&gt;
&lt;br /&gt;
The output consists of a header (with the number of samples, markers, etc.) then three tab-delimited columns:&lt;br /&gt;
*&#039;&#039;&#039;Recipient_Index&#039;&#039;&#039; the index (starting with 0) of the samples being tested. These are in the same order as in the file with paths to report files provided to VICES. If the --sample-list option is used and points to a file containing sample IDs in the same order as the report files, then this column becomes &#039;&#039;&#039;Recipient_ID&#039;&#039;&#039;.&lt;br /&gt;
*&#039;&#039;&#039;Estimated_contamination&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;Sources&#039;&#039;&#039; A breakdown of the estimated sources of contamination. Most will have only one source (AF for allele frequencies) because VICES does not perform the donor search for samples with estimated contamination proportion &amp;lt; 0.005 by AF.&lt;br /&gt;
Example (simulated) report files and output are provided in the section below&lt;br /&gt;
&lt;br /&gt;
We highly recommend running VICES only within the same batches they were genotyped in as the donor estimation can take a long time if you give it a long list of over 1000 samples. Other reasons to run in batches are that samples genotyped in different runs are probably less likely to have traded DNA, and batch effects may influence the calculation of allele frequencies, an important initial step in VICES. Your sequencing core should provide some information on batches. If you don&#039;t have any batch information, then running VICES on one (or at most 20) 96-well plate at a time should also work well. &lt;br /&gt;
&lt;br /&gt;
If any duplicate/twin samples are contaminated, this could bias the results. You might want to consider excluding one of each duplicate/twin pair before running/rerunning.&lt;br /&gt;
&lt;br /&gt;
No external allele frequencies are required. VICES calculates these directly from the report files you provide.&lt;br /&gt;
&lt;br /&gt;
= Options =&lt;br /&gt;
 -r, --report-list &amp;lt;file&amp;gt;              File with paths to Illumina report files&lt;br /&gt;
 -o, --output &amp;lt;file&amp;gt;                   Write output to a file [standard output]&lt;br /&gt;
 -f, --maf-threshold &amp;lt;float&amp;gt;           Min minor allele frequency for markers&lt;br /&gt;
 -c, --contam-threshold &amp;lt;float&amp;gt;        Threshold for estimating donor samples&lt;br /&gt;
 -s, --sample-list &amp;lt;file&amp;gt;              File with sample ids for report files&lt;br /&gt;
 -a, --af-only                         Specify analysis with AF only. No donor estimation&lt;br /&gt;
 -n, --snp-name-col &amp;lt;string&amp;gt;           Name of report file column containing SNP names&lt;br /&gt;
 -1, --allele1-col &amp;lt;string&amp;gt;            Name of report file column containing allele 1&lt;br /&gt;
 -2, --allele2-col &amp;lt;string&amp;gt;            Name of report file column containing allele 2&lt;br /&gt;
 -b, --b-allele-intensity-col &amp;lt;string&amp;gt; Name of report file column containing B allele intensity&lt;br /&gt;
 -m, --num-markers &amp;lt;int&amp;gt;               Maximum number of markers for contamination estimation&lt;br /&gt;
 -t, --threads &amp;lt;int&amp;gt;                   Number of threads for parallel computation&lt;br /&gt;
 -h, --help                            This help page&lt;br /&gt;
&lt;br /&gt;
= VICES Example =&lt;br /&gt;
Coming soon&lt;br /&gt;
&lt;br /&gt;
= Citation =&lt;br /&gt;
A paper is in the works and should be published soon. For now, you can cite our abstract from the 2017 Biology of Genomes meeting&lt;br /&gt;
* G. J. M. Zajac, L. G. Fritsche, S. L. Dagenais, R. H. Lyons, C. M. Brummett, &amp;amp; G. Abecasis. &#039;&#039;VICES: Verify Intensity Contamination from Estimated Sources.&#039;&#039; Poster Session presented at: The Biology of Genomes; 2017 May 9-13; Cold Spring Harbor, NY.&lt;br /&gt;
&lt;br /&gt;
= Contact =&lt;br /&gt;
For questions or bug reports, email gzajac at umich.edu&lt;br /&gt;
&lt;br /&gt;
= Need Something Else? =&lt;br /&gt;
More Software: [[ContaminationDetection]]&lt;/div&gt;</summary>
		<author><name>Gzajac</name></author>
	</entry>
	<entry>
		<id>http://genome.sph.umich.edu/w/index.php?title=VICES&amp;diff=15065</id>
		<title>VICES</title>
		<link rel="alternate" type="text/html" href="http://genome.sph.umich.edu/w/index.php?title=VICES&amp;diff=15065"/>
		<updated>2019-02-13T01:12:24Z</updated>

		<summary type="html">&lt;p&gt;Gzajac: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Software|VICES]]&lt;br /&gt;
&lt;br /&gt;
= Introduction =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;VICES&#039;&#039;&#039; is a program that jointly estimates the proportion of contaminating DNA in samples genotyped on arrays and which other samples in the study it came from.&lt;br /&gt;
&lt;br /&gt;
= Download =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;GitHub Repo:&#039;&#039;&#039; [https://github.com/gjmzajac/vices https://github.com/gjmzajac/vices]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ZIP archive:&#039;&#039;&#039; [https://github.com/gjmzajac/vices/zipball/master/ https://github.com/gjmzajac/vices/zipball/master/]&lt;br /&gt;
&amp;lt;!--- &lt;br /&gt;
&#039;&#039;&#039;Ubuntu x64 Binary&#039;&#039;&#039; [[File:Example.jpg]]&lt;br /&gt;
---&amp;gt;&lt;br /&gt;
= Usage =&lt;br /&gt;
To run, &lt;br /&gt;
 ./vices -r reports_list.txt -o contam_estimates.txt&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The file must list the paths of all the Illumina report files (either plaintext or gzipped, for example see https://support.illumina.com/downloads/humanomniexpress-12-v1-1-product-support-files.html) you are testing. Output is only by stdout at this stage so you will have to redirect. All files in a single run must be from the same type and version of array with exactly the same markers.&lt;br /&gt;
&lt;br /&gt;
The output consists of a header (with the number of samples, markers, etc.) then three tab-delimited columns:&lt;br /&gt;
Recipient_Index: the index (starting with 0) of the samples being tested. These are in the same order as in the file with paths to report files provided to VICES.&lt;br /&gt;
Estimated_contamination&lt;br /&gt;
Sources: A breakdown of the estimated sources of contamination. Most will have only one source (AF for allele frequencies) because VICES does not perform the donor search for samples with estimated contamination proportion &amp;lt; 0.005 by AF.&lt;br /&gt;
I highly recommend running VICES only within the same batches they were genotyped in as the donor estimation can take a long time if you give it a long list of over 1000 samples. Other reasons to run in batches are that samples genotyped in different runs are probably less likely to have traded DNA, and batch effects may influence the calculation of allele frequencies, an important initial step in VICES. Your sequencing core should provide some information on batches. If you don&#039;t have any batch information, then running VICES on one (or at most 20) 96-well plate at a time should also work well. &lt;br /&gt;
&lt;br /&gt;
If any duplicate/twin samples are contaminated, this could bias the results. You might want to consider excluding one of each duplicate/twin pair before running/rerunning.&lt;br /&gt;
&lt;br /&gt;
To answer some questions I have received, no external allele frequencies are required. VICES calculates these directly from the report files you provide. If there is sufficient interest, providing external frequencies may become an option in the official release. &lt;br /&gt;
&lt;br /&gt;
= Options =&lt;br /&gt;
 -r, --report-list &amp;lt;file&amp;gt;              File with paths to Illumina report files&lt;br /&gt;
 -o, --output &amp;lt;file&amp;gt;                   Write output to a file [standard output]&lt;br /&gt;
 -f, --maf-threshold &amp;lt;float&amp;gt;           Min minor allele frequency for markers&lt;br /&gt;
 -c, --contam-threshold &amp;lt;float&amp;gt;        Threshold for estimating donor samples&lt;br /&gt;
 -s, --sample-list &amp;lt;file&amp;gt;              File with sample ids for report files&lt;br /&gt;
 -a, --af-only                         Specify analysis with AF only. No donor estimation&lt;br /&gt;
 -n, --snp-name-col &amp;lt;string&amp;gt;           Name of report file column containing SNP names&lt;br /&gt;
 -1, --allele1-col &amp;lt;string&amp;gt;            Name of report file column containing allele 1&lt;br /&gt;
 -2, --allele2-col &amp;lt;string&amp;gt;            Name of report file column containing allele 2&lt;br /&gt;
 -b, --b-allele-intensity-col &amp;lt;string&amp;gt; Name of report file column containing B allele intensity&lt;br /&gt;
 -m, --num-markers &amp;lt;int&amp;gt;               Maximum number of markers for contamination estimation&lt;br /&gt;
 -t, --threads &amp;lt;int&amp;gt;                   Number of threads for parallel computation&lt;br /&gt;
 -h, --help                            This help page&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- &lt;br /&gt;
= Example Data =&lt;br /&gt;
---&amp;gt;&lt;br /&gt;
= Citation =&lt;br /&gt;
A paper is in the works and should be published soon. For now, you can cite our abstract from the 2017 Biology of Genomes meeting&lt;br /&gt;
* G. J. M. Zajac, L. G. Fritsche, S. L. Dagenais, R. H. Lyons, C. M. Brummett, &amp;amp; G. Abecasis. &#039;&#039;VICES: Verify Intensity Contamination from Estimated Sources.&#039;&#039; Poster Session presented at: The Biology of Genomes; 2017 May 9-13; Cold Spring Harbor, NY.&lt;br /&gt;
&lt;br /&gt;
= Contact =&lt;br /&gt;
For questions or bug reports, email gzajac at umich.edu&lt;br /&gt;
&lt;br /&gt;
= Need Something Else? =&lt;br /&gt;
More Software: [[ContaminationDetection]]&lt;/div&gt;</summary>
		<author><name>Gzajac</name></author>
	</entry>
	<entry>
		<id>http://genome.sph.umich.edu/w/index.php?title=VICES&amp;diff=15064</id>
		<title>VICES</title>
		<link rel="alternate" type="text/html" href="http://genome.sph.umich.edu/w/index.php?title=VICES&amp;diff=15064"/>
		<updated>2019-02-13T00:34:20Z</updated>

		<summary type="html">&lt;p&gt;Gzajac: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Software|VICES]]&lt;br /&gt;
&lt;br /&gt;
= Introduction =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;VICES&#039;&#039;&#039; is a program that jointly estimates the proportion of contaminating DNA in samples genotyped on arrays and which other samples in the study it came from.&lt;br /&gt;
&lt;br /&gt;
= Download =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;GitHub Repo:&#039;&#039;&#039; [https://github.com/gjmzajac/vices https://github.com/gjmzajac/vices]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ZIP archive:&#039;&#039;&#039; [https://github.com/gjmzajac/vices/zipball/master/ https://github.com/gjmzajac/vices/zipball/master/]&lt;br /&gt;
&amp;lt;!--- &lt;br /&gt;
&#039;&#039;&#039;Ubuntu x64 Binary&#039;&#039;&#039; &lt;br /&gt;
---&amp;gt;&lt;br /&gt;
= Usage =&lt;br /&gt;
&lt;br /&gt;
= Example Data =&lt;br /&gt;
&lt;br /&gt;
= Contact =&lt;br /&gt;
For questions or bug reports, email gzajac at umich.edu&lt;/div&gt;</summary>
		<author><name>Gzajac</name></author>
	</entry>
	<entry>
		<id>http://genome.sph.umich.edu/w/index.php?title=VICES&amp;diff=14706</id>
		<title>VICES</title>
		<link rel="alternate" type="text/html" href="http://genome.sph.umich.edu/w/index.php?title=VICES&amp;diff=14706"/>
		<updated>2017-05-03T19:56:37Z</updated>

		<summary type="html">&lt;p&gt;Gzajac: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Software|VICES]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;VICES&#039;&#039;&#039; is a program that jointly estimates the proportion of contaminating DNA in samples genotyped on arrays and which other samples in the study it came from.&lt;br /&gt;
&lt;br /&gt;
Download will be available soon. For a beta version, contact gzajac at umich.edu.&lt;/div&gt;</summary>
		<author><name>Gzajac</name></author>
	</entry>
	<entry>
		<id>http://genome.sph.umich.edu/w/index.php?title=VICES&amp;diff=14705</id>
		<title>VICES</title>
		<link rel="alternate" type="text/html" href="http://genome.sph.umich.edu/w/index.php?title=VICES&amp;diff=14705"/>
		<updated>2017-05-03T19:56:11Z</updated>

		<summary type="html">&lt;p&gt;Gzajac: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;VICES&#039;&#039;&#039; is a program that jointly estimates the proportion of contaminating DNA in samples genotyped on arrays and which other samples in the study it came from.&lt;br /&gt;
&lt;br /&gt;
Download will be available soon. For a beta version, contact gzajac at umich.edu.&lt;/div&gt;</summary>
		<author><name>Gzajac</name></author>
	</entry>
	<entry>
		<id>http://genome.sph.umich.edu/w/index.php?title=VICES&amp;diff=14704</id>
		<title>VICES</title>
		<link rel="alternate" type="text/html" href="http://genome.sph.umich.edu/w/index.php?title=VICES&amp;diff=14704"/>
		<updated>2017-05-03T19:55:52Z</updated>

		<summary type="html">&lt;p&gt;Gzajac: Created page with &amp;quot;VICES is a program that jointly estimates the proportion of contaminating DNA in samples genotyped on arrays and which other samples in the study it came from.  Download will...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;VICES is a program that jointly estimates the proportion of contaminating DNA in samples genotyped on arrays and which other samples in the study it came from.&lt;br /&gt;
&lt;br /&gt;
Download will be available soon. For a beta version, contact gzajac at umich.edu.&lt;/div&gt;</summary>
		<author><name>Gzajac</name></author>
	</entry>
	<entry>
		<id>http://genome.sph.umich.edu/w/index.php?title=ContaminationDetection&amp;diff=14703</id>
		<title>ContaminationDetection</title>
		<link rel="alternate" type="text/html" href="http://genome.sph.umich.edu/w/index.php?title=ContaminationDetection&amp;diff=14703"/>
		<updated>2017-05-03T19:53:47Z</updated>

		<summary type="html">&lt;p&gt;Gzajac: /* Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Overview ==&lt;br /&gt;
&lt;br /&gt;
DNA sample contamination (or sample swap) is quite common in sequencing studies. It is possible to detect DNA contamination from sequence reads of intensity data from SNP genotyping arrays by modeling the likelihood of sequence reads as a mixture of two samples and estimating the fraction of reads contributed by contaminating samples. &lt;br /&gt;
&lt;br /&gt;
Depending on the types of available data, one can detect DNA sample contamination in the following ways.&lt;br /&gt;
&lt;br /&gt;
# When a sequenced sample has also external array-based genotypes available&lt;br /&gt;
#* [[VerifyBamID]] software can estimate the levels of sample contamination and detect sample swap from alignment sequence reads and the external genotypes&lt;br /&gt;
#* The basic mathematical concept is described in [[Verifying_Sample_Identities_-_Implementation]]&lt;br /&gt;
# When a sequenced sample does not have external genotypes available&lt;br /&gt;
#* [[VerifyBamID]] software can still estimate sample contamination from aligned sequence reads and population minor allele frequency&lt;br /&gt;
#* The key idea of the method is to capture the excessive heterozygosity in the contaminated sample by modeling the sequence reads as mixture of independent samples. &lt;br /&gt;
# When a sample has array-based genotypes but not yet sequenced&lt;br /&gt;
#* [[VerifyIDintensity]] software can estimate the levels of DNA sample contamination from pre-computed intensity data using likelihood-based model.&lt;br /&gt;
#** The key idea is similar to that of [[VerifyBamID]] with sequence data alone&lt;br /&gt;
#** [[VerifyIDintensity]] models array intensity data instead of sequence reads&lt;br /&gt;
#** When a large number of samples are genotyped together, the &#039;multi-sample&#039; option will estimate the intensity distribution for each marker across multiple samples. When only one a few samples are genotyped, &#039;per-sample&#039; option will estimate the intensity distribution for each sample across all markers.&lt;br /&gt;
#* [[BAFRegress]] software can estimate levels of sample contamination and test the presence of contamination by regressing the allele frequency with respect to the B allele frequency (BAF).&lt;br /&gt;
#** This method is sensitive to estimate low levels of contamination.&lt;br /&gt;
#** The method provides a well calibrated Type I error to test the null hypothesis of no contamination from a DNA sample.&lt;br /&gt;
#* [[VICES]] jointly estimates contamination and its sources from genotyping array intensities.&lt;br /&gt;
#** Can be useful to determine where in the process contamination occurred and whether DNA can be salvaged from leftover DNA earlier in the genotyping pipeline, or to revise laboratory protocols.&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
* Initial description of method 1 can be found at [[Verifying_Sample_Identities_-_Implementation]] (last modified in April 29, 2010)&lt;/div&gt;</summary>
		<author><name>Gzajac</name></author>
	</entry>
	<entry>
		<id>http://genome.sph.umich.edu/w/index.php?title=ContaminationDetection&amp;diff=14702</id>
		<title>ContaminationDetection</title>
		<link rel="alternate" type="text/html" href="http://genome.sph.umich.edu/w/index.php?title=ContaminationDetection&amp;diff=14702"/>
		<updated>2017-05-03T19:51:59Z</updated>

		<summary type="html">&lt;p&gt;Gzajac: /* Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Overview ==&lt;br /&gt;
&lt;br /&gt;
DNA sample contamination (or sample swap) is quite common in sequencing studies. It is possible to detect DNA contamination from sequence reads of intensity data from SNP genotyping arrays by modeling the likelihood of sequence reads as a mixture of two samples and estimating the fraction of reads contributed by contaminating samples. &lt;br /&gt;
&lt;br /&gt;
Depending on the types of available data, one can detect DNA sample contamination in the following ways.&lt;br /&gt;
&lt;br /&gt;
# When a sequenced sample has also external array-based genotypes available&lt;br /&gt;
#* [[VerifyBamID]] software can estimate the levels of sample contamination and detect sample swap from alignment sequence reads and the external genotypes&lt;br /&gt;
#* The basic mathematical concept is described in [[Verifying_Sample_Identities_-_Implementation]]&lt;br /&gt;
# When a sequenced sample does not have external genotypes available&lt;br /&gt;
#* [[VerifyBamID]] software can still estimate sample contamination from aligned sequence reads and population minor allele frequency&lt;br /&gt;
#* The key idea of the method is to capture the excessive heterozygosity in the contaminated sample by modeling the sequence reads as mixture of independent samples. &lt;br /&gt;
# When a sample has array-based genotypes but not yet sequenced&lt;br /&gt;
#* [[VerifyIDintensity]] software can estimate the levels of DNA sample contamination from pre-computed intensity data using likelihood-based model.&lt;br /&gt;
#** The key idea is similar to that of [[VerifyBamID]] with sequence data alone&lt;br /&gt;
#** [[VerifyIDintensity]] models array intensity data instead of sequence reads&lt;br /&gt;
#** When a large number of samples are genotyped together, the &#039;multi-sample&#039; option will estimate the intensity distribution for each marker across multiple samples. When only one a few samples are genotyped, &#039;per-sample&#039; option will estimate the intensity distribution for each sample across all markers.&lt;br /&gt;
#* [[BAFRegress]] software can estimate levels of sample contamination and test the presence of contamination by regressing the allele frequency with respect to the B allele frequency (BAF).&lt;br /&gt;
#** This method is sensitive to estimate low levels of contamination.&lt;br /&gt;
#** The method provides a well calibrated Type I error to test the null hypothesis of no contamination from a DNA sample.&lt;br /&gt;
#* [[VICES]] jointly estimates contamination and its sources from genotyping array intensities.&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
* Initial description of method 1 can be found at [[Verifying_Sample_Identities_-_Implementation]] (last modified in April 29, 2010)&lt;/div&gt;</summary>
		<author><name>Gzajac</name></author>
	</entry>
	<entry>
		<id>http://genome.sph.umich.edu/w/index.php?title=Biostatistics_866:_Main_Page&amp;diff=14693</id>
		<title>Biostatistics 866: Main Page</title>
		<link rel="alternate" type="text/html" href="http://genome.sph.umich.edu/w/index.php?title=Biostatistics_866:_Main_Page&amp;diff=14693"/>
		<updated>2017-04-18T11:21:21Z</updated>

		<summary type="html">&lt;p&gt;Gzajac: /* Student Presentations */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Objective ==&lt;br /&gt;
&lt;br /&gt;
Gene mapping studies study the relationship between genetic variation and susceptibility to human disease. These studies are changing rapidly with the availability of techniques for very large scale genetic analysis, whether based on sequencing or on genotyping. Biostatistics 866 is a Ph.D. level course that helps students understand some of the key building blocks of modern genetic analysis tools. It is meant to provide students with a toolkit to facilitate development and implementation of new statistical methods.&lt;br /&gt;
&lt;br /&gt;
For additional information, see also [[Biostatistics 866: Core Competencies|Core Competencies in Biostatistics Program covered by this course]].&lt;br /&gt;
&lt;br /&gt;
== Target Audience ==&lt;br /&gt;
&lt;br /&gt;
It is highly recommended that students registering for Biostatistics 830 should have previously completed [[Biostatistics 666]] and [[Biostatistics 615/815]], which are courses introducing methods for genetic analysis and programming principles, respectively.&lt;br /&gt;
&lt;br /&gt;
== Scheduling ==&lt;br /&gt;
&lt;br /&gt;
For Winter 2017, classes are scheduled for Tuesdays and Thursdays, 8:30 - 10 am in SPH II, room 1152.&lt;br /&gt;
&lt;br /&gt;
== Grading ==&lt;br /&gt;
&lt;br /&gt;
The final grade will take into account your performance in problem sets and worksheets as well as your participation in class.&lt;br /&gt;
&lt;br /&gt;
== Class Worksheets ==&lt;br /&gt;
&lt;br /&gt;
=== Hidden Markov Models ===&lt;br /&gt;
&lt;br /&gt;
Week of January 8 - [[Media:Question_Sheet_-_Li_et_al_(2010)_Gen_Epid.pdf|Li et al (2010)]]&lt;br /&gt;
&lt;br /&gt;
Week of January 15 - [[Media:Question_Sheet_-_Howie_et_al_(2012)_Nat_Genet.pdf|Howie et al (2012)]]  (and, [[Media:866_-_Slides_for_Hyun.pdf|Discussion slides for January 19]])&lt;br /&gt;
&lt;br /&gt;
Week of January 22 - [[Media:Question_Sheet_-_Delaneau_et_al_(2013)_Nature_Methods.pdf|Delaneau et al (2013)]]&lt;br /&gt;
&lt;br /&gt;
Week of January 29 - [[Media:Question_Sheet_-_Boehnke_and_Cox_(1997)_AJHG.pdf|Boehnke and Cox (1997)]]&lt;br /&gt;
&lt;br /&gt;
=== Short Read Sequencing ===&lt;br /&gt;
&lt;br /&gt;
February 12 - [[Media:Question_Sheet_-_Li_et_al_(2008)_Genome_Research.pdf|Li et al (2008)]]&lt;br /&gt;
&lt;br /&gt;
February 19 - [[Media:Question_Sheet_-_Li_and_Durbin_(2009)_Bioinformatics.pdf|Li and Durbin (2009)]]&lt;br /&gt;
&lt;br /&gt;
March 5 - [[Media:Question_Sheet_-_Zerbino_and_Birney_(2008)_Bioinformatics.pdf|Zerbino and Birney (2008)]]&lt;br /&gt;
&lt;br /&gt;
March 12 - [[Media:Question_Sheet_-_Iqbal_et_al_(2012)_Nature_Genetics.pdf|Iqbal et al (2012)]]&lt;br /&gt;
&lt;br /&gt;
=== Association Analysis ===&lt;br /&gt;
&lt;br /&gt;
March 19 - [[Media:Question_Sheet_-_2017_-_Kang_et_al_(2010)_Nature_Genetics_.pdf|Kang et al (2010)]]&lt;br /&gt;
&lt;br /&gt;
March 26 - [[Media:Question_Sheet_-_2017_-_Wu_et_al_(2011)_American_Journal_of_Human_Genetics.pdf|Wu et al (2011)]]&lt;br /&gt;
&lt;br /&gt;
April 2 - [[Media:Question_Sheet_-_2017_-_Liu_et_al_(2013)_Nature_Genetics.pdf|Liu et al (2014)]]&lt;br /&gt;
&lt;br /&gt;
=== Adventures in Statistical Genetics ===&lt;br /&gt;
&lt;br /&gt;
April 9 - [[Media:2017.04_-_Adventures_in_Human_Genetics.pdf|Goncalo&#039;s Adventure in Human Genetics]]&lt;br /&gt;
&lt;br /&gt;
== Student Presentations ==&lt;br /&gt;
*[[Media:Zajac_Journey_Lecture.pdf | Greg]]&lt;br /&gt;
*[https://www.dropbox.com/sh/9buuwbojq3tmp1f/AAADGOK-0yyKTfLiwG984QCHa?dl=0 Dropbox]&lt;br /&gt;
&lt;br /&gt;
== Standards of Academic Conduct ==&lt;br /&gt;
&lt;br /&gt;
The following is an extract from the School of Public Health&#039;s Student Code of Conduct [http://www.sph.umich.edu/academics/policies/conduct.html]:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Student academic misconduct includes behavior involving plagiarism, cheating, fabrication, falsification of records or official documents, intentional misuse of equipment or materials, and aiding and abetting the perpetration of such acts. The preparation of reports, papers, and examinations, assigned on an individual basis, must represent each student’s own effort. Reference sources should be indicated clearly. The use of assistance from other students or aids of any kind during a written examination, except when the use of books or notes has been approved by an instructor, is a violation of the standard of academic conduct.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
In the context of this course, any work you hand-in should be your own and any material that is a transcript (or interpreted transcript) of work by others must be clearly labeled as such. If you turn in work that is directly copied from another student or from a published or unpublished source without attribution, you risk failing the course.&lt;br /&gt;
&lt;br /&gt;
== Planned Reading ==&lt;br /&gt;
&lt;br /&gt;
* Abecasis GR, Cherny SS, Cookson WO, Cardon LR (2002) Merlin--rapid analysis of dense genetic maps using sparse gene flow trees. &#039;&#039;Nat Genetics&#039;&#039; &#039;&#039;&#039;30&#039;&#039;&#039;:97-101&lt;br /&gt;
&lt;br /&gt;
* Boehnke M and Cox N (1997) Accurate Inference of Relationships in Sib-Pair Linkage Studies. &#039;&#039;Am J Hum Genet&#039;&#039; &#039;&#039;&#039;61&#039;&#039;&#039;:423-429&lt;br /&gt;
&lt;br /&gt;
* Coventry A, Bull-Otterson LM, Liu X, Clark AG, Maxwell TJ, Crosby J, Hixson JE, Rea TJ, Muzny DM, Lewis LR, Wheeler DA, Sabo A, Lusk C, Weiss KG, Akbar H, Cree A, Hawes AC, Newsham I, Varghese RT, Villasana D, Gross S, Joshi V, Santibanez J, Morgan M, Chang K, Iv WH, Templeton AR, Boerwinkle E, Gibbs R, Sing CF (2010) Deep resequencing reveals excess rare recent variants consistent with explosive population growth. &#039;&#039;Nat Commun.&#039;&#039; &#039;&#039;&#039;1&#039;&#039;&#039;:131. PMID: 21119644&lt;br /&gt;
&lt;br /&gt;
* Delaneau O, Zagury JF, Marchini J (2013) Improved whole-chromosome phasing for disease and population genetic studies. &#039;&#039;Nat Methods.&#039;&#039; &#039;&#039;&#039;10&#039;&#039;&#039;:5-6. PMID: 23269371&lt;br /&gt;
&lt;br /&gt;
* Howie B, Fuchsberger C, Stephens M, Marchini J, Abecasis GR (2012) Fast and accurate genotype imputation in genome-wide association studies through pre-phasing. &#039;&#039;Nat Genet.&#039;&#039; &#039;&#039;&#039;44&#039;&#039;&#039;:955-9. PMID: 22820512 [[Biostatistics 830 - Code Snippets|[Code Snippets]]]&lt;br /&gt;
&lt;br /&gt;
* Iqbal Z, Caccamo M, Turner I, Flicek P, McVean G (2012) De novo assembly and genotyping of variants using colored de Bruijn graphs. &#039;&#039;Nat Genet.&#039;&#039; &#039;&#039;&#039;44&#039;&#039;&#039;:226-32. PMID: 22231483&lt;br /&gt;
&lt;br /&gt;
* Field Y, Boyle EA, Telis N, Gao Z, Gaulton KJ, Golan D, Yengo L, Rocheleau G, Froguel P, McCarthy MI, Pritchard JK (2016) Detection of human adaptation during the past 2000 years. &#039;&#039;Science&#039;&#039; &#039;&#039;&#039;354&#039;&#039;&#039;:760-764&lt;br /&gt;
&lt;br /&gt;
* Jun G, Flickinger M, Hetrick KN, Romm JM, Doheny KF, Abecasis GR, Boehnke M, Kang HM (2012) Detecting and estimating contamination of human DNA samples in sequencing and array-based genotype data. &#039;&#039;Am J Hum Genet.&#039;&#039; &#039;&#039;&#039;91&#039;&#039;&#039;:839-48. PMID: 23103226&lt;br /&gt;
&lt;br /&gt;
* Kang HM, Sul JH, Service SK, Zaitlen NA, Kong SY, Freimer NB, Sabatti C, Eskin E (2010) Variance component model to account for sample structure in genome-wide association studies. &#039;&#039;Nat. Genet.&#039;&#039; &#039;&#039;&#039;42&#039;&#039;&#039;:348-354&lt;br /&gt;
 &lt;br /&gt;
* Kircher M, Witten DM,	Jain P,	O&#039;Roak BJ, Cooper GM, Shendure J (2014) A general framework for estimating the relative pathogenicity of human genetic variants. &#039;&#039;Nat. Genet.&#039;&#039; &#039;&#039;&#039;46&#039;&#039;&#039; 310–315&lt;br /&gt;
&lt;br /&gt;
* Kruglyak L, Daly MJ, Reeve-Daly MP, Lander ES (1996) Parametric and non-parametric linkage analysis: a unified multipoint approach. &#039;&#039;Am J Hum Genet&#039;&#039; &#039;&#039;&#039;58&#039;&#039;&#039;:1347-63&lt;br /&gt;
&lt;br /&gt;
* Li H, Ruan J, Durbin R (2008) Mapping short DNA sequencing reads and calling variants using mapping quality scores. &#039;&#039;Genome Res.&#039;&#039; &#039;&#039;&#039;18&#039;&#039;&#039;:1851-8. PMID: 18714091&lt;br /&gt;
&lt;br /&gt;
* Li H, Durbin R (2009) Fast and accurate short read alignment with Burrows-Wheeler transform. &#039;&#039;Bioinformatics.&#039;&#039; &#039;&#039;&#039;25&#039;&#039;&#039;:1754-60. PMID: 19451168&lt;br /&gt;
&lt;br /&gt;
* Li H, Durbin R (2011) Inference of human population history from individual whole-genome sequences. &#039;&#039;Nature.&#039;&#039; &#039;&#039;&#039;475&#039;&#039;&#039;:493-6. PMID: 21753753&lt;br /&gt;
&lt;br /&gt;
* Li Y, Willer CJ, Ding J, Scheet P, Abecasis GR (2010) MaCH: using sequence and genotype data to estimate haplotypes and unobserved genotypes. &#039;&#039;Genet Epidemiol.&#039;&#039; &#039;&#039;&#039;34&#039;&#039;&#039;:816-34. PMID: 21058334 [[Biostatistics 830 - Code Snippets|[Code Snippets]]]&lt;br /&gt;
&lt;br /&gt;
* Lin DY, Zeng D (2010) Meta-analysis of genome-wide association studies: no efficiency gain in using individual participant data. &#039;&#039;Genet Epidemiol.&#039;&#039; &#039;&#039;&#039;34&#039;&#039;&#039;:60-6. PMID: 19847795&lt;br /&gt;
&lt;br /&gt;
* Liu DJ, Peloso GM, Zhan X, Holmen OL, Zawistowski M, Feng S, Nikpay M, Auer PL, Goel A, Zhang H, Peters U, Farrall M, Orho-Melander M, Kooperberg C, McPherson R, Watkins H, Willer CJ, Hveem K, Melander O, Kathiresan S, Abecasis GR (2014) Meta-analysis of gene-level tests for rare variant association. &#039;&#039;Nat Genet.&#039;&#039; &#039;&#039;&#039;46&#039;&#039;&#039;:200-4&lt;br /&gt;
&lt;br /&gt;
* Sobel E, Lange K (1996) Descent Graphs in Pedigree Analysis: Applications to Haplotyping, Location Scores, and Marker-Sharing Statistics. &#039;&#039;Am. J. Hum. Genet.&#039;&#039; &#039;&#039;&#039;58&#039;&#039;&#039;:1323-1336&lt;br /&gt;
&lt;br /&gt;
* Wang C, Zhan X, Bragg-Gresham J, Kang HM, Stambolian D, Chew EY, Branham KE, Heckenlively J; FUSION Study, Fulton R, Wilson RK, Mardis ER, Lin X, Swaroop A, Zöllner S, Abecasis GR (2014) Ancestry estimation and control of population stratification for sequence-based association studies. &#039;&#039;Nat Genet. 2014&#039;&#039; &#039;&#039;&#039;46&#039;&#039;&#039;:409-15&lt;br /&gt;
&lt;br /&gt;
* Wen X, Stephens M (2010) Using linear predictors to impute allele frequencies from summary or pooled genotype data. &#039;&#039;Ann Appl Stat.&#039;&#039; &#039;&#039;&#039;4&#039;&#039;&#039;:1158-1182. PMID: 21479081&lt;br /&gt;
&lt;br /&gt;
* Wu MC, Lee S, Cai T, Li Y, Boehnke M, Lin X (2011) Rare-variant association testing for sequencing data with the sequence kernel association test. Am J Hum Genet. 89:82-93&lt;br /&gt;
&lt;br /&gt;
* Zerbino DR, Birney E (2008) Velvet: algorithms for de novo short read assembly using de Bruijn graphs. &#039;&#039;Genome Res.&#039;&#039; &#039;&#039;&#039;18&#039;&#039;&#039;:821-9. PMID: 18349386&lt;br /&gt;
&lt;br /&gt;
== Course History ==&lt;br /&gt;
&lt;br /&gt;
This course is offered occasionally. Typically, Mike Boehnke has taught it. Each instructor gives the course a different flavor, so you may find it worthwhile -- even if you have taken the course with Mike previously.&lt;/div&gt;</summary>
		<author><name>Gzajac</name></author>
	</entry>
	<entry>
		<id>http://genome.sph.umich.edu/w/index.php?title=Biostatistics_866:_Main_Page&amp;diff=14692</id>
		<title>Biostatistics 866: Main Page</title>
		<link rel="alternate" type="text/html" href="http://genome.sph.umich.edu/w/index.php?title=Biostatistics_866:_Main_Page&amp;diff=14692"/>
		<updated>2017-04-18T05:51:01Z</updated>

		<summary type="html">&lt;p&gt;Gzajac: /* Student Presentations */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Objective ==&lt;br /&gt;
&lt;br /&gt;
Gene mapping studies study the relationship between genetic variation and susceptibility to human disease. These studies are changing rapidly with the availability of techniques for very large scale genetic analysis, whether based on sequencing or on genotyping. Biostatistics 866 is a Ph.D. level course that helps students understand some of the key building blocks of modern genetic analysis tools. It is meant to provide students with a toolkit to facilitate development and implementation of new statistical methods.&lt;br /&gt;
&lt;br /&gt;
For additional information, see also [[Biostatistics 866: Core Competencies|Core Competencies in Biostatistics Program covered by this course]].&lt;br /&gt;
&lt;br /&gt;
== Target Audience ==&lt;br /&gt;
&lt;br /&gt;
It is highly recommended that students registering for Biostatistics 830 should have previously completed [[Biostatistics 666]] and [[Biostatistics 615/815]], which are courses introducing methods for genetic analysis and programming principles, respectively.&lt;br /&gt;
&lt;br /&gt;
== Scheduling ==&lt;br /&gt;
&lt;br /&gt;
For Winter 2017, classes are scheduled for Tuesdays and Thursdays, 8:30 - 10 am in SPH II, room 1152.&lt;br /&gt;
&lt;br /&gt;
== Grading ==&lt;br /&gt;
&lt;br /&gt;
The final grade will take into account your performance in problem sets and worksheets as well as your participation in class.&lt;br /&gt;
&lt;br /&gt;
== Class Worksheets ==&lt;br /&gt;
&lt;br /&gt;
=== Hidden Markov Models ===&lt;br /&gt;
&lt;br /&gt;
Week of January 8 - [[Media:Question_Sheet_-_Li_et_al_(2010)_Gen_Epid.pdf|Li et al (2010)]]&lt;br /&gt;
&lt;br /&gt;
Week of January 15 - [[Media:Question_Sheet_-_Howie_et_al_(2012)_Nat_Genet.pdf|Howie et al (2012)]]  (and, [[Media:866_-_Slides_for_Hyun.pdf|Discussion slides for January 19]])&lt;br /&gt;
&lt;br /&gt;
Week of January 22 - [[Media:Question_Sheet_-_Delaneau_et_al_(2013)_Nature_Methods.pdf|Delaneau et al (2013)]]&lt;br /&gt;
&lt;br /&gt;
Week of January 29 - [[Media:Question_Sheet_-_Boehnke_and_Cox_(1997)_AJHG.pdf|Boehnke and Cox (1997)]]&lt;br /&gt;
&lt;br /&gt;
=== Short Read Sequencing ===&lt;br /&gt;
&lt;br /&gt;
February 12 - [[Media:Question_Sheet_-_Li_et_al_(2008)_Genome_Research.pdf|Li et al (2008)]]&lt;br /&gt;
&lt;br /&gt;
February 19 - [[Media:Question_Sheet_-_Li_and_Durbin_(2009)_Bioinformatics.pdf|Li and Durbin (2009)]]&lt;br /&gt;
&lt;br /&gt;
March 5 - [[Media:Question_Sheet_-_Zerbino_and_Birney_(2008)_Bioinformatics.pdf|Zerbino and Birney (2008)]]&lt;br /&gt;
&lt;br /&gt;
March 12 - [[Media:Question_Sheet_-_Iqbal_et_al_(2012)_Nature_Genetics.pdf|Iqbal et al (2012)]]&lt;br /&gt;
&lt;br /&gt;
=== Association Analysis ===&lt;br /&gt;
&lt;br /&gt;
March 19 - [[Media:Question_Sheet_-_2017_-_Kang_et_al_(2010)_Nature_Genetics_.pdf|Kang et al (2010)]]&lt;br /&gt;
&lt;br /&gt;
March 26 - [[Media:Question_Sheet_-_2017_-_Wu_et_al_(2011)_American_Journal_of_Human_Genetics.pdf|Wu et al (2011)]]&lt;br /&gt;
&lt;br /&gt;
April 2 - [[Media:Question_Sheet_-_2017_-_Liu_et_al_(2013)_Nature_Genetics.pdf|Liu et al (2014)]]&lt;br /&gt;
&lt;br /&gt;
=== Adventures in Statistical Genetics ===&lt;br /&gt;
&lt;br /&gt;
April 9 - [[Media:2017.04_-_Adventures_in_Human_Genetics.pdf|Goncalo&#039;s Adventure in Human Genetics]]&lt;br /&gt;
&lt;br /&gt;
== Student Presentations ==&lt;br /&gt;
*[[Media:Zajac_Journey_Lecture.pdf | Greg]]&lt;br /&gt;
&lt;br /&gt;
== Standards of Academic Conduct ==&lt;br /&gt;
&lt;br /&gt;
The following is an extract from the School of Public Health&#039;s Student Code of Conduct [http://www.sph.umich.edu/academics/policies/conduct.html]:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Student academic misconduct includes behavior involving plagiarism, cheating, fabrication, falsification of records or official documents, intentional misuse of equipment or materials, and aiding and abetting the perpetration of such acts. The preparation of reports, papers, and examinations, assigned on an individual basis, must represent each student’s own effort. Reference sources should be indicated clearly. The use of assistance from other students or aids of any kind during a written examination, except when the use of books or notes has been approved by an instructor, is a violation of the standard of academic conduct.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
In the context of this course, any work you hand-in should be your own and any material that is a transcript (or interpreted transcript) of work by others must be clearly labeled as such. If you turn in work that is directly copied from another student or from a published or unpublished source without attribution, you risk failing the course.&lt;br /&gt;
&lt;br /&gt;
== Planned Reading ==&lt;br /&gt;
&lt;br /&gt;
* Abecasis GR, Cherny SS, Cookson WO, Cardon LR (2002) Merlin--rapid analysis of dense genetic maps using sparse gene flow trees. &#039;&#039;Nat Genetics&#039;&#039; &#039;&#039;&#039;30&#039;&#039;&#039;:97-101&lt;br /&gt;
&lt;br /&gt;
* Boehnke M and Cox N (1997) Accurate Inference of Relationships in Sib-Pair Linkage Studies. &#039;&#039;Am J Hum Genet&#039;&#039; &#039;&#039;&#039;61&#039;&#039;&#039;:423-429&lt;br /&gt;
&lt;br /&gt;
* Coventry A, Bull-Otterson LM, Liu X, Clark AG, Maxwell TJ, Crosby J, Hixson JE, Rea TJ, Muzny DM, Lewis LR, Wheeler DA, Sabo A, Lusk C, Weiss KG, Akbar H, Cree A, Hawes AC, Newsham I, Varghese RT, Villasana D, Gross S, Joshi V, Santibanez J, Morgan M, Chang K, Iv WH, Templeton AR, Boerwinkle E, Gibbs R, Sing CF (2010) Deep resequencing reveals excess rare recent variants consistent with explosive population growth. &#039;&#039;Nat Commun.&#039;&#039; &#039;&#039;&#039;1&#039;&#039;&#039;:131. PMID: 21119644&lt;br /&gt;
&lt;br /&gt;
* Delaneau O, Zagury JF, Marchini J (2013) Improved whole-chromosome phasing for disease and population genetic studies. &#039;&#039;Nat Methods.&#039;&#039; &#039;&#039;&#039;10&#039;&#039;&#039;:5-6. PMID: 23269371&lt;br /&gt;
&lt;br /&gt;
* Howie B, Fuchsberger C, Stephens M, Marchini J, Abecasis GR (2012) Fast and accurate genotype imputation in genome-wide association studies through pre-phasing. &#039;&#039;Nat Genet.&#039;&#039; &#039;&#039;&#039;44&#039;&#039;&#039;:955-9. PMID: 22820512 [[Biostatistics 830 - Code Snippets|[Code Snippets]]]&lt;br /&gt;
&lt;br /&gt;
* Iqbal Z, Caccamo M, Turner I, Flicek P, McVean G (2012) De novo assembly and genotyping of variants using colored de Bruijn graphs. &#039;&#039;Nat Genet.&#039;&#039; &#039;&#039;&#039;44&#039;&#039;&#039;:226-32. PMID: 22231483&lt;br /&gt;
&lt;br /&gt;
* Field Y, Boyle EA, Telis N, Gao Z, Gaulton KJ, Golan D, Yengo L, Rocheleau G, Froguel P, McCarthy MI, Pritchard JK (2016) Detection of human adaptation during the past 2000 years. &#039;&#039;Science&#039;&#039; &#039;&#039;&#039;354&#039;&#039;&#039;:760-764&lt;br /&gt;
&lt;br /&gt;
* Jun G, Flickinger M, Hetrick KN, Romm JM, Doheny KF, Abecasis GR, Boehnke M, Kang HM (2012) Detecting and estimating contamination of human DNA samples in sequencing and array-based genotype data. &#039;&#039;Am J Hum Genet.&#039;&#039; &#039;&#039;&#039;91&#039;&#039;&#039;:839-48. PMID: 23103226&lt;br /&gt;
&lt;br /&gt;
* Kang HM, Sul JH, Service SK, Zaitlen NA, Kong SY, Freimer NB, Sabatti C, Eskin E (2010) Variance component model to account for sample structure in genome-wide association studies. &#039;&#039;Nat. Genet.&#039;&#039; &#039;&#039;&#039;42&#039;&#039;&#039;:348-354&lt;br /&gt;
 &lt;br /&gt;
* Kircher M, Witten DM,	Jain P,	O&#039;Roak BJ, Cooper GM, Shendure J (2014) A general framework for estimating the relative pathogenicity of human genetic variants. &#039;&#039;Nat. Genet.&#039;&#039; &#039;&#039;&#039;46&#039;&#039;&#039; 310–315&lt;br /&gt;
&lt;br /&gt;
* Kruglyak L, Daly MJ, Reeve-Daly MP, Lander ES (1996) Parametric and non-parametric linkage analysis: a unified multipoint approach. &#039;&#039;Am J Hum Genet&#039;&#039; &#039;&#039;&#039;58&#039;&#039;&#039;:1347-63&lt;br /&gt;
&lt;br /&gt;
* Li H, Ruan J, Durbin R (2008) Mapping short DNA sequencing reads and calling variants using mapping quality scores. &#039;&#039;Genome Res.&#039;&#039; &#039;&#039;&#039;18&#039;&#039;&#039;:1851-8. PMID: 18714091&lt;br /&gt;
&lt;br /&gt;
* Li H, Durbin R (2009) Fast and accurate short read alignment with Burrows-Wheeler transform. &#039;&#039;Bioinformatics.&#039;&#039; &#039;&#039;&#039;25&#039;&#039;&#039;:1754-60. PMID: 19451168&lt;br /&gt;
&lt;br /&gt;
* Li H, Durbin R (2011) Inference of human population history from individual whole-genome sequences. &#039;&#039;Nature.&#039;&#039; &#039;&#039;&#039;475&#039;&#039;&#039;:493-6. PMID: 21753753&lt;br /&gt;
&lt;br /&gt;
* Li Y, Willer CJ, Ding J, Scheet P, Abecasis GR (2010) MaCH: using sequence and genotype data to estimate haplotypes and unobserved genotypes. &#039;&#039;Genet Epidemiol.&#039;&#039; &#039;&#039;&#039;34&#039;&#039;&#039;:816-34. PMID: 21058334 [[Biostatistics 830 - Code Snippets|[Code Snippets]]]&lt;br /&gt;
&lt;br /&gt;
* Lin DY, Zeng D (2010) Meta-analysis of genome-wide association studies: no efficiency gain in using individual participant data. &#039;&#039;Genet Epidemiol.&#039;&#039; &#039;&#039;&#039;34&#039;&#039;&#039;:60-6. PMID: 19847795&lt;br /&gt;
&lt;br /&gt;
* Liu DJ, Peloso GM, Zhan X, Holmen OL, Zawistowski M, Feng S, Nikpay M, Auer PL, Goel A, Zhang H, Peters U, Farrall M, Orho-Melander M, Kooperberg C, McPherson R, Watkins H, Willer CJ, Hveem K, Melander O, Kathiresan S, Abecasis GR (2014) Meta-analysis of gene-level tests for rare variant association. &#039;&#039;Nat Genet.&#039;&#039; &#039;&#039;&#039;46&#039;&#039;&#039;:200-4&lt;br /&gt;
&lt;br /&gt;
* Sobel E, Lange K (1996) Descent Graphs in Pedigree Analysis: Applications to Haplotyping, Location Scores, and Marker-Sharing Statistics. &#039;&#039;Am. J. Hum. Genet.&#039;&#039; &#039;&#039;&#039;58&#039;&#039;&#039;:1323-1336&lt;br /&gt;
&lt;br /&gt;
* Wang C, Zhan X, Bragg-Gresham J, Kang HM, Stambolian D, Chew EY, Branham KE, Heckenlively J; FUSION Study, Fulton R, Wilson RK, Mardis ER, Lin X, Swaroop A, Zöllner S, Abecasis GR (2014) Ancestry estimation and control of population stratification for sequence-based association studies. &#039;&#039;Nat Genet. 2014&#039;&#039; &#039;&#039;&#039;46&#039;&#039;&#039;:409-15&lt;br /&gt;
&lt;br /&gt;
* Wen X, Stephens M (2010) Using linear predictors to impute allele frequencies from summary or pooled genotype data. &#039;&#039;Ann Appl Stat.&#039;&#039; &#039;&#039;&#039;4&#039;&#039;&#039;:1158-1182. PMID: 21479081&lt;br /&gt;
&lt;br /&gt;
* Wu MC, Lee S, Cai T, Li Y, Boehnke M, Lin X (2011) Rare-variant association testing for sequencing data with the sequence kernel association test. Am J Hum Genet. 89:82-93&lt;br /&gt;
&lt;br /&gt;
* Zerbino DR, Birney E (2008) Velvet: algorithms for de novo short read assembly using de Bruijn graphs. &#039;&#039;Genome Res.&#039;&#039; &#039;&#039;&#039;18&#039;&#039;&#039;:821-9. PMID: 18349386&lt;br /&gt;
&lt;br /&gt;
== Course History ==&lt;br /&gt;
&lt;br /&gt;
This course is offered occasionally. Typically, Mike Boehnke has taught it. Each instructor gives the course a different flavor, so you may find it worthwhile -- even if you have taken the course with Mike previously.&lt;/div&gt;</summary>
		<author><name>Gzajac</name></author>
	</entry>
	<entry>
		<id>http://genome.sph.umich.edu/w/index.php?title=Biostatistics_866:_Main_Page&amp;diff=14691</id>
		<title>Biostatistics 866: Main Page</title>
		<link rel="alternate" type="text/html" href="http://genome.sph.umich.edu/w/index.php?title=Biostatistics_866:_Main_Page&amp;diff=14691"/>
		<updated>2017-04-18T05:50:36Z</updated>

		<summary type="html">&lt;p&gt;Gzajac: /* Student Presentations */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Objective ==&lt;br /&gt;
&lt;br /&gt;
Gene mapping studies study the relationship between genetic variation and susceptibility to human disease. These studies are changing rapidly with the availability of techniques for very large scale genetic analysis, whether based on sequencing or on genotyping. Biostatistics 866 is a Ph.D. level course that helps students understand some of the key building blocks of modern genetic analysis tools. It is meant to provide students with a toolkit to facilitate development and implementation of new statistical methods.&lt;br /&gt;
&lt;br /&gt;
For additional information, see also [[Biostatistics 866: Core Competencies|Core Competencies in Biostatistics Program covered by this course]].&lt;br /&gt;
&lt;br /&gt;
== Target Audience ==&lt;br /&gt;
&lt;br /&gt;
It is highly recommended that students registering for Biostatistics 830 should have previously completed [[Biostatistics 666]] and [[Biostatistics 615/815]], which are courses introducing methods for genetic analysis and programming principles, respectively.&lt;br /&gt;
&lt;br /&gt;
== Scheduling ==&lt;br /&gt;
&lt;br /&gt;
For Winter 2017, classes are scheduled for Tuesdays and Thursdays, 8:30 - 10 am in SPH II, room 1152.&lt;br /&gt;
&lt;br /&gt;
== Grading ==&lt;br /&gt;
&lt;br /&gt;
The final grade will take into account your performance in problem sets and worksheets as well as your participation in class.&lt;br /&gt;
&lt;br /&gt;
== Class Worksheets ==&lt;br /&gt;
&lt;br /&gt;
=== Hidden Markov Models ===&lt;br /&gt;
&lt;br /&gt;
Week of January 8 - [[Media:Question_Sheet_-_Li_et_al_(2010)_Gen_Epid.pdf|Li et al (2010)]]&lt;br /&gt;
&lt;br /&gt;
Week of January 15 - [[Media:Question_Sheet_-_Howie_et_al_(2012)_Nat_Genet.pdf|Howie et al (2012)]]  (and, [[Media:866_-_Slides_for_Hyun.pdf|Discussion slides for January 19]])&lt;br /&gt;
&lt;br /&gt;
Week of January 22 - [[Media:Question_Sheet_-_Delaneau_et_al_(2013)_Nature_Methods.pdf|Delaneau et al (2013)]]&lt;br /&gt;
&lt;br /&gt;
Week of January 29 - [[Media:Question_Sheet_-_Boehnke_and_Cox_(1997)_AJHG.pdf|Boehnke and Cox (1997)]]&lt;br /&gt;
&lt;br /&gt;
=== Short Read Sequencing ===&lt;br /&gt;
&lt;br /&gt;
February 12 - [[Media:Question_Sheet_-_Li_et_al_(2008)_Genome_Research.pdf|Li et al (2008)]]&lt;br /&gt;
&lt;br /&gt;
February 19 - [[Media:Question_Sheet_-_Li_and_Durbin_(2009)_Bioinformatics.pdf|Li and Durbin (2009)]]&lt;br /&gt;
&lt;br /&gt;
March 5 - [[Media:Question_Sheet_-_Zerbino_and_Birney_(2008)_Bioinformatics.pdf|Zerbino and Birney (2008)]]&lt;br /&gt;
&lt;br /&gt;
March 12 - [[Media:Question_Sheet_-_Iqbal_et_al_(2012)_Nature_Genetics.pdf|Iqbal et al (2012)]]&lt;br /&gt;
&lt;br /&gt;
=== Association Analysis ===&lt;br /&gt;
&lt;br /&gt;
March 19 - [[Media:Question_Sheet_-_2017_-_Kang_et_al_(2010)_Nature_Genetics_.pdf|Kang et al (2010)]]&lt;br /&gt;
&lt;br /&gt;
March 26 - [[Media:Question_Sheet_-_2017_-_Wu_et_al_(2011)_American_Journal_of_Human_Genetics.pdf|Wu et al (2011)]]&lt;br /&gt;
&lt;br /&gt;
April 2 - [[Media:Question_Sheet_-_2017_-_Liu_et_al_(2013)_Nature_Genetics.pdf|Liu et al (2014)]]&lt;br /&gt;
&lt;br /&gt;
=== Adventures in Statistical Genetics ===&lt;br /&gt;
&lt;br /&gt;
April 9 - [[Media:2017.04_-_Adventures_in_Human_Genetics.pdf|Goncalo&#039;s Adventure in Human Genetics]]&lt;br /&gt;
&lt;br /&gt;
== Student Presentations ==&lt;br /&gt;
*[[Greg | File:Zajac_Journey_Lecture.pdf]]&lt;br /&gt;
&lt;br /&gt;
== Standards of Academic Conduct ==&lt;br /&gt;
&lt;br /&gt;
The following is an extract from the School of Public Health&#039;s Student Code of Conduct [http://www.sph.umich.edu/academics/policies/conduct.html]:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Student academic misconduct includes behavior involving plagiarism, cheating, fabrication, falsification of records or official documents, intentional misuse of equipment or materials, and aiding and abetting the perpetration of such acts. The preparation of reports, papers, and examinations, assigned on an individual basis, must represent each student’s own effort. Reference sources should be indicated clearly. The use of assistance from other students or aids of any kind during a written examination, except when the use of books or notes has been approved by an instructor, is a violation of the standard of academic conduct.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
In the context of this course, any work you hand-in should be your own and any material that is a transcript (or interpreted transcript) of work by others must be clearly labeled as such. If you turn in work that is directly copied from another student or from a published or unpublished source without attribution, you risk failing the course.&lt;br /&gt;
&lt;br /&gt;
== Planned Reading ==&lt;br /&gt;
&lt;br /&gt;
* Abecasis GR, Cherny SS, Cookson WO, Cardon LR (2002) Merlin--rapid analysis of dense genetic maps using sparse gene flow trees. &#039;&#039;Nat Genetics&#039;&#039; &#039;&#039;&#039;30&#039;&#039;&#039;:97-101&lt;br /&gt;
&lt;br /&gt;
* Boehnke M and Cox N (1997) Accurate Inference of Relationships in Sib-Pair Linkage Studies. &#039;&#039;Am J Hum Genet&#039;&#039; &#039;&#039;&#039;61&#039;&#039;&#039;:423-429&lt;br /&gt;
&lt;br /&gt;
* Coventry A, Bull-Otterson LM, Liu X, Clark AG, Maxwell TJ, Crosby J, Hixson JE, Rea TJ, Muzny DM, Lewis LR, Wheeler DA, Sabo A, Lusk C, Weiss KG, Akbar H, Cree A, Hawes AC, Newsham I, Varghese RT, Villasana D, Gross S, Joshi V, Santibanez J, Morgan M, Chang K, Iv WH, Templeton AR, Boerwinkle E, Gibbs R, Sing CF (2010) Deep resequencing reveals excess rare recent variants consistent with explosive population growth. &#039;&#039;Nat Commun.&#039;&#039; &#039;&#039;&#039;1&#039;&#039;&#039;:131. PMID: 21119644&lt;br /&gt;
&lt;br /&gt;
* Delaneau O, Zagury JF, Marchini J (2013) Improved whole-chromosome phasing for disease and population genetic studies. &#039;&#039;Nat Methods.&#039;&#039; &#039;&#039;&#039;10&#039;&#039;&#039;:5-6. PMID: 23269371&lt;br /&gt;
&lt;br /&gt;
* Howie B, Fuchsberger C, Stephens M, Marchini J, Abecasis GR (2012) Fast and accurate genotype imputation in genome-wide association studies through pre-phasing. &#039;&#039;Nat Genet.&#039;&#039; &#039;&#039;&#039;44&#039;&#039;&#039;:955-9. PMID: 22820512 [[Biostatistics 830 - Code Snippets|[Code Snippets]]]&lt;br /&gt;
&lt;br /&gt;
* Iqbal Z, Caccamo M, Turner I, Flicek P, McVean G (2012) De novo assembly and genotyping of variants using colored de Bruijn graphs. &#039;&#039;Nat Genet.&#039;&#039; &#039;&#039;&#039;44&#039;&#039;&#039;:226-32. PMID: 22231483&lt;br /&gt;
&lt;br /&gt;
* Field Y, Boyle EA, Telis N, Gao Z, Gaulton KJ, Golan D, Yengo L, Rocheleau G, Froguel P, McCarthy MI, Pritchard JK (2016) Detection of human adaptation during the past 2000 years. &#039;&#039;Science&#039;&#039; &#039;&#039;&#039;354&#039;&#039;&#039;:760-764&lt;br /&gt;
&lt;br /&gt;
* Jun G, Flickinger M, Hetrick KN, Romm JM, Doheny KF, Abecasis GR, Boehnke M, Kang HM (2012) Detecting and estimating contamination of human DNA samples in sequencing and array-based genotype data. &#039;&#039;Am J Hum Genet.&#039;&#039; &#039;&#039;&#039;91&#039;&#039;&#039;:839-48. PMID: 23103226&lt;br /&gt;
&lt;br /&gt;
* Kang HM, Sul JH, Service SK, Zaitlen NA, Kong SY, Freimer NB, Sabatti C, Eskin E (2010) Variance component model to account for sample structure in genome-wide association studies. &#039;&#039;Nat. Genet.&#039;&#039; &#039;&#039;&#039;42&#039;&#039;&#039;:348-354&lt;br /&gt;
 &lt;br /&gt;
* Kircher M, Witten DM,	Jain P,	O&#039;Roak BJ, Cooper GM, Shendure J (2014) A general framework for estimating the relative pathogenicity of human genetic variants. &#039;&#039;Nat. Genet.&#039;&#039; &#039;&#039;&#039;46&#039;&#039;&#039; 310–315&lt;br /&gt;
&lt;br /&gt;
* Kruglyak L, Daly MJ, Reeve-Daly MP, Lander ES (1996) Parametric and non-parametric linkage analysis: a unified multipoint approach. &#039;&#039;Am J Hum Genet&#039;&#039; &#039;&#039;&#039;58&#039;&#039;&#039;:1347-63&lt;br /&gt;
&lt;br /&gt;
* Li H, Ruan J, Durbin R (2008) Mapping short DNA sequencing reads and calling variants using mapping quality scores. &#039;&#039;Genome Res.&#039;&#039; &#039;&#039;&#039;18&#039;&#039;&#039;:1851-8. PMID: 18714091&lt;br /&gt;
&lt;br /&gt;
* Li H, Durbin R (2009) Fast and accurate short read alignment with Burrows-Wheeler transform. &#039;&#039;Bioinformatics.&#039;&#039; &#039;&#039;&#039;25&#039;&#039;&#039;:1754-60. PMID: 19451168&lt;br /&gt;
&lt;br /&gt;
* Li H, Durbin R (2011) Inference of human population history from individual whole-genome sequences. &#039;&#039;Nature.&#039;&#039; &#039;&#039;&#039;475&#039;&#039;&#039;:493-6. PMID: 21753753&lt;br /&gt;
&lt;br /&gt;
* Li Y, Willer CJ, Ding J, Scheet P, Abecasis GR (2010) MaCH: using sequence and genotype data to estimate haplotypes and unobserved genotypes. &#039;&#039;Genet Epidemiol.&#039;&#039; &#039;&#039;&#039;34&#039;&#039;&#039;:816-34. PMID: 21058334 [[Biostatistics 830 - Code Snippets|[Code Snippets]]]&lt;br /&gt;
&lt;br /&gt;
* Lin DY, Zeng D (2010) Meta-analysis of genome-wide association studies: no efficiency gain in using individual participant data. &#039;&#039;Genet Epidemiol.&#039;&#039; &#039;&#039;&#039;34&#039;&#039;&#039;:60-6. PMID: 19847795&lt;br /&gt;
&lt;br /&gt;
* Liu DJ, Peloso GM, Zhan X, Holmen OL, Zawistowski M, Feng S, Nikpay M, Auer PL, Goel A, Zhang H, Peters U, Farrall M, Orho-Melander M, Kooperberg C, McPherson R, Watkins H, Willer CJ, Hveem K, Melander O, Kathiresan S, Abecasis GR (2014) Meta-analysis of gene-level tests for rare variant association. &#039;&#039;Nat Genet.&#039;&#039; &#039;&#039;&#039;46&#039;&#039;&#039;:200-4&lt;br /&gt;
&lt;br /&gt;
* Sobel E, Lange K (1996) Descent Graphs in Pedigree Analysis: Applications to Haplotyping, Location Scores, and Marker-Sharing Statistics. &#039;&#039;Am. J. Hum. Genet.&#039;&#039; &#039;&#039;&#039;58&#039;&#039;&#039;:1323-1336&lt;br /&gt;
&lt;br /&gt;
* Wang C, Zhan X, Bragg-Gresham J, Kang HM, Stambolian D, Chew EY, Branham KE, Heckenlively J; FUSION Study, Fulton R, Wilson RK, Mardis ER, Lin X, Swaroop A, Zöllner S, Abecasis GR (2014) Ancestry estimation and control of population stratification for sequence-based association studies. &#039;&#039;Nat Genet. 2014&#039;&#039; &#039;&#039;&#039;46&#039;&#039;&#039;:409-15&lt;br /&gt;
&lt;br /&gt;
* Wen X, Stephens M (2010) Using linear predictors to impute allele frequencies from summary or pooled genotype data. &#039;&#039;Ann Appl Stat.&#039;&#039; &#039;&#039;&#039;4&#039;&#039;&#039;:1158-1182. PMID: 21479081&lt;br /&gt;
&lt;br /&gt;
* Wu MC, Lee S, Cai T, Li Y, Boehnke M, Lin X (2011) Rare-variant association testing for sequencing data with the sequence kernel association test. Am J Hum Genet. 89:82-93&lt;br /&gt;
&lt;br /&gt;
* Zerbino DR, Birney E (2008) Velvet: algorithms for de novo short read assembly using de Bruijn graphs. &#039;&#039;Genome Res.&#039;&#039; &#039;&#039;&#039;18&#039;&#039;&#039;:821-9. PMID: 18349386&lt;br /&gt;
&lt;br /&gt;
== Course History ==&lt;br /&gt;
&lt;br /&gt;
This course is offered occasionally. Typically, Mike Boehnke has taught it. Each instructor gives the course a different flavor, so you may find it worthwhile -- even if you have taken the course with Mike previously.&lt;/div&gt;</summary>
		<author><name>Gzajac</name></author>
	</entry>
	<entry>
		<id>http://genome.sph.umich.edu/w/index.php?title=Biostatistics_866:_Main_Page&amp;diff=14690</id>
		<title>Biostatistics 866: Main Page</title>
		<link rel="alternate" type="text/html" href="http://genome.sph.umich.edu/w/index.php?title=Biostatistics_866:_Main_Page&amp;diff=14690"/>
		<updated>2017-04-18T05:50:13Z</updated>

		<summary type="html">&lt;p&gt;Gzajac: /* Student Presentations */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Objective ==&lt;br /&gt;
&lt;br /&gt;
Gene mapping studies study the relationship between genetic variation and susceptibility to human disease. These studies are changing rapidly with the availability of techniques for very large scale genetic analysis, whether based on sequencing or on genotyping. Biostatistics 866 is a Ph.D. level course that helps students understand some of the key building blocks of modern genetic analysis tools. It is meant to provide students with a toolkit to facilitate development and implementation of new statistical methods.&lt;br /&gt;
&lt;br /&gt;
For additional information, see also [[Biostatistics 866: Core Competencies|Core Competencies in Biostatistics Program covered by this course]].&lt;br /&gt;
&lt;br /&gt;
== Target Audience ==&lt;br /&gt;
&lt;br /&gt;
It is highly recommended that students registering for Biostatistics 830 should have previously completed [[Biostatistics 666]] and [[Biostatistics 615/815]], which are courses introducing methods for genetic analysis and programming principles, respectively.&lt;br /&gt;
&lt;br /&gt;
== Scheduling ==&lt;br /&gt;
&lt;br /&gt;
For Winter 2017, classes are scheduled for Tuesdays and Thursdays, 8:30 - 10 am in SPH II, room 1152.&lt;br /&gt;
&lt;br /&gt;
== Grading ==&lt;br /&gt;
&lt;br /&gt;
The final grade will take into account your performance in problem sets and worksheets as well as your participation in class.&lt;br /&gt;
&lt;br /&gt;
== Class Worksheets ==&lt;br /&gt;
&lt;br /&gt;
=== Hidden Markov Models ===&lt;br /&gt;
&lt;br /&gt;
Week of January 8 - [[Media:Question_Sheet_-_Li_et_al_(2010)_Gen_Epid.pdf|Li et al (2010)]]&lt;br /&gt;
&lt;br /&gt;
Week of January 15 - [[Media:Question_Sheet_-_Howie_et_al_(2012)_Nat_Genet.pdf|Howie et al (2012)]]  (and, [[Media:866_-_Slides_for_Hyun.pdf|Discussion slides for January 19]])&lt;br /&gt;
&lt;br /&gt;
Week of January 22 - [[Media:Question_Sheet_-_Delaneau_et_al_(2013)_Nature_Methods.pdf|Delaneau et al (2013)]]&lt;br /&gt;
&lt;br /&gt;
Week of January 29 - [[Media:Question_Sheet_-_Boehnke_and_Cox_(1997)_AJHG.pdf|Boehnke and Cox (1997)]]&lt;br /&gt;
&lt;br /&gt;
=== Short Read Sequencing ===&lt;br /&gt;
&lt;br /&gt;
February 12 - [[Media:Question_Sheet_-_Li_et_al_(2008)_Genome_Research.pdf|Li et al (2008)]]&lt;br /&gt;
&lt;br /&gt;
February 19 - [[Media:Question_Sheet_-_Li_and_Durbin_(2009)_Bioinformatics.pdf|Li and Durbin (2009)]]&lt;br /&gt;
&lt;br /&gt;
March 5 - [[Media:Question_Sheet_-_Zerbino_and_Birney_(2008)_Bioinformatics.pdf|Zerbino and Birney (2008)]]&lt;br /&gt;
&lt;br /&gt;
March 12 - [[Media:Question_Sheet_-_Iqbal_et_al_(2012)_Nature_Genetics.pdf|Iqbal et al (2012)]]&lt;br /&gt;
&lt;br /&gt;
=== Association Analysis ===&lt;br /&gt;
&lt;br /&gt;
March 19 - [[Media:Question_Sheet_-_2017_-_Kang_et_al_(2010)_Nature_Genetics_.pdf|Kang et al (2010)]]&lt;br /&gt;
&lt;br /&gt;
March 26 - [[Media:Question_Sheet_-_2017_-_Wu_et_al_(2011)_American_Journal_of_Human_Genetics.pdf|Wu et al (2011)]]&lt;br /&gt;
&lt;br /&gt;
April 2 - [[Media:Question_Sheet_-_2017_-_Liu_et_al_(2013)_Nature_Genetics.pdf|Liu et al (2014)]]&lt;br /&gt;
&lt;br /&gt;
=== Adventures in Statistical Genetics ===&lt;br /&gt;
&lt;br /&gt;
April 9 - [[Media:2017.04_-_Adventures_in_Human_Genetics.pdf|Goncalo&#039;s Adventure in Human Genetics]]&lt;br /&gt;
&lt;br /&gt;
== Student Presentations ==&lt;br /&gt;
*[[File:Zajac_Journey_Lecture.pdf | Greg]]&lt;br /&gt;
&lt;br /&gt;
== Standards of Academic Conduct ==&lt;br /&gt;
&lt;br /&gt;
The following is an extract from the School of Public Health&#039;s Student Code of Conduct [http://www.sph.umich.edu/academics/policies/conduct.html]:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Student academic misconduct includes behavior involving plagiarism, cheating, fabrication, falsification of records or official documents, intentional misuse of equipment or materials, and aiding and abetting the perpetration of such acts. The preparation of reports, papers, and examinations, assigned on an individual basis, must represent each student’s own effort. Reference sources should be indicated clearly. The use of assistance from other students or aids of any kind during a written examination, except when the use of books or notes has been approved by an instructor, is a violation of the standard of academic conduct.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
In the context of this course, any work you hand-in should be your own and any material that is a transcript (or interpreted transcript) of work by others must be clearly labeled as such. If you turn in work that is directly copied from another student or from a published or unpublished source without attribution, you risk failing the course.&lt;br /&gt;
&lt;br /&gt;
== Planned Reading ==&lt;br /&gt;
&lt;br /&gt;
* Abecasis GR, Cherny SS, Cookson WO, Cardon LR (2002) Merlin--rapid analysis of dense genetic maps using sparse gene flow trees. &#039;&#039;Nat Genetics&#039;&#039; &#039;&#039;&#039;30&#039;&#039;&#039;:97-101&lt;br /&gt;
&lt;br /&gt;
* Boehnke M and Cox N (1997) Accurate Inference of Relationships in Sib-Pair Linkage Studies. &#039;&#039;Am J Hum Genet&#039;&#039; &#039;&#039;&#039;61&#039;&#039;&#039;:423-429&lt;br /&gt;
&lt;br /&gt;
* Coventry A, Bull-Otterson LM, Liu X, Clark AG, Maxwell TJ, Crosby J, Hixson JE, Rea TJ, Muzny DM, Lewis LR, Wheeler DA, Sabo A, Lusk C, Weiss KG, Akbar H, Cree A, Hawes AC, Newsham I, Varghese RT, Villasana D, Gross S, Joshi V, Santibanez J, Morgan M, Chang K, Iv WH, Templeton AR, Boerwinkle E, Gibbs R, Sing CF (2010) Deep resequencing reveals excess rare recent variants consistent with explosive population growth. &#039;&#039;Nat Commun.&#039;&#039; &#039;&#039;&#039;1&#039;&#039;&#039;:131. PMID: 21119644&lt;br /&gt;
&lt;br /&gt;
* Delaneau O, Zagury JF, Marchini J (2013) Improved whole-chromosome phasing for disease and population genetic studies. &#039;&#039;Nat Methods.&#039;&#039; &#039;&#039;&#039;10&#039;&#039;&#039;:5-6. PMID: 23269371&lt;br /&gt;
&lt;br /&gt;
* Howie B, Fuchsberger C, Stephens M, Marchini J, Abecasis GR (2012) Fast and accurate genotype imputation in genome-wide association studies through pre-phasing. &#039;&#039;Nat Genet.&#039;&#039; &#039;&#039;&#039;44&#039;&#039;&#039;:955-9. PMID: 22820512 [[Biostatistics 830 - Code Snippets|[Code Snippets]]]&lt;br /&gt;
&lt;br /&gt;
* Iqbal Z, Caccamo M, Turner I, Flicek P, McVean G (2012) De novo assembly and genotyping of variants using colored de Bruijn graphs. &#039;&#039;Nat Genet.&#039;&#039; &#039;&#039;&#039;44&#039;&#039;&#039;:226-32. PMID: 22231483&lt;br /&gt;
&lt;br /&gt;
* Field Y, Boyle EA, Telis N, Gao Z, Gaulton KJ, Golan D, Yengo L, Rocheleau G, Froguel P, McCarthy MI, Pritchard JK (2016) Detection of human adaptation during the past 2000 years. &#039;&#039;Science&#039;&#039; &#039;&#039;&#039;354&#039;&#039;&#039;:760-764&lt;br /&gt;
&lt;br /&gt;
* Jun G, Flickinger M, Hetrick KN, Romm JM, Doheny KF, Abecasis GR, Boehnke M, Kang HM (2012) Detecting and estimating contamination of human DNA samples in sequencing and array-based genotype data. &#039;&#039;Am J Hum Genet.&#039;&#039; &#039;&#039;&#039;91&#039;&#039;&#039;:839-48. PMID: 23103226&lt;br /&gt;
&lt;br /&gt;
* Kang HM, Sul JH, Service SK, Zaitlen NA, Kong SY, Freimer NB, Sabatti C, Eskin E (2010) Variance component model to account for sample structure in genome-wide association studies. &#039;&#039;Nat. Genet.&#039;&#039; &#039;&#039;&#039;42&#039;&#039;&#039;:348-354&lt;br /&gt;
 &lt;br /&gt;
* Kircher M, Witten DM,	Jain P,	O&#039;Roak BJ, Cooper GM, Shendure J (2014) A general framework for estimating the relative pathogenicity of human genetic variants. &#039;&#039;Nat. Genet.&#039;&#039; &#039;&#039;&#039;46&#039;&#039;&#039; 310–315&lt;br /&gt;
&lt;br /&gt;
* Kruglyak L, Daly MJ, Reeve-Daly MP, Lander ES (1996) Parametric and non-parametric linkage analysis: a unified multipoint approach. &#039;&#039;Am J Hum Genet&#039;&#039; &#039;&#039;&#039;58&#039;&#039;&#039;:1347-63&lt;br /&gt;
&lt;br /&gt;
* Li H, Ruan J, Durbin R (2008) Mapping short DNA sequencing reads and calling variants using mapping quality scores. &#039;&#039;Genome Res.&#039;&#039; &#039;&#039;&#039;18&#039;&#039;&#039;:1851-8. PMID: 18714091&lt;br /&gt;
&lt;br /&gt;
* Li H, Durbin R (2009) Fast and accurate short read alignment with Burrows-Wheeler transform. &#039;&#039;Bioinformatics.&#039;&#039; &#039;&#039;&#039;25&#039;&#039;&#039;:1754-60. PMID: 19451168&lt;br /&gt;
&lt;br /&gt;
* Li H, Durbin R (2011) Inference of human population history from individual whole-genome sequences. &#039;&#039;Nature.&#039;&#039; &#039;&#039;&#039;475&#039;&#039;&#039;:493-6. PMID: 21753753&lt;br /&gt;
&lt;br /&gt;
* Li Y, Willer CJ, Ding J, Scheet P, Abecasis GR (2010) MaCH: using sequence and genotype data to estimate haplotypes and unobserved genotypes. &#039;&#039;Genet Epidemiol.&#039;&#039; &#039;&#039;&#039;34&#039;&#039;&#039;:816-34. PMID: 21058334 [[Biostatistics 830 - Code Snippets|[Code Snippets]]]&lt;br /&gt;
&lt;br /&gt;
* Lin DY, Zeng D (2010) Meta-analysis of genome-wide association studies: no efficiency gain in using individual participant data. &#039;&#039;Genet Epidemiol.&#039;&#039; &#039;&#039;&#039;34&#039;&#039;&#039;:60-6. PMID: 19847795&lt;br /&gt;
&lt;br /&gt;
* Liu DJ, Peloso GM, Zhan X, Holmen OL, Zawistowski M, Feng S, Nikpay M, Auer PL, Goel A, Zhang H, Peters U, Farrall M, Orho-Melander M, Kooperberg C, McPherson R, Watkins H, Willer CJ, Hveem K, Melander O, Kathiresan S, Abecasis GR (2014) Meta-analysis of gene-level tests for rare variant association. &#039;&#039;Nat Genet.&#039;&#039; &#039;&#039;&#039;46&#039;&#039;&#039;:200-4&lt;br /&gt;
&lt;br /&gt;
* Sobel E, Lange K (1996) Descent Graphs in Pedigree Analysis: Applications to Haplotyping, Location Scores, and Marker-Sharing Statistics. &#039;&#039;Am. J. Hum. Genet.&#039;&#039; &#039;&#039;&#039;58&#039;&#039;&#039;:1323-1336&lt;br /&gt;
&lt;br /&gt;
* Wang C, Zhan X, Bragg-Gresham J, Kang HM, Stambolian D, Chew EY, Branham KE, Heckenlively J; FUSION Study, Fulton R, Wilson RK, Mardis ER, Lin X, Swaroop A, Zöllner S, Abecasis GR (2014) Ancestry estimation and control of population stratification for sequence-based association studies. &#039;&#039;Nat Genet. 2014&#039;&#039; &#039;&#039;&#039;46&#039;&#039;&#039;:409-15&lt;br /&gt;
&lt;br /&gt;
* Wen X, Stephens M (2010) Using linear predictors to impute allele frequencies from summary or pooled genotype data. &#039;&#039;Ann Appl Stat.&#039;&#039; &#039;&#039;&#039;4&#039;&#039;&#039;:1158-1182. PMID: 21479081&lt;br /&gt;
&lt;br /&gt;
* Wu MC, Lee S, Cai T, Li Y, Boehnke M, Lin X (2011) Rare-variant association testing for sequencing data with the sequence kernel association test. Am J Hum Genet. 89:82-93&lt;br /&gt;
&lt;br /&gt;
* Zerbino DR, Birney E (2008) Velvet: algorithms for de novo short read assembly using de Bruijn graphs. &#039;&#039;Genome Res.&#039;&#039; &#039;&#039;&#039;18&#039;&#039;&#039;:821-9. PMID: 18349386&lt;br /&gt;
&lt;br /&gt;
== Course History ==&lt;br /&gt;
&lt;br /&gt;
This course is offered occasionally. Typically, Mike Boehnke has taught it. Each instructor gives the course a different flavor, so you may find it worthwhile -- even if you have taken the course with Mike previously.&lt;/div&gt;</summary>
		<author><name>Gzajac</name></author>
	</entry>
	<entry>
		<id>http://genome.sph.umich.edu/w/index.php?title=File:Zajac_Journey_Lecture.pdf&amp;diff=14689</id>
		<title>File:Zajac Journey Lecture.pdf</title>
		<link rel="alternate" type="text/html" href="http://genome.sph.umich.edu/w/index.php?title=File:Zajac_Journey_Lecture.pdf&amp;diff=14689"/>
		<updated>2017-04-18T05:49:03Z</updated>

		<summary type="html">&lt;p&gt;Gzajac: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Gzajac</name></author>
	</entry>
	<entry>
		<id>http://genome.sph.umich.edu/w/index.php?title=Biostatistics_866:_Main_Page&amp;diff=14688</id>
		<title>Biostatistics 866: Main Page</title>
		<link rel="alternate" type="text/html" href="http://genome.sph.umich.edu/w/index.php?title=Biostatistics_866:_Main_Page&amp;diff=14688"/>
		<updated>2017-04-18T05:48:05Z</updated>

		<summary type="html">&lt;p&gt;Gzajac: /* Student Presentations */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Objective ==&lt;br /&gt;
&lt;br /&gt;
Gene mapping studies study the relationship between genetic variation and susceptibility to human disease. These studies are changing rapidly with the availability of techniques for very large scale genetic analysis, whether based on sequencing or on genotyping. Biostatistics 866 is a Ph.D. level course that helps students understand some of the key building blocks of modern genetic analysis tools. It is meant to provide students with a toolkit to facilitate development and implementation of new statistical methods.&lt;br /&gt;
&lt;br /&gt;
For additional information, see also [[Biostatistics 866: Core Competencies|Core Competencies in Biostatistics Program covered by this course]].&lt;br /&gt;
&lt;br /&gt;
== Target Audience ==&lt;br /&gt;
&lt;br /&gt;
It is highly recommended that students registering for Biostatistics 830 should have previously completed [[Biostatistics 666]] and [[Biostatistics 615/815]], which are courses introducing methods for genetic analysis and programming principles, respectively.&lt;br /&gt;
&lt;br /&gt;
== Scheduling ==&lt;br /&gt;
&lt;br /&gt;
For Winter 2017, classes are scheduled for Tuesdays and Thursdays, 8:30 - 10 am in SPH II, room 1152.&lt;br /&gt;
&lt;br /&gt;
== Grading ==&lt;br /&gt;
&lt;br /&gt;
The final grade will take into account your performance in problem sets and worksheets as well as your participation in class.&lt;br /&gt;
&lt;br /&gt;
== Class Worksheets ==&lt;br /&gt;
&lt;br /&gt;
=== Hidden Markov Models ===&lt;br /&gt;
&lt;br /&gt;
Week of January 8 - [[Media:Question_Sheet_-_Li_et_al_(2010)_Gen_Epid.pdf|Li et al (2010)]]&lt;br /&gt;
&lt;br /&gt;
Week of January 15 - [[Media:Question_Sheet_-_Howie_et_al_(2012)_Nat_Genet.pdf|Howie et al (2012)]]  (and, [[Media:866_-_Slides_for_Hyun.pdf|Discussion slides for January 19]])&lt;br /&gt;
&lt;br /&gt;
Week of January 22 - [[Media:Question_Sheet_-_Delaneau_et_al_(2013)_Nature_Methods.pdf|Delaneau et al (2013)]]&lt;br /&gt;
&lt;br /&gt;
Week of January 29 - [[Media:Question_Sheet_-_Boehnke_and_Cox_(1997)_AJHG.pdf|Boehnke and Cox (1997)]]&lt;br /&gt;
&lt;br /&gt;
=== Short Read Sequencing ===&lt;br /&gt;
&lt;br /&gt;
February 12 - [[Media:Question_Sheet_-_Li_et_al_(2008)_Genome_Research.pdf|Li et al (2008)]]&lt;br /&gt;
&lt;br /&gt;
February 19 - [[Media:Question_Sheet_-_Li_and_Durbin_(2009)_Bioinformatics.pdf|Li and Durbin (2009)]]&lt;br /&gt;
&lt;br /&gt;
March 5 - [[Media:Question_Sheet_-_Zerbino_and_Birney_(2008)_Bioinformatics.pdf|Zerbino and Birney (2008)]]&lt;br /&gt;
&lt;br /&gt;
March 12 - [[Media:Question_Sheet_-_Iqbal_et_al_(2012)_Nature_Genetics.pdf|Iqbal et al (2012)]]&lt;br /&gt;
&lt;br /&gt;
=== Association Analysis ===&lt;br /&gt;
&lt;br /&gt;
March 19 - [[Media:Question_Sheet_-_2017_-_Kang_et_al_(2010)_Nature_Genetics_.pdf|Kang et al (2010)]]&lt;br /&gt;
&lt;br /&gt;
March 26 - [[Media:Question_Sheet_-_2017_-_Wu_et_al_(2011)_American_Journal_of_Human_Genetics.pdf|Wu et al (2011)]]&lt;br /&gt;
&lt;br /&gt;
April 2 - [[Media:Question_Sheet_-_2017_-_Liu_et_al_(2013)_Nature_Genetics.pdf|Liu et al (2014)]]&lt;br /&gt;
&lt;br /&gt;
=== Adventures in Statistical Genetics ===&lt;br /&gt;
&lt;br /&gt;
April 9 - [[Media:2017.04_-_Adventures_in_Human_Genetics.pdf|Goncalo&#039;s Adventure in Human Genetics]]&lt;br /&gt;
&lt;br /&gt;
== Student Presentations ==&lt;br /&gt;
[[File:Zajac_Journey_Lecture.pdf | Greg]]&lt;br /&gt;
&lt;br /&gt;
== Standards of Academic Conduct ==&lt;br /&gt;
&lt;br /&gt;
The following is an extract from the School of Public Health&#039;s Student Code of Conduct [http://www.sph.umich.edu/academics/policies/conduct.html]:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Student academic misconduct includes behavior involving plagiarism, cheating, fabrication, falsification of records or official documents, intentional misuse of equipment or materials, and aiding and abetting the perpetration of such acts. The preparation of reports, papers, and examinations, assigned on an individual basis, must represent each student’s own effort. Reference sources should be indicated clearly. The use of assistance from other students or aids of any kind during a written examination, except when the use of books or notes has been approved by an instructor, is a violation of the standard of academic conduct.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
In the context of this course, any work you hand-in should be your own and any material that is a transcript (or interpreted transcript) of work by others must be clearly labeled as such. If you turn in work that is directly copied from another student or from a published or unpublished source without attribution, you risk failing the course.&lt;br /&gt;
&lt;br /&gt;
== Planned Reading ==&lt;br /&gt;
&lt;br /&gt;
* Abecasis GR, Cherny SS, Cookson WO, Cardon LR (2002) Merlin--rapid analysis of dense genetic maps using sparse gene flow trees. &#039;&#039;Nat Genetics&#039;&#039; &#039;&#039;&#039;30&#039;&#039;&#039;:97-101&lt;br /&gt;
&lt;br /&gt;
* Boehnke M and Cox N (1997) Accurate Inference of Relationships in Sib-Pair Linkage Studies. &#039;&#039;Am J Hum Genet&#039;&#039; &#039;&#039;&#039;61&#039;&#039;&#039;:423-429&lt;br /&gt;
&lt;br /&gt;
* Coventry A, Bull-Otterson LM, Liu X, Clark AG, Maxwell TJ, Crosby J, Hixson JE, Rea TJ, Muzny DM, Lewis LR, Wheeler DA, Sabo A, Lusk C, Weiss KG, Akbar H, Cree A, Hawes AC, Newsham I, Varghese RT, Villasana D, Gross S, Joshi V, Santibanez J, Morgan M, Chang K, Iv WH, Templeton AR, Boerwinkle E, Gibbs R, Sing CF (2010) Deep resequencing reveals excess rare recent variants consistent with explosive population growth. &#039;&#039;Nat Commun.&#039;&#039; &#039;&#039;&#039;1&#039;&#039;&#039;:131. PMID: 21119644&lt;br /&gt;
&lt;br /&gt;
* Delaneau O, Zagury JF, Marchini J (2013) Improved whole-chromosome phasing for disease and population genetic studies. &#039;&#039;Nat Methods.&#039;&#039; &#039;&#039;&#039;10&#039;&#039;&#039;:5-6. PMID: 23269371&lt;br /&gt;
&lt;br /&gt;
* Howie B, Fuchsberger C, Stephens M, Marchini J, Abecasis GR (2012) Fast and accurate genotype imputation in genome-wide association studies through pre-phasing. &#039;&#039;Nat Genet.&#039;&#039; &#039;&#039;&#039;44&#039;&#039;&#039;:955-9. PMID: 22820512 [[Biostatistics 830 - Code Snippets|[Code Snippets]]]&lt;br /&gt;
&lt;br /&gt;
* Iqbal Z, Caccamo M, Turner I, Flicek P, McVean G (2012) De novo assembly and genotyping of variants using colored de Bruijn graphs. &#039;&#039;Nat Genet.&#039;&#039; &#039;&#039;&#039;44&#039;&#039;&#039;:226-32. PMID: 22231483&lt;br /&gt;
&lt;br /&gt;
* Field Y, Boyle EA, Telis N, Gao Z, Gaulton KJ, Golan D, Yengo L, Rocheleau G, Froguel P, McCarthy MI, Pritchard JK (2016) Detection of human adaptation during the past 2000 years. &#039;&#039;Science&#039;&#039; &#039;&#039;&#039;354&#039;&#039;&#039;:760-764&lt;br /&gt;
&lt;br /&gt;
* Jun G, Flickinger M, Hetrick KN, Romm JM, Doheny KF, Abecasis GR, Boehnke M, Kang HM (2012) Detecting and estimating contamination of human DNA samples in sequencing and array-based genotype data. &#039;&#039;Am J Hum Genet.&#039;&#039; &#039;&#039;&#039;91&#039;&#039;&#039;:839-48. PMID: 23103226&lt;br /&gt;
&lt;br /&gt;
* Kang HM, Sul JH, Service SK, Zaitlen NA, Kong SY, Freimer NB, Sabatti C, Eskin E (2010) Variance component model to account for sample structure in genome-wide association studies. &#039;&#039;Nat. Genet.&#039;&#039; &#039;&#039;&#039;42&#039;&#039;&#039;:348-354&lt;br /&gt;
 &lt;br /&gt;
* Kircher M, Witten DM,	Jain P,	O&#039;Roak BJ, Cooper GM, Shendure J (2014) A general framework for estimating the relative pathogenicity of human genetic variants. &#039;&#039;Nat. Genet.&#039;&#039; &#039;&#039;&#039;46&#039;&#039;&#039; 310–315&lt;br /&gt;
&lt;br /&gt;
* Kruglyak L, Daly MJ, Reeve-Daly MP, Lander ES (1996) Parametric and non-parametric linkage analysis: a unified multipoint approach. &#039;&#039;Am J Hum Genet&#039;&#039; &#039;&#039;&#039;58&#039;&#039;&#039;:1347-63&lt;br /&gt;
&lt;br /&gt;
* Li H, Ruan J, Durbin R (2008) Mapping short DNA sequencing reads and calling variants using mapping quality scores. &#039;&#039;Genome Res.&#039;&#039; &#039;&#039;&#039;18&#039;&#039;&#039;:1851-8. PMID: 18714091&lt;br /&gt;
&lt;br /&gt;
* Li H, Durbin R (2009) Fast and accurate short read alignment with Burrows-Wheeler transform. &#039;&#039;Bioinformatics.&#039;&#039; &#039;&#039;&#039;25&#039;&#039;&#039;:1754-60. PMID: 19451168&lt;br /&gt;
&lt;br /&gt;
* Li H, Durbin R (2011) Inference of human population history from individual whole-genome sequences. &#039;&#039;Nature.&#039;&#039; &#039;&#039;&#039;475&#039;&#039;&#039;:493-6. PMID: 21753753&lt;br /&gt;
&lt;br /&gt;
* Li Y, Willer CJ, Ding J, Scheet P, Abecasis GR (2010) MaCH: using sequence and genotype data to estimate haplotypes and unobserved genotypes. &#039;&#039;Genet Epidemiol.&#039;&#039; &#039;&#039;&#039;34&#039;&#039;&#039;:816-34. PMID: 21058334 [[Biostatistics 830 - Code Snippets|[Code Snippets]]]&lt;br /&gt;
&lt;br /&gt;
* Lin DY, Zeng D (2010) Meta-analysis of genome-wide association studies: no efficiency gain in using individual participant data. &#039;&#039;Genet Epidemiol.&#039;&#039; &#039;&#039;&#039;34&#039;&#039;&#039;:60-6. PMID: 19847795&lt;br /&gt;
&lt;br /&gt;
* Liu DJ, Peloso GM, Zhan X, Holmen OL, Zawistowski M, Feng S, Nikpay M, Auer PL, Goel A, Zhang H, Peters U, Farrall M, Orho-Melander M, Kooperberg C, McPherson R, Watkins H, Willer CJ, Hveem K, Melander O, Kathiresan S, Abecasis GR (2014) Meta-analysis of gene-level tests for rare variant association. &#039;&#039;Nat Genet.&#039;&#039; &#039;&#039;&#039;46&#039;&#039;&#039;:200-4&lt;br /&gt;
&lt;br /&gt;
* Sobel E, Lange K (1996) Descent Graphs in Pedigree Analysis: Applications to Haplotyping, Location Scores, and Marker-Sharing Statistics. &#039;&#039;Am. J. Hum. Genet.&#039;&#039; &#039;&#039;&#039;58&#039;&#039;&#039;:1323-1336&lt;br /&gt;
&lt;br /&gt;
* Wang C, Zhan X, Bragg-Gresham J, Kang HM, Stambolian D, Chew EY, Branham KE, Heckenlively J; FUSION Study, Fulton R, Wilson RK, Mardis ER, Lin X, Swaroop A, Zöllner S, Abecasis GR (2014) Ancestry estimation and control of population stratification for sequence-based association studies. &#039;&#039;Nat Genet. 2014&#039;&#039; &#039;&#039;&#039;46&#039;&#039;&#039;:409-15&lt;br /&gt;
&lt;br /&gt;
* Wen X, Stephens M (2010) Using linear predictors to impute allele frequencies from summary or pooled genotype data. &#039;&#039;Ann Appl Stat.&#039;&#039; &#039;&#039;&#039;4&#039;&#039;&#039;:1158-1182. PMID: 21479081&lt;br /&gt;
&lt;br /&gt;
* Wu MC, Lee S, Cai T, Li Y, Boehnke M, Lin X (2011) Rare-variant association testing for sequencing data with the sequence kernel association test. Am J Hum Genet. 89:82-93&lt;br /&gt;
&lt;br /&gt;
* Zerbino DR, Birney E (2008) Velvet: algorithms for de novo short read assembly using de Bruijn graphs. &#039;&#039;Genome Res.&#039;&#039; &#039;&#039;&#039;18&#039;&#039;&#039;:821-9. PMID: 18349386&lt;br /&gt;
&lt;br /&gt;
== Course History ==&lt;br /&gt;
&lt;br /&gt;
This course is offered occasionally. Typically, Mike Boehnke has taught it. Each instructor gives the course a different flavor, so you may find it worthwhile -- even if you have taken the course with Mike previously.&lt;/div&gt;</summary>
		<author><name>Gzajac</name></author>
	</entry>
	<entry>
		<id>http://genome.sph.umich.edu/w/index.php?title=Biostatistics_866:_Main_Page&amp;diff=14687</id>
		<title>Biostatistics 866: Main Page</title>
		<link rel="alternate" type="text/html" href="http://genome.sph.umich.edu/w/index.php?title=Biostatistics_866:_Main_Page&amp;diff=14687"/>
		<updated>2017-04-18T05:47:25Z</updated>

		<summary type="html">&lt;p&gt;Gzajac: /* Student Presentations */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Objective ==&lt;br /&gt;
&lt;br /&gt;
Gene mapping studies study the relationship between genetic variation and susceptibility to human disease. These studies are changing rapidly with the availability of techniques for very large scale genetic analysis, whether based on sequencing or on genotyping. Biostatistics 866 is a Ph.D. level course that helps students understand some of the key building blocks of modern genetic analysis tools. It is meant to provide students with a toolkit to facilitate development and implementation of new statistical methods.&lt;br /&gt;
&lt;br /&gt;
For additional information, see also [[Biostatistics 866: Core Competencies|Core Competencies in Biostatistics Program covered by this course]].&lt;br /&gt;
&lt;br /&gt;
== Target Audience ==&lt;br /&gt;
&lt;br /&gt;
It is highly recommended that students registering for Biostatistics 830 should have previously completed [[Biostatistics 666]] and [[Biostatistics 615/815]], which are courses introducing methods for genetic analysis and programming principles, respectively.&lt;br /&gt;
&lt;br /&gt;
== Scheduling ==&lt;br /&gt;
&lt;br /&gt;
For Winter 2017, classes are scheduled for Tuesdays and Thursdays, 8:30 - 10 am in SPH II, room 1152.&lt;br /&gt;
&lt;br /&gt;
== Grading ==&lt;br /&gt;
&lt;br /&gt;
The final grade will take into account your performance in problem sets and worksheets as well as your participation in class.&lt;br /&gt;
&lt;br /&gt;
== Class Worksheets ==&lt;br /&gt;
&lt;br /&gt;
=== Hidden Markov Models ===&lt;br /&gt;
&lt;br /&gt;
Week of January 8 - [[Media:Question_Sheet_-_Li_et_al_(2010)_Gen_Epid.pdf|Li et al (2010)]]&lt;br /&gt;
&lt;br /&gt;
Week of January 15 - [[Media:Question_Sheet_-_Howie_et_al_(2012)_Nat_Genet.pdf|Howie et al (2012)]]  (and, [[Media:866_-_Slides_for_Hyun.pdf|Discussion slides for January 19]])&lt;br /&gt;
&lt;br /&gt;
Week of January 22 - [[Media:Question_Sheet_-_Delaneau_et_al_(2013)_Nature_Methods.pdf|Delaneau et al (2013)]]&lt;br /&gt;
&lt;br /&gt;
Week of January 29 - [[Media:Question_Sheet_-_Boehnke_and_Cox_(1997)_AJHG.pdf|Boehnke and Cox (1997)]]&lt;br /&gt;
&lt;br /&gt;
=== Short Read Sequencing ===&lt;br /&gt;
&lt;br /&gt;
February 12 - [[Media:Question_Sheet_-_Li_et_al_(2008)_Genome_Research.pdf|Li et al (2008)]]&lt;br /&gt;
&lt;br /&gt;
February 19 - [[Media:Question_Sheet_-_Li_and_Durbin_(2009)_Bioinformatics.pdf|Li and Durbin (2009)]]&lt;br /&gt;
&lt;br /&gt;
March 5 - [[Media:Question_Sheet_-_Zerbino_and_Birney_(2008)_Bioinformatics.pdf|Zerbino and Birney (2008)]]&lt;br /&gt;
&lt;br /&gt;
March 12 - [[Media:Question_Sheet_-_Iqbal_et_al_(2012)_Nature_Genetics.pdf|Iqbal et al (2012)]]&lt;br /&gt;
&lt;br /&gt;
=== Association Analysis ===&lt;br /&gt;
&lt;br /&gt;
March 19 - [[Media:Question_Sheet_-_2017_-_Kang_et_al_(2010)_Nature_Genetics_.pdf|Kang et al (2010)]]&lt;br /&gt;
&lt;br /&gt;
March 26 - [[Media:Question_Sheet_-_2017_-_Wu_et_al_(2011)_American_Journal_of_Human_Genetics.pdf|Wu et al (2011)]]&lt;br /&gt;
&lt;br /&gt;
April 2 - [[Media:Question_Sheet_-_2017_-_Liu_et_al_(2013)_Nature_Genetics.pdf|Liu et al (2014)]]&lt;br /&gt;
&lt;br /&gt;
=== Adventures in Statistical Genetics ===&lt;br /&gt;
&lt;br /&gt;
April 9 - [[Media:2017.04_-_Adventures_in_Human_Genetics.pdf|Goncalo&#039;s Adventure in Human Genetics]]&lt;br /&gt;
&lt;br /&gt;
== Student Presentations ==&lt;br /&gt;
[[File:Zajac_Journey_Lecture.pdf] Greg]&lt;br /&gt;
&lt;br /&gt;
== Standards of Academic Conduct ==&lt;br /&gt;
&lt;br /&gt;
The following is an extract from the School of Public Health&#039;s Student Code of Conduct [http://www.sph.umich.edu/academics/policies/conduct.html]:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Student academic misconduct includes behavior involving plagiarism, cheating, fabrication, falsification of records or official documents, intentional misuse of equipment or materials, and aiding and abetting the perpetration of such acts. The preparation of reports, papers, and examinations, assigned on an individual basis, must represent each student’s own effort. Reference sources should be indicated clearly. The use of assistance from other students or aids of any kind during a written examination, except when the use of books or notes has been approved by an instructor, is a violation of the standard of academic conduct.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
In the context of this course, any work you hand-in should be your own and any material that is a transcript (or interpreted transcript) of work by others must be clearly labeled as such. If you turn in work that is directly copied from another student or from a published or unpublished source without attribution, you risk failing the course.&lt;br /&gt;
&lt;br /&gt;
== Planned Reading ==&lt;br /&gt;
&lt;br /&gt;
* Abecasis GR, Cherny SS, Cookson WO, Cardon LR (2002) Merlin--rapid analysis of dense genetic maps using sparse gene flow trees. &#039;&#039;Nat Genetics&#039;&#039; &#039;&#039;&#039;30&#039;&#039;&#039;:97-101&lt;br /&gt;
&lt;br /&gt;
* Boehnke M and Cox N (1997) Accurate Inference of Relationships in Sib-Pair Linkage Studies. &#039;&#039;Am J Hum Genet&#039;&#039; &#039;&#039;&#039;61&#039;&#039;&#039;:423-429&lt;br /&gt;
&lt;br /&gt;
* Coventry A, Bull-Otterson LM, Liu X, Clark AG, Maxwell TJ, Crosby J, Hixson JE, Rea TJ, Muzny DM, Lewis LR, Wheeler DA, Sabo A, Lusk C, Weiss KG, Akbar H, Cree A, Hawes AC, Newsham I, Varghese RT, Villasana D, Gross S, Joshi V, Santibanez J, Morgan M, Chang K, Iv WH, Templeton AR, Boerwinkle E, Gibbs R, Sing CF (2010) Deep resequencing reveals excess rare recent variants consistent with explosive population growth. &#039;&#039;Nat Commun.&#039;&#039; &#039;&#039;&#039;1&#039;&#039;&#039;:131. PMID: 21119644&lt;br /&gt;
&lt;br /&gt;
* Delaneau O, Zagury JF, Marchini J (2013) Improved whole-chromosome phasing for disease and population genetic studies. &#039;&#039;Nat Methods.&#039;&#039; &#039;&#039;&#039;10&#039;&#039;&#039;:5-6. PMID: 23269371&lt;br /&gt;
&lt;br /&gt;
* Howie B, Fuchsberger C, Stephens M, Marchini J, Abecasis GR (2012) Fast and accurate genotype imputation in genome-wide association studies through pre-phasing. &#039;&#039;Nat Genet.&#039;&#039; &#039;&#039;&#039;44&#039;&#039;&#039;:955-9. PMID: 22820512 [[Biostatistics 830 - Code Snippets|[Code Snippets]]]&lt;br /&gt;
&lt;br /&gt;
* Iqbal Z, Caccamo M, Turner I, Flicek P, McVean G (2012) De novo assembly and genotyping of variants using colored de Bruijn graphs. &#039;&#039;Nat Genet.&#039;&#039; &#039;&#039;&#039;44&#039;&#039;&#039;:226-32. PMID: 22231483&lt;br /&gt;
&lt;br /&gt;
* Field Y, Boyle EA, Telis N, Gao Z, Gaulton KJ, Golan D, Yengo L, Rocheleau G, Froguel P, McCarthy MI, Pritchard JK (2016) Detection of human adaptation during the past 2000 years. &#039;&#039;Science&#039;&#039; &#039;&#039;&#039;354&#039;&#039;&#039;:760-764&lt;br /&gt;
&lt;br /&gt;
* Jun G, Flickinger M, Hetrick KN, Romm JM, Doheny KF, Abecasis GR, Boehnke M, Kang HM (2012) Detecting and estimating contamination of human DNA samples in sequencing and array-based genotype data. &#039;&#039;Am J Hum Genet.&#039;&#039; &#039;&#039;&#039;91&#039;&#039;&#039;:839-48. PMID: 23103226&lt;br /&gt;
&lt;br /&gt;
* Kang HM, Sul JH, Service SK, Zaitlen NA, Kong SY, Freimer NB, Sabatti C, Eskin E (2010) Variance component model to account for sample structure in genome-wide association studies. &#039;&#039;Nat. Genet.&#039;&#039; &#039;&#039;&#039;42&#039;&#039;&#039;:348-354&lt;br /&gt;
 &lt;br /&gt;
* Kircher M, Witten DM,	Jain P,	O&#039;Roak BJ, Cooper GM, Shendure J (2014) A general framework for estimating the relative pathogenicity of human genetic variants. &#039;&#039;Nat. Genet.&#039;&#039; &#039;&#039;&#039;46&#039;&#039;&#039; 310–315&lt;br /&gt;
&lt;br /&gt;
* Kruglyak L, Daly MJ, Reeve-Daly MP, Lander ES (1996) Parametric and non-parametric linkage analysis: a unified multipoint approach. &#039;&#039;Am J Hum Genet&#039;&#039; &#039;&#039;&#039;58&#039;&#039;&#039;:1347-63&lt;br /&gt;
&lt;br /&gt;
* Li H, Ruan J, Durbin R (2008) Mapping short DNA sequencing reads and calling variants using mapping quality scores. &#039;&#039;Genome Res.&#039;&#039; &#039;&#039;&#039;18&#039;&#039;&#039;:1851-8. PMID: 18714091&lt;br /&gt;
&lt;br /&gt;
* Li H, Durbin R (2009) Fast and accurate short read alignment with Burrows-Wheeler transform. &#039;&#039;Bioinformatics.&#039;&#039; &#039;&#039;&#039;25&#039;&#039;&#039;:1754-60. PMID: 19451168&lt;br /&gt;
&lt;br /&gt;
* Li H, Durbin R (2011) Inference of human population history from individual whole-genome sequences. &#039;&#039;Nature.&#039;&#039; &#039;&#039;&#039;475&#039;&#039;&#039;:493-6. PMID: 21753753&lt;br /&gt;
&lt;br /&gt;
* Li Y, Willer CJ, Ding J, Scheet P, Abecasis GR (2010) MaCH: using sequence and genotype data to estimate haplotypes and unobserved genotypes. &#039;&#039;Genet Epidemiol.&#039;&#039; &#039;&#039;&#039;34&#039;&#039;&#039;:816-34. PMID: 21058334 [[Biostatistics 830 - Code Snippets|[Code Snippets]]]&lt;br /&gt;
&lt;br /&gt;
* Lin DY, Zeng D (2010) Meta-analysis of genome-wide association studies: no efficiency gain in using individual participant data. &#039;&#039;Genet Epidemiol.&#039;&#039; &#039;&#039;&#039;34&#039;&#039;&#039;:60-6. PMID: 19847795&lt;br /&gt;
&lt;br /&gt;
* Liu DJ, Peloso GM, Zhan X, Holmen OL, Zawistowski M, Feng S, Nikpay M, Auer PL, Goel A, Zhang H, Peters U, Farrall M, Orho-Melander M, Kooperberg C, McPherson R, Watkins H, Willer CJ, Hveem K, Melander O, Kathiresan S, Abecasis GR (2014) Meta-analysis of gene-level tests for rare variant association. &#039;&#039;Nat Genet.&#039;&#039; &#039;&#039;&#039;46&#039;&#039;&#039;:200-4&lt;br /&gt;
&lt;br /&gt;
* Sobel E, Lange K (1996) Descent Graphs in Pedigree Analysis: Applications to Haplotyping, Location Scores, and Marker-Sharing Statistics. &#039;&#039;Am. J. Hum. Genet.&#039;&#039; &#039;&#039;&#039;58&#039;&#039;&#039;:1323-1336&lt;br /&gt;
&lt;br /&gt;
* Wang C, Zhan X, Bragg-Gresham J, Kang HM, Stambolian D, Chew EY, Branham KE, Heckenlively J; FUSION Study, Fulton R, Wilson RK, Mardis ER, Lin X, Swaroop A, Zöllner S, Abecasis GR (2014) Ancestry estimation and control of population stratification for sequence-based association studies. &#039;&#039;Nat Genet. 2014&#039;&#039; &#039;&#039;&#039;46&#039;&#039;&#039;:409-15&lt;br /&gt;
&lt;br /&gt;
* Wen X, Stephens M (2010) Using linear predictors to impute allele frequencies from summary or pooled genotype data. &#039;&#039;Ann Appl Stat.&#039;&#039; &#039;&#039;&#039;4&#039;&#039;&#039;:1158-1182. PMID: 21479081&lt;br /&gt;
&lt;br /&gt;
* Wu MC, Lee S, Cai T, Li Y, Boehnke M, Lin X (2011) Rare-variant association testing for sequencing data with the sequence kernel association test. Am J Hum Genet. 89:82-93&lt;br /&gt;
&lt;br /&gt;
* Zerbino DR, Birney E (2008) Velvet: algorithms for de novo short read assembly using de Bruijn graphs. &#039;&#039;Genome Res.&#039;&#039; &#039;&#039;&#039;18&#039;&#039;&#039;:821-9. PMID: 18349386&lt;br /&gt;
&lt;br /&gt;
== Course History ==&lt;br /&gt;
&lt;br /&gt;
This course is offered occasionally. Typically, Mike Boehnke has taught it. Each instructor gives the course a different flavor, so you may find it worthwhile -- even if you have taken the course with Mike previously.&lt;/div&gt;</summary>
		<author><name>Gzajac</name></author>
	</entry>
	<entry>
		<id>http://genome.sph.umich.edu/w/index.php?title=Biostatistics_866:_Main_Page&amp;diff=14686</id>
		<title>Biostatistics 866: Main Page</title>
		<link rel="alternate" type="text/html" href="http://genome.sph.umich.edu/w/index.php?title=Biostatistics_866:_Main_Page&amp;diff=14686"/>
		<updated>2017-04-18T05:47:08Z</updated>

		<summary type="html">&lt;p&gt;Gzajac: /* Student Presentations */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Objective ==&lt;br /&gt;
&lt;br /&gt;
Gene mapping studies study the relationship between genetic variation and susceptibility to human disease. These studies are changing rapidly with the availability of techniques for very large scale genetic analysis, whether based on sequencing or on genotyping. Biostatistics 866 is a Ph.D. level course that helps students understand some of the key building blocks of modern genetic analysis tools. It is meant to provide students with a toolkit to facilitate development and implementation of new statistical methods.&lt;br /&gt;
&lt;br /&gt;
For additional information, see also [[Biostatistics 866: Core Competencies|Core Competencies in Biostatistics Program covered by this course]].&lt;br /&gt;
&lt;br /&gt;
== Target Audience ==&lt;br /&gt;
&lt;br /&gt;
It is highly recommended that students registering for Biostatistics 830 should have previously completed [[Biostatistics 666]] and [[Biostatistics 615/815]], which are courses introducing methods for genetic analysis and programming principles, respectively.&lt;br /&gt;
&lt;br /&gt;
== Scheduling ==&lt;br /&gt;
&lt;br /&gt;
For Winter 2017, classes are scheduled for Tuesdays and Thursdays, 8:30 - 10 am in SPH II, room 1152.&lt;br /&gt;
&lt;br /&gt;
== Grading ==&lt;br /&gt;
&lt;br /&gt;
The final grade will take into account your performance in problem sets and worksheets as well as your participation in class.&lt;br /&gt;
&lt;br /&gt;
== Class Worksheets ==&lt;br /&gt;
&lt;br /&gt;
=== Hidden Markov Models ===&lt;br /&gt;
&lt;br /&gt;
Week of January 8 - [[Media:Question_Sheet_-_Li_et_al_(2010)_Gen_Epid.pdf|Li et al (2010)]]&lt;br /&gt;
&lt;br /&gt;
Week of January 15 - [[Media:Question_Sheet_-_Howie_et_al_(2012)_Nat_Genet.pdf|Howie et al (2012)]]  (and, [[Media:866_-_Slides_for_Hyun.pdf|Discussion slides for January 19]])&lt;br /&gt;
&lt;br /&gt;
Week of January 22 - [[Media:Question_Sheet_-_Delaneau_et_al_(2013)_Nature_Methods.pdf|Delaneau et al (2013)]]&lt;br /&gt;
&lt;br /&gt;
Week of January 29 - [[Media:Question_Sheet_-_Boehnke_and_Cox_(1997)_AJHG.pdf|Boehnke and Cox (1997)]]&lt;br /&gt;
&lt;br /&gt;
=== Short Read Sequencing ===&lt;br /&gt;
&lt;br /&gt;
February 12 - [[Media:Question_Sheet_-_Li_et_al_(2008)_Genome_Research.pdf|Li et al (2008)]]&lt;br /&gt;
&lt;br /&gt;
February 19 - [[Media:Question_Sheet_-_Li_and_Durbin_(2009)_Bioinformatics.pdf|Li and Durbin (2009)]]&lt;br /&gt;
&lt;br /&gt;
March 5 - [[Media:Question_Sheet_-_Zerbino_and_Birney_(2008)_Bioinformatics.pdf|Zerbino and Birney (2008)]]&lt;br /&gt;
&lt;br /&gt;
March 12 - [[Media:Question_Sheet_-_Iqbal_et_al_(2012)_Nature_Genetics.pdf|Iqbal et al (2012)]]&lt;br /&gt;
&lt;br /&gt;
=== Association Analysis ===&lt;br /&gt;
&lt;br /&gt;
March 19 - [[Media:Question_Sheet_-_2017_-_Kang_et_al_(2010)_Nature_Genetics_.pdf|Kang et al (2010)]]&lt;br /&gt;
&lt;br /&gt;
March 26 - [[Media:Question_Sheet_-_2017_-_Wu_et_al_(2011)_American_Journal_of_Human_Genetics.pdf|Wu et al (2011)]]&lt;br /&gt;
&lt;br /&gt;
April 2 - [[Media:Question_Sheet_-_2017_-_Liu_et_al_(2013)_Nature_Genetics.pdf|Liu et al (2014)]]&lt;br /&gt;
&lt;br /&gt;
=== Adventures in Statistical Genetics ===&lt;br /&gt;
&lt;br /&gt;
April 9 - [[Media:2017.04_-_Adventures_in_Human_Genetics.pdf|Goncalo&#039;s Adventure in Human Genetics]]&lt;br /&gt;
&lt;br /&gt;
== Student Presentations ==&lt;br /&gt;
[[Greg File:Zajac_Journey_Lecture.pdf]]&lt;br /&gt;
&lt;br /&gt;
== Standards of Academic Conduct ==&lt;br /&gt;
&lt;br /&gt;
The following is an extract from the School of Public Health&#039;s Student Code of Conduct [http://www.sph.umich.edu/academics/policies/conduct.html]:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Student academic misconduct includes behavior involving plagiarism, cheating, fabrication, falsification of records or official documents, intentional misuse of equipment or materials, and aiding and abetting the perpetration of such acts. The preparation of reports, papers, and examinations, assigned on an individual basis, must represent each student’s own effort. Reference sources should be indicated clearly. The use of assistance from other students or aids of any kind during a written examination, except when the use of books or notes has been approved by an instructor, is a violation of the standard of academic conduct.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
In the context of this course, any work you hand-in should be your own and any material that is a transcript (or interpreted transcript) of work by others must be clearly labeled as such. If you turn in work that is directly copied from another student or from a published or unpublished source without attribution, you risk failing the course.&lt;br /&gt;
&lt;br /&gt;
== Planned Reading ==&lt;br /&gt;
&lt;br /&gt;
* Abecasis GR, Cherny SS, Cookson WO, Cardon LR (2002) Merlin--rapid analysis of dense genetic maps using sparse gene flow trees. &#039;&#039;Nat Genetics&#039;&#039; &#039;&#039;&#039;30&#039;&#039;&#039;:97-101&lt;br /&gt;
&lt;br /&gt;
* Boehnke M and Cox N (1997) Accurate Inference of Relationships in Sib-Pair Linkage Studies. &#039;&#039;Am J Hum Genet&#039;&#039; &#039;&#039;&#039;61&#039;&#039;&#039;:423-429&lt;br /&gt;
&lt;br /&gt;
* Coventry A, Bull-Otterson LM, Liu X, Clark AG, Maxwell TJ, Crosby J, Hixson JE, Rea TJ, Muzny DM, Lewis LR, Wheeler DA, Sabo A, Lusk C, Weiss KG, Akbar H, Cree A, Hawes AC, Newsham I, Varghese RT, Villasana D, Gross S, Joshi V, Santibanez J, Morgan M, Chang K, Iv WH, Templeton AR, Boerwinkle E, Gibbs R, Sing CF (2010) Deep resequencing reveals excess rare recent variants consistent with explosive population growth. &#039;&#039;Nat Commun.&#039;&#039; &#039;&#039;&#039;1&#039;&#039;&#039;:131. PMID: 21119644&lt;br /&gt;
&lt;br /&gt;
* Delaneau O, Zagury JF, Marchini J (2013) Improved whole-chromosome phasing for disease and population genetic studies. &#039;&#039;Nat Methods.&#039;&#039; &#039;&#039;&#039;10&#039;&#039;&#039;:5-6. PMID: 23269371&lt;br /&gt;
&lt;br /&gt;
* Howie B, Fuchsberger C, Stephens M, Marchini J, Abecasis GR (2012) Fast and accurate genotype imputation in genome-wide association studies through pre-phasing. &#039;&#039;Nat Genet.&#039;&#039; &#039;&#039;&#039;44&#039;&#039;&#039;:955-9. PMID: 22820512 [[Biostatistics 830 - Code Snippets|[Code Snippets]]]&lt;br /&gt;
&lt;br /&gt;
* Iqbal Z, Caccamo M, Turner I, Flicek P, McVean G (2012) De novo assembly and genotyping of variants using colored de Bruijn graphs. &#039;&#039;Nat Genet.&#039;&#039; &#039;&#039;&#039;44&#039;&#039;&#039;:226-32. PMID: 22231483&lt;br /&gt;
&lt;br /&gt;
* Field Y, Boyle EA, Telis N, Gao Z, Gaulton KJ, Golan D, Yengo L, Rocheleau G, Froguel P, McCarthy MI, Pritchard JK (2016) Detection of human adaptation during the past 2000 years. &#039;&#039;Science&#039;&#039; &#039;&#039;&#039;354&#039;&#039;&#039;:760-764&lt;br /&gt;
&lt;br /&gt;
* Jun G, Flickinger M, Hetrick KN, Romm JM, Doheny KF, Abecasis GR, Boehnke M, Kang HM (2012) Detecting and estimating contamination of human DNA samples in sequencing and array-based genotype data. &#039;&#039;Am J Hum Genet.&#039;&#039; &#039;&#039;&#039;91&#039;&#039;&#039;:839-48. PMID: 23103226&lt;br /&gt;
&lt;br /&gt;
* Kang HM, Sul JH, Service SK, Zaitlen NA, Kong SY, Freimer NB, Sabatti C, Eskin E (2010) Variance component model to account for sample structure in genome-wide association studies. &#039;&#039;Nat. Genet.&#039;&#039; &#039;&#039;&#039;42&#039;&#039;&#039;:348-354&lt;br /&gt;
 &lt;br /&gt;
* Kircher M, Witten DM,	Jain P,	O&#039;Roak BJ, Cooper GM, Shendure J (2014) A general framework for estimating the relative pathogenicity of human genetic variants. &#039;&#039;Nat. Genet.&#039;&#039; &#039;&#039;&#039;46&#039;&#039;&#039; 310–315&lt;br /&gt;
&lt;br /&gt;
* Kruglyak L, Daly MJ, Reeve-Daly MP, Lander ES (1996) Parametric and non-parametric linkage analysis: a unified multipoint approach. &#039;&#039;Am J Hum Genet&#039;&#039; &#039;&#039;&#039;58&#039;&#039;&#039;:1347-63&lt;br /&gt;
&lt;br /&gt;
* Li H, Ruan J, Durbin R (2008) Mapping short DNA sequencing reads and calling variants using mapping quality scores. &#039;&#039;Genome Res.&#039;&#039; &#039;&#039;&#039;18&#039;&#039;&#039;:1851-8. PMID: 18714091&lt;br /&gt;
&lt;br /&gt;
* Li H, Durbin R (2009) Fast and accurate short read alignment with Burrows-Wheeler transform. &#039;&#039;Bioinformatics.&#039;&#039; &#039;&#039;&#039;25&#039;&#039;&#039;:1754-60. PMID: 19451168&lt;br /&gt;
&lt;br /&gt;
* Li H, Durbin R (2011) Inference of human population history from individual whole-genome sequences. &#039;&#039;Nature.&#039;&#039; &#039;&#039;&#039;475&#039;&#039;&#039;:493-6. PMID: 21753753&lt;br /&gt;
&lt;br /&gt;
* Li Y, Willer CJ, Ding J, Scheet P, Abecasis GR (2010) MaCH: using sequence and genotype data to estimate haplotypes and unobserved genotypes. &#039;&#039;Genet Epidemiol.&#039;&#039; &#039;&#039;&#039;34&#039;&#039;&#039;:816-34. PMID: 21058334 [[Biostatistics 830 - Code Snippets|[Code Snippets]]]&lt;br /&gt;
&lt;br /&gt;
* Lin DY, Zeng D (2010) Meta-analysis of genome-wide association studies: no efficiency gain in using individual participant data. &#039;&#039;Genet Epidemiol.&#039;&#039; &#039;&#039;&#039;34&#039;&#039;&#039;:60-6. PMID: 19847795&lt;br /&gt;
&lt;br /&gt;
* Liu DJ, Peloso GM, Zhan X, Holmen OL, Zawistowski M, Feng S, Nikpay M, Auer PL, Goel A, Zhang H, Peters U, Farrall M, Orho-Melander M, Kooperberg C, McPherson R, Watkins H, Willer CJ, Hveem K, Melander O, Kathiresan S, Abecasis GR (2014) Meta-analysis of gene-level tests for rare variant association. &#039;&#039;Nat Genet.&#039;&#039; &#039;&#039;&#039;46&#039;&#039;&#039;:200-4&lt;br /&gt;
&lt;br /&gt;
* Sobel E, Lange K (1996) Descent Graphs in Pedigree Analysis: Applications to Haplotyping, Location Scores, and Marker-Sharing Statistics. &#039;&#039;Am. J. Hum. Genet.&#039;&#039; &#039;&#039;&#039;58&#039;&#039;&#039;:1323-1336&lt;br /&gt;
&lt;br /&gt;
* Wang C, Zhan X, Bragg-Gresham J, Kang HM, Stambolian D, Chew EY, Branham KE, Heckenlively J; FUSION Study, Fulton R, Wilson RK, Mardis ER, Lin X, Swaroop A, Zöllner S, Abecasis GR (2014) Ancestry estimation and control of population stratification for sequence-based association studies. &#039;&#039;Nat Genet. 2014&#039;&#039; &#039;&#039;&#039;46&#039;&#039;&#039;:409-15&lt;br /&gt;
&lt;br /&gt;
* Wen X, Stephens M (2010) Using linear predictors to impute allele frequencies from summary or pooled genotype data. &#039;&#039;Ann Appl Stat.&#039;&#039; &#039;&#039;&#039;4&#039;&#039;&#039;:1158-1182. PMID: 21479081&lt;br /&gt;
&lt;br /&gt;
* Wu MC, Lee S, Cai T, Li Y, Boehnke M, Lin X (2011) Rare-variant association testing for sequencing data with the sequence kernel association test. Am J Hum Genet. 89:82-93&lt;br /&gt;
&lt;br /&gt;
* Zerbino DR, Birney E (2008) Velvet: algorithms for de novo short read assembly using de Bruijn graphs. &#039;&#039;Genome Res.&#039;&#039; &#039;&#039;&#039;18&#039;&#039;&#039;:821-9. PMID: 18349386&lt;br /&gt;
&lt;br /&gt;
== Course History ==&lt;br /&gt;
&lt;br /&gt;
This course is offered occasionally. Typically, Mike Boehnke has taught it. Each instructor gives the course a different flavor, so you may find it worthwhile -- even if you have taken the course with Mike previously.&lt;/div&gt;</summary>
		<author><name>Gzajac</name></author>
	</entry>
	<entry>
		<id>http://genome.sph.umich.edu/w/index.php?title=Biostatistics_866:_Main_Page&amp;diff=14685</id>
		<title>Biostatistics 866: Main Page</title>
		<link rel="alternate" type="text/html" href="http://genome.sph.umich.edu/w/index.php?title=Biostatistics_866:_Main_Page&amp;diff=14685"/>
		<updated>2017-04-18T05:46:11Z</updated>

		<summary type="html">&lt;p&gt;Gzajac: /* Student Presentations */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Objective ==&lt;br /&gt;
&lt;br /&gt;
Gene mapping studies study the relationship between genetic variation and susceptibility to human disease. These studies are changing rapidly with the availability of techniques for very large scale genetic analysis, whether based on sequencing or on genotyping. Biostatistics 866 is a Ph.D. level course that helps students understand some of the key building blocks of modern genetic analysis tools. It is meant to provide students with a toolkit to facilitate development and implementation of new statistical methods.&lt;br /&gt;
&lt;br /&gt;
For additional information, see also [[Biostatistics 866: Core Competencies|Core Competencies in Biostatistics Program covered by this course]].&lt;br /&gt;
&lt;br /&gt;
== Target Audience ==&lt;br /&gt;
&lt;br /&gt;
It is highly recommended that students registering for Biostatistics 830 should have previously completed [[Biostatistics 666]] and [[Biostatistics 615/815]], which are courses introducing methods for genetic analysis and programming principles, respectively.&lt;br /&gt;
&lt;br /&gt;
== Scheduling ==&lt;br /&gt;
&lt;br /&gt;
For Winter 2017, classes are scheduled for Tuesdays and Thursdays, 8:30 - 10 am in SPH II, room 1152.&lt;br /&gt;
&lt;br /&gt;
== Grading ==&lt;br /&gt;
&lt;br /&gt;
The final grade will take into account your performance in problem sets and worksheets as well as your participation in class.&lt;br /&gt;
&lt;br /&gt;
== Class Worksheets ==&lt;br /&gt;
&lt;br /&gt;
=== Hidden Markov Models ===&lt;br /&gt;
&lt;br /&gt;
Week of January 8 - [[Media:Question_Sheet_-_Li_et_al_(2010)_Gen_Epid.pdf|Li et al (2010)]]&lt;br /&gt;
&lt;br /&gt;
Week of January 15 - [[Media:Question_Sheet_-_Howie_et_al_(2012)_Nat_Genet.pdf|Howie et al (2012)]]  (and, [[Media:866_-_Slides_for_Hyun.pdf|Discussion slides for January 19]])&lt;br /&gt;
&lt;br /&gt;
Week of January 22 - [[Media:Question_Sheet_-_Delaneau_et_al_(2013)_Nature_Methods.pdf|Delaneau et al (2013)]]&lt;br /&gt;
&lt;br /&gt;
Week of January 29 - [[Media:Question_Sheet_-_Boehnke_and_Cox_(1997)_AJHG.pdf|Boehnke and Cox (1997)]]&lt;br /&gt;
&lt;br /&gt;
=== Short Read Sequencing ===&lt;br /&gt;
&lt;br /&gt;
February 12 - [[Media:Question_Sheet_-_Li_et_al_(2008)_Genome_Research.pdf|Li et al (2008)]]&lt;br /&gt;
&lt;br /&gt;
February 19 - [[Media:Question_Sheet_-_Li_and_Durbin_(2009)_Bioinformatics.pdf|Li and Durbin (2009)]]&lt;br /&gt;
&lt;br /&gt;
March 5 - [[Media:Question_Sheet_-_Zerbino_and_Birney_(2008)_Bioinformatics.pdf|Zerbino and Birney (2008)]]&lt;br /&gt;
&lt;br /&gt;
March 12 - [[Media:Question_Sheet_-_Iqbal_et_al_(2012)_Nature_Genetics.pdf|Iqbal et al (2012)]]&lt;br /&gt;
&lt;br /&gt;
=== Association Analysis ===&lt;br /&gt;
&lt;br /&gt;
March 19 - [[Media:Question_Sheet_-_2017_-_Kang_et_al_(2010)_Nature_Genetics_.pdf|Kang et al (2010)]]&lt;br /&gt;
&lt;br /&gt;
March 26 - [[Media:Question_Sheet_-_2017_-_Wu_et_al_(2011)_American_Journal_of_Human_Genetics.pdf|Wu et al (2011)]]&lt;br /&gt;
&lt;br /&gt;
April 2 - [[Media:Question_Sheet_-_2017_-_Liu_et_al_(2013)_Nature_Genetics.pdf|Liu et al (2014)]]&lt;br /&gt;
&lt;br /&gt;
=== Adventures in Statistical Genetics ===&lt;br /&gt;
&lt;br /&gt;
April 9 - [[Media:2017.04_-_Adventures_in_Human_Genetics.pdf|Goncalo&#039;s Adventure in Human Genetics]]&lt;br /&gt;
&lt;br /&gt;
== Student Presentations ==&lt;br /&gt;
[Greg [File:Zajac_Journey_Lecture.pdf]]&lt;br /&gt;
&lt;br /&gt;
== Standards of Academic Conduct ==&lt;br /&gt;
&lt;br /&gt;
The following is an extract from the School of Public Health&#039;s Student Code of Conduct [http://www.sph.umich.edu/academics/policies/conduct.html]:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Student academic misconduct includes behavior involving plagiarism, cheating, fabrication, falsification of records or official documents, intentional misuse of equipment or materials, and aiding and abetting the perpetration of such acts. The preparation of reports, papers, and examinations, assigned on an individual basis, must represent each student’s own effort. Reference sources should be indicated clearly. The use of assistance from other students or aids of any kind during a written examination, except when the use of books or notes has been approved by an instructor, is a violation of the standard of academic conduct.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
In the context of this course, any work you hand-in should be your own and any material that is a transcript (or interpreted transcript) of work by others must be clearly labeled as such. If you turn in work that is directly copied from another student or from a published or unpublished source without attribution, you risk failing the course.&lt;br /&gt;
&lt;br /&gt;
== Planned Reading ==&lt;br /&gt;
&lt;br /&gt;
* Abecasis GR, Cherny SS, Cookson WO, Cardon LR (2002) Merlin--rapid analysis of dense genetic maps using sparse gene flow trees. &#039;&#039;Nat Genetics&#039;&#039; &#039;&#039;&#039;30&#039;&#039;&#039;:97-101&lt;br /&gt;
&lt;br /&gt;
* Boehnke M and Cox N (1997) Accurate Inference of Relationships in Sib-Pair Linkage Studies. &#039;&#039;Am J Hum Genet&#039;&#039; &#039;&#039;&#039;61&#039;&#039;&#039;:423-429&lt;br /&gt;
&lt;br /&gt;
* Coventry A, Bull-Otterson LM, Liu X, Clark AG, Maxwell TJ, Crosby J, Hixson JE, Rea TJ, Muzny DM, Lewis LR, Wheeler DA, Sabo A, Lusk C, Weiss KG, Akbar H, Cree A, Hawes AC, Newsham I, Varghese RT, Villasana D, Gross S, Joshi V, Santibanez J, Morgan M, Chang K, Iv WH, Templeton AR, Boerwinkle E, Gibbs R, Sing CF (2010) Deep resequencing reveals excess rare recent variants consistent with explosive population growth. &#039;&#039;Nat Commun.&#039;&#039; &#039;&#039;&#039;1&#039;&#039;&#039;:131. PMID: 21119644&lt;br /&gt;
&lt;br /&gt;
* Delaneau O, Zagury JF, Marchini J (2013) Improved whole-chromosome phasing for disease and population genetic studies. &#039;&#039;Nat Methods.&#039;&#039; &#039;&#039;&#039;10&#039;&#039;&#039;:5-6. PMID: 23269371&lt;br /&gt;
&lt;br /&gt;
* Howie B, Fuchsberger C, Stephens M, Marchini J, Abecasis GR (2012) Fast and accurate genotype imputation in genome-wide association studies through pre-phasing. &#039;&#039;Nat Genet.&#039;&#039; &#039;&#039;&#039;44&#039;&#039;&#039;:955-9. PMID: 22820512 [[Biostatistics 830 - Code Snippets|[Code Snippets]]]&lt;br /&gt;
&lt;br /&gt;
* Iqbal Z, Caccamo M, Turner I, Flicek P, McVean G (2012) De novo assembly and genotyping of variants using colored de Bruijn graphs. &#039;&#039;Nat Genet.&#039;&#039; &#039;&#039;&#039;44&#039;&#039;&#039;:226-32. PMID: 22231483&lt;br /&gt;
&lt;br /&gt;
* Field Y, Boyle EA, Telis N, Gao Z, Gaulton KJ, Golan D, Yengo L, Rocheleau G, Froguel P, McCarthy MI, Pritchard JK (2016) Detection of human adaptation during the past 2000 years. &#039;&#039;Science&#039;&#039; &#039;&#039;&#039;354&#039;&#039;&#039;:760-764&lt;br /&gt;
&lt;br /&gt;
* Jun G, Flickinger M, Hetrick KN, Romm JM, Doheny KF, Abecasis GR, Boehnke M, Kang HM (2012) Detecting and estimating contamination of human DNA samples in sequencing and array-based genotype data. &#039;&#039;Am J Hum Genet.&#039;&#039; &#039;&#039;&#039;91&#039;&#039;&#039;:839-48. PMID: 23103226&lt;br /&gt;
&lt;br /&gt;
* Kang HM, Sul JH, Service SK, Zaitlen NA, Kong SY, Freimer NB, Sabatti C, Eskin E (2010) Variance component model to account for sample structure in genome-wide association studies. &#039;&#039;Nat. Genet.&#039;&#039; &#039;&#039;&#039;42&#039;&#039;&#039;:348-354&lt;br /&gt;
 &lt;br /&gt;
* Kircher M, Witten DM,	Jain P,	O&#039;Roak BJ, Cooper GM, Shendure J (2014) A general framework for estimating the relative pathogenicity of human genetic variants. &#039;&#039;Nat. Genet.&#039;&#039; &#039;&#039;&#039;46&#039;&#039;&#039; 310–315&lt;br /&gt;
&lt;br /&gt;
* Kruglyak L, Daly MJ, Reeve-Daly MP, Lander ES (1996) Parametric and non-parametric linkage analysis: a unified multipoint approach. &#039;&#039;Am J Hum Genet&#039;&#039; &#039;&#039;&#039;58&#039;&#039;&#039;:1347-63&lt;br /&gt;
&lt;br /&gt;
* Li H, Ruan J, Durbin R (2008) Mapping short DNA sequencing reads and calling variants using mapping quality scores. &#039;&#039;Genome Res.&#039;&#039; &#039;&#039;&#039;18&#039;&#039;&#039;:1851-8. PMID: 18714091&lt;br /&gt;
&lt;br /&gt;
* Li H, Durbin R (2009) Fast and accurate short read alignment with Burrows-Wheeler transform. &#039;&#039;Bioinformatics.&#039;&#039; &#039;&#039;&#039;25&#039;&#039;&#039;:1754-60. PMID: 19451168&lt;br /&gt;
&lt;br /&gt;
* Li H, Durbin R (2011) Inference of human population history from individual whole-genome sequences. &#039;&#039;Nature.&#039;&#039; &#039;&#039;&#039;475&#039;&#039;&#039;:493-6. PMID: 21753753&lt;br /&gt;
&lt;br /&gt;
* Li Y, Willer CJ, Ding J, Scheet P, Abecasis GR (2010) MaCH: using sequence and genotype data to estimate haplotypes and unobserved genotypes. &#039;&#039;Genet Epidemiol.&#039;&#039; &#039;&#039;&#039;34&#039;&#039;&#039;:816-34. PMID: 21058334 [[Biostatistics 830 - Code Snippets|[Code Snippets]]]&lt;br /&gt;
&lt;br /&gt;
* Lin DY, Zeng D (2010) Meta-analysis of genome-wide association studies: no efficiency gain in using individual participant data. &#039;&#039;Genet Epidemiol.&#039;&#039; &#039;&#039;&#039;34&#039;&#039;&#039;:60-6. PMID: 19847795&lt;br /&gt;
&lt;br /&gt;
* Liu DJ, Peloso GM, Zhan X, Holmen OL, Zawistowski M, Feng S, Nikpay M, Auer PL, Goel A, Zhang H, Peters U, Farrall M, Orho-Melander M, Kooperberg C, McPherson R, Watkins H, Willer CJ, Hveem K, Melander O, Kathiresan S, Abecasis GR (2014) Meta-analysis of gene-level tests for rare variant association. &#039;&#039;Nat Genet.&#039;&#039; &#039;&#039;&#039;46&#039;&#039;&#039;:200-4&lt;br /&gt;
&lt;br /&gt;
* Sobel E, Lange K (1996) Descent Graphs in Pedigree Analysis: Applications to Haplotyping, Location Scores, and Marker-Sharing Statistics. &#039;&#039;Am. J. Hum. Genet.&#039;&#039; &#039;&#039;&#039;58&#039;&#039;&#039;:1323-1336&lt;br /&gt;
&lt;br /&gt;
* Wang C, Zhan X, Bragg-Gresham J, Kang HM, Stambolian D, Chew EY, Branham KE, Heckenlively J; FUSION Study, Fulton R, Wilson RK, Mardis ER, Lin X, Swaroop A, Zöllner S, Abecasis GR (2014) Ancestry estimation and control of population stratification for sequence-based association studies. &#039;&#039;Nat Genet. 2014&#039;&#039; &#039;&#039;&#039;46&#039;&#039;&#039;:409-15&lt;br /&gt;
&lt;br /&gt;
* Wen X, Stephens M (2010) Using linear predictors to impute allele frequencies from summary or pooled genotype data. &#039;&#039;Ann Appl Stat.&#039;&#039; &#039;&#039;&#039;4&#039;&#039;&#039;:1158-1182. PMID: 21479081&lt;br /&gt;
&lt;br /&gt;
* Wu MC, Lee S, Cai T, Li Y, Boehnke M, Lin X (2011) Rare-variant association testing for sequencing data with the sequence kernel association test. Am J Hum Genet. 89:82-93&lt;br /&gt;
&lt;br /&gt;
* Zerbino DR, Birney E (2008) Velvet: algorithms for de novo short read assembly using de Bruijn graphs. &#039;&#039;Genome Res.&#039;&#039; &#039;&#039;&#039;18&#039;&#039;&#039;:821-9. PMID: 18349386&lt;br /&gt;
&lt;br /&gt;
== Course History ==&lt;br /&gt;
&lt;br /&gt;
This course is offered occasionally. Typically, Mike Boehnke has taught it. Each instructor gives the course a different flavor, so you may find it worthwhile -- even if you have taken the course with Mike previously.&lt;/div&gt;</summary>
		<author><name>Gzajac</name></author>
	</entry>
	<entry>
		<id>http://genome.sph.umich.edu/w/index.php?title=Biostatistics_866:_Main_Page&amp;diff=14682</id>
		<title>Biostatistics 866: Main Page</title>
		<link rel="alternate" type="text/html" href="http://genome.sph.umich.edu/w/index.php?title=Biostatistics_866:_Main_Page&amp;diff=14682"/>
		<updated>2017-04-10T13:50:18Z</updated>

		<summary type="html">&lt;p&gt;Gzajac: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Objective ==&lt;br /&gt;
&lt;br /&gt;
Gene mapping studies study the relationship between genetic variation and susceptibility to human disease. These studies are changing rapidly with the availability of techniques for very large scale genetic analysis, whether based on sequencing or on genotyping. Biostatistics 866 is a Ph.D. level course that helps students understand some of the key building blocks of modern genetic analysis tools. It is meant to provide students with a toolkit to facilitate development and implementation of new statistical methods.&lt;br /&gt;
&lt;br /&gt;
For additional information, see also [[Biostatistics 866: Core Competencies|Core Competencies in Biostatistics Program covered by this course]].&lt;br /&gt;
&lt;br /&gt;
== Target Audience ==&lt;br /&gt;
&lt;br /&gt;
It is highly recommended that students registering for Biostatistics 830 should have previously completed [[Biostatistics 666]] and [[Biostatistics 615/815]], which are courses introducing methods for genetic analysis and programming principles, respectively.&lt;br /&gt;
&lt;br /&gt;
== Scheduling ==&lt;br /&gt;
&lt;br /&gt;
For Winter 2017, classes are scheduled for Tuesdays and Thursdays, 8:30 - 10 am in SPH II, room 1152.&lt;br /&gt;
&lt;br /&gt;
== Grading ==&lt;br /&gt;
&lt;br /&gt;
The final grade will take into account your performance in problem sets and worksheets as well as your participation in class.&lt;br /&gt;
&lt;br /&gt;
== Class Worksheets ==&lt;br /&gt;
&lt;br /&gt;
=== Hidden Markov Models ===&lt;br /&gt;
&lt;br /&gt;
Week of January 8 - [[Media:Question_Sheet_-_Li_et_al_(2010)_Gen_Epid.pdf|Li et al (2010)]]&lt;br /&gt;
&lt;br /&gt;
Week of January 15 - [[Media:Question_Sheet_-_Howie_et_al_(2012)_Nat_Genet.pdf|Howie et al (2012)]]  (and, [[Media:866_-_Slides_for_Hyun.pdf|Discussion slides for January 19]])&lt;br /&gt;
&lt;br /&gt;
Week of January 22 - [[Media:Question_Sheet_-_Delaneau_et_al_(2013)_Nature_Methods.pdf|Delaneau et al (2013)]]&lt;br /&gt;
&lt;br /&gt;
Week of January 29 - [[Media:Question_Sheet_-_Boehnke_and_Cox_(1997)_AJHG.pdf|Boehnke and Cox (1997)]]&lt;br /&gt;
&lt;br /&gt;
=== Short Read Sequencing ===&lt;br /&gt;
&lt;br /&gt;
February 12 - [[Media:Question_Sheet_-_Li_et_al_(2008)_Genome_Research.pdf|Li et al (2008)]]&lt;br /&gt;
&lt;br /&gt;
February 19 - [[Media:Question_Sheet_-_Li_and_Durbin_(2009)_Bioinformatics.pdf|Li and Durbin (2009)]]&lt;br /&gt;
&lt;br /&gt;
March 5 - [[Media:Question_Sheet_-_Zerbino_and_Birney_(2008)_Bioinformatics.pdf|Zerbino and Birney (2008)]]&lt;br /&gt;
&lt;br /&gt;
March 12 - [[Media:Question_Sheet_-_Iqbal_et_al_(2012)_Nature_Genetics.pdf|Iqbal et al (2012)]]&lt;br /&gt;
&lt;br /&gt;
=== Association Analysis ===&lt;br /&gt;
&lt;br /&gt;
March 19 - [[Media:Question_Sheet_-_2017_-_Kang_et_al_(2010)_Nature_Genetics_.pdf|Kang et al (2010)]]&lt;br /&gt;
&lt;br /&gt;
March 26 - [[Media:Question_Sheet_-_2017_-_Wu_et_al_(2011)_American_Journal_of_Human_Genetics.pdf|Wu et al (2011)]]&lt;br /&gt;
&lt;br /&gt;
April 2 - [[Media:Question_Sheet_-_2017_-_Liu_et_al_(2013)_Nature_Genetics.pdf|Liu et al (2014)]]&lt;br /&gt;
&lt;br /&gt;
== Student Presentations ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Standards of Academic Conduct ==&lt;br /&gt;
&lt;br /&gt;
The following is an extract from the School of Public Health&#039;s Student Code of Conduct [http://www.sph.umich.edu/academics/policies/conduct.html]:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Student academic misconduct includes behavior involving plagiarism, cheating, fabrication, falsification of records or official documents, intentional misuse of equipment or materials, and aiding and abetting the perpetration of such acts. The preparation of reports, papers, and examinations, assigned on an individual basis, must represent each student’s own effort. Reference sources should be indicated clearly. The use of assistance from other students or aids of any kind during a written examination, except when the use of books or notes has been approved by an instructor, is a violation of the standard of academic conduct.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
In the context of this course, any work you hand-in should be your own and any material that is a transcript (or interpreted transcript) of work by others must be clearly labeled as such. If you turn in work that is directly copied from another student or from a published or unpublished source without attribution, you risk failing the course.&lt;br /&gt;
&lt;br /&gt;
== Planned Reading ==&lt;br /&gt;
&lt;br /&gt;
* Abecasis GR, Cherny SS, Cookson WO, Cardon LR (2002) Merlin--rapid analysis of dense genetic maps using sparse gene flow trees. &#039;&#039;Nat Genetics&#039;&#039; &#039;&#039;&#039;30&#039;&#039;&#039;:97-101&lt;br /&gt;
&lt;br /&gt;
* Boehnke M and Cox N (1997) Accurate Inference of Relationships in Sib-Pair Linkage Studies. &#039;&#039;Am J Hum Genet&#039;&#039; &#039;&#039;&#039;61&#039;&#039;&#039;:423-429&lt;br /&gt;
&lt;br /&gt;
* Coventry A, Bull-Otterson LM, Liu X, Clark AG, Maxwell TJ, Crosby J, Hixson JE, Rea TJ, Muzny DM, Lewis LR, Wheeler DA, Sabo A, Lusk C, Weiss KG, Akbar H, Cree A, Hawes AC, Newsham I, Varghese RT, Villasana D, Gross S, Joshi V, Santibanez J, Morgan M, Chang K, Iv WH, Templeton AR, Boerwinkle E, Gibbs R, Sing CF (2010) Deep resequencing reveals excess rare recent variants consistent with explosive population growth. &#039;&#039;Nat Commun.&#039;&#039; &#039;&#039;&#039;1&#039;&#039;&#039;:131. PMID: 21119644&lt;br /&gt;
&lt;br /&gt;
* Delaneau O, Zagury JF, Marchini J (2013) Improved whole-chromosome phasing for disease and population genetic studies. &#039;&#039;Nat Methods.&#039;&#039; &#039;&#039;&#039;10&#039;&#039;&#039;:5-6. PMID: 23269371&lt;br /&gt;
&lt;br /&gt;
* Howie B, Fuchsberger C, Stephens M, Marchini J, Abecasis GR (2012) Fast and accurate genotype imputation in genome-wide association studies through pre-phasing. &#039;&#039;Nat Genet.&#039;&#039; &#039;&#039;&#039;44&#039;&#039;&#039;:955-9. PMID: 22820512 [[Biostatistics 830 - Code Snippets|[Code Snippets]]]&lt;br /&gt;
&lt;br /&gt;
* Iqbal Z, Caccamo M, Turner I, Flicek P, McVean G (2012) De novo assembly and genotyping of variants using colored de Bruijn graphs. &#039;&#039;Nat Genet.&#039;&#039; &#039;&#039;&#039;44&#039;&#039;&#039;:226-32. PMID: 22231483&lt;br /&gt;
&lt;br /&gt;
* Field Y, Boyle EA, Telis N, Gao Z, Gaulton KJ, Golan D, Yengo L, Rocheleau G, Froguel P, McCarthy MI, Pritchard JK (2016) Detection of human adaptation during the past 2000 years. &#039;&#039;Science&#039;&#039; &#039;&#039;&#039;354&#039;&#039;&#039;:760-764&lt;br /&gt;
&lt;br /&gt;
* Jun G, Flickinger M, Hetrick KN, Romm JM, Doheny KF, Abecasis GR, Boehnke M, Kang HM (2012) Detecting and estimating contamination of human DNA samples in sequencing and array-based genotype data. &#039;&#039;Am J Hum Genet.&#039;&#039; &#039;&#039;&#039;91&#039;&#039;&#039;:839-48. PMID: 23103226&lt;br /&gt;
&lt;br /&gt;
* Kang HM, Sul JH, Service SK, Zaitlen NA, Kong SY, Freimer NB, Sabatti C, Eskin E (2010) Variance component model to account for sample structure in genome-wide association studies. &#039;&#039;Nat. Genet.&#039;&#039; &#039;&#039;&#039;42&#039;&#039;&#039;:348-354&lt;br /&gt;
 &lt;br /&gt;
* Kircher M, Witten DM,	Jain P,	O&#039;Roak BJ, Cooper GM, Shendure J (2014) A general framework for estimating the relative pathogenicity of human genetic variants. &#039;&#039;Nat. Genet.&#039;&#039; &#039;&#039;&#039;46&#039;&#039;&#039; 310–315&lt;br /&gt;
&lt;br /&gt;
* Kruglyak L, Daly MJ, Reeve-Daly MP, Lander ES (1996) Parametric and non-parametric linkage analysis: a unified multipoint approach. &#039;&#039;Am J Hum Genet&#039;&#039; &#039;&#039;&#039;58&#039;&#039;&#039;:1347-63&lt;br /&gt;
&lt;br /&gt;
* Li H, Ruan J, Durbin R (2008) Mapping short DNA sequencing reads and calling variants using mapping quality scores. &#039;&#039;Genome Res.&#039;&#039; &#039;&#039;&#039;18&#039;&#039;&#039;:1851-8. PMID: 18714091&lt;br /&gt;
&lt;br /&gt;
* Li H, Durbin R (2009) Fast and accurate short read alignment with Burrows-Wheeler transform. &#039;&#039;Bioinformatics.&#039;&#039; &#039;&#039;&#039;25&#039;&#039;&#039;:1754-60. PMID: 19451168&lt;br /&gt;
&lt;br /&gt;
* Li H, Durbin R (2011) Inference of human population history from individual whole-genome sequences. &#039;&#039;Nature.&#039;&#039; &#039;&#039;&#039;475&#039;&#039;&#039;:493-6. PMID: 21753753&lt;br /&gt;
&lt;br /&gt;
* Li Y, Willer CJ, Ding J, Scheet P, Abecasis GR (2010) MaCH: using sequence and genotype data to estimate haplotypes and unobserved genotypes. &#039;&#039;Genet Epidemiol.&#039;&#039; &#039;&#039;&#039;34&#039;&#039;&#039;:816-34. PMID: 21058334 [[Biostatistics 830 - Code Snippets|[Code Snippets]]]&lt;br /&gt;
&lt;br /&gt;
* Lin DY, Zeng D (2010) Meta-analysis of genome-wide association studies: no efficiency gain in using individual participant data. &#039;&#039;Genet Epidemiol.&#039;&#039; &#039;&#039;&#039;34&#039;&#039;&#039;:60-6. PMID: 19847795&lt;br /&gt;
&lt;br /&gt;
* Liu DJ, Peloso GM, Zhan X, Holmen OL, Zawistowski M, Feng S, Nikpay M, Auer PL, Goel A, Zhang H, Peters U, Farrall M, Orho-Melander M, Kooperberg C, McPherson R, Watkins H, Willer CJ, Hveem K, Melander O, Kathiresan S, Abecasis GR (2014) Meta-analysis of gene-level tests for rare variant association. &#039;&#039;Nat Genet.&#039;&#039; &#039;&#039;&#039;46&#039;&#039;&#039;:200-4&lt;br /&gt;
&lt;br /&gt;
* Sobel E, Lange K (1996) Descent Graphs in Pedigree Analysis: Applications to Haplotyping, Location Scores, and Marker-Sharing Statistics. &#039;&#039;Am. J. Hum. Genet.&#039;&#039; &#039;&#039;&#039;58&#039;&#039;&#039;:1323-1336&lt;br /&gt;
&lt;br /&gt;
* Wang C, Zhan X, Bragg-Gresham J, Kang HM, Stambolian D, Chew EY, Branham KE, Heckenlively J; FUSION Study, Fulton R, Wilson RK, Mardis ER, Lin X, Swaroop A, Zöllner S, Abecasis GR (2014) Ancestry estimation and control of population stratification for sequence-based association studies. &#039;&#039;Nat Genet. 2014&#039;&#039; &#039;&#039;&#039;46&#039;&#039;&#039;:409-15&lt;br /&gt;
&lt;br /&gt;
* Wen X, Stephens M (2010) Using linear predictors to impute allele frequencies from summary or pooled genotype data. &#039;&#039;Ann Appl Stat.&#039;&#039; &#039;&#039;&#039;4&#039;&#039;&#039;:1158-1182. PMID: 21479081&lt;br /&gt;
&lt;br /&gt;
* Wu MC, Lee S, Cai T, Li Y, Boehnke M, Lin X (2011) Rare-variant association testing for sequencing data with the sequence kernel association test. Am J Hum Genet. 89:82-93&lt;br /&gt;
&lt;br /&gt;
* Zerbino DR, Birney E (2008) Velvet: algorithms for de novo short read assembly using de Bruijn graphs. &#039;&#039;Genome Res.&#039;&#039; &#039;&#039;&#039;18&#039;&#039;&#039;:821-9. PMID: 18349386&lt;br /&gt;
&lt;br /&gt;
== Course History ==&lt;br /&gt;
&lt;br /&gt;
This course is offered occasionally. Typically, Mike Boehnke has taught it. Each instructor gives the course a different flavor, so you may find it worthwhile -- even if you have taken the course with Mike previously.&lt;/div&gt;</summary>
		<author><name>Gzajac</name></author>
	</entry>
</feed>