<?xml version='1.0'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:atom="http://www.w3.org/2005/Atom" >
<channel>
	<title><![CDATA[BOL: Related items]]></title>
	<link>https://bioinformaticsonline.com/related/44622?offset=10</link>
	<atom:link href="https://bioinformaticsonline.com/related/44622?offset=10" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/43008/list-of-useful-machine-ai-learning-resources</guid>
	<pubDate>Tue, 30 Mar 2021 08:56:06 -0500</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/43008/list-of-useful-machine-ai-learning-resources</link>
	<title><![CDATA[List of useful machine / ai learning resources !]]></title>
	<description><![CDATA[<p>ML&nbsp;cheatsheet !</p><p>https://github.com/remicnrd/ml_cheatsheet</p><p>Visual AI / ML</p><p>https://setosa.io/ev/</p><p>Simple and efficient tools for predictive data analysis</p><p><span>https://scikit-learn.org/stable/</span></p>]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/43563/apache-server-setting</guid>
	<pubDate>Fri, 29 Oct 2021 04:29:51 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/43563/apache-server-setting</link>
	<title><![CDATA[Apache server setting !]]></title>
	<description><![CDATA[<p>Apache is an open source web server that&rsquo;s available for Linux servers free of charge.</p>
<p>In this tutorial we&rsquo;ll be going through the steps of setting up an Apache server.</p>
<h3>What you&rsquo;ll learn</h3>
<ul>
<li>How to set up Apache</li>
<li>Some basic Apache configuration</li>
</ul><p>Address of the bookmark: <a href="https://ubuntu.com/tutorials/install-and-configure-apache#3-creating-your-own-website" rel="nofollow">https://ubuntu.com/tutorials/install-and-configure-apache#3-creating-your-own-website</a></p>]]></description>
	<dc:creator>Abhi</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/44543/seeing-theory-and-learn</guid>
	<pubDate>Tue, 04 Jun 2024 00:31:54 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/44543/seeing-theory-and-learn</link>
	<title><![CDATA[Seeing Theory and Learn]]></title>
	<description><![CDATA[<p>Seeing Theory was created by Daniel Kunin while an undergraduate at Brown University. The goal of this website is to make statistics more accessible through interactive visualizations (designed using Mike Bostock&rsquo;s JavaScript library D3.js).</p><p>Address of the bookmark: <a href="https://seeing-theory.brown.edu/" rel="nofollow">https://seeing-theory.brown.edu/</a></p>]]></description>
	<dc:creator>LEGE</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/44620/diy-transcriptomics</guid>
	<pubDate>Wed, 31 Jul 2024 01:19:26 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/44620/diy-transcriptomics</link>
	<title><![CDATA[DIY Transcriptomics]]></title>
	<description><![CDATA[<p><span>A semester-long course covering best practices for the analysis of high-throughput sequencing data from gene expression (RNA-seq) studies, with a primary focus on empowering students to be independent in the use of lightweight and open-source software using the R programming language and the Bioconductor suite of packages. This course follows a hybrid format in which online lectures are paired with in-person labs where students participate in hands-on, live coding exercises using real &lsquo;omic datasets. The course is focused on datasets and topics central to infectious disease research, immunology, and One-Health, but the concepts and approaches covered are applicable to any genomic study.</span></p>
<p>https://diytranscriptomics.com</p><p>Address of the bookmark: <a href="https://diytranscriptomics.com" rel="nofollow">https://diytranscriptomics.com</a></p>]]></description>
	<dc:creator>Abhi</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/36603/learning-python-programming-a-bioinformatician-perspective</guid>
	<pubDate>Mon, 14 May 2018 16:33:03 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/36603/learning-python-programming-a-bioinformatician-perspective</link>
	<title><![CDATA[Learning Python Programming - a bioinformatician perspective !]]></title>
	<description><![CDATA[<p>Python Programming&nbsp;is a general purpose programming language that is open source, flexible, powerful and easy to use. One of the most important features of python is its rich set of utilities and libraries for data processing and analytics tasks. In the current era of big biological data, python and biopython is getting more popularity due to its easy-to-use features which supports big data processing.</p><p>In this tutorial series article, I will explore features and packages of python which are widely used in the big data, NGS, and bioinformatics. I will also walk through a real biological example which shows NGS data processing with the help of python packages and programming.</p><p>Python has a couple of points to recommend it to biologists and scientists specifically:</p><ul>
<li>It's widely used in the scientific community</li>
<li>It has a couple of very well designed libraries for doing complex scientific computing (although we won't encounter them in this book)</li>
<li>It lend itself well to being integrated with other, existing tools</li>
<li>It has features which make it easy to manipulate strings of characters (for example, strings of DNA bases and protein amino acid residues, which we as biologists are particularly fond of)</li>
</ul><p>In general, following are some of the important features of python which makes it a perfect fit for rapid application development.</p><ul>
<li>Python is interpreted language so the program does not need to be compiled. Interpreter parses the program code and generates the output.</li>
<li>Python is dynamically typed, so the variables types are defined automatically.</li>
<li>Python is strongly typed. So the developers need to cast the type manually.</li>
<li>Less code and more use makes it more acceptable.</li>
<li>Python is portable, extendable and scalable.</li>
</ul><p>There are two major Python versions, Python 2 and Python 3. Python 2 and 3 are quite different. This tutorial uses Python 3, because it more semantically correct and supports newer features.</p><p>I will post tutorial on daily basis on this page. Check the sub-pages on right side.</p>]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/43243/interactive-bioinformatics-resources</guid>
	<pubDate>Thu, 12 Aug 2021 00:09:00 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/43243/interactive-bioinformatics-resources</link>
	<title><![CDATA[Interactive Bioinformatics Resources !]]></title>
	<description><![CDATA[<p>Learn how to use bioinformatics tools right from your browser.<br>Everything runs in a sandbox, so you can experiment all you want.</p>
<p>More at sandbox.bio</p><p>Address of the bookmark: <a href="http://sandbox.bio" rel="nofollow">http://sandbox.bio</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/43631/pangolin-tutorial</guid>
	<pubDate>Fri, 10 Dec 2021 05:58:59 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/43631/pangolin-tutorial</link>
	<title><![CDATA[Pangolin tutorial !]]></title>
	<description><![CDATA[<p><span>This is a tutorial for using the Pangolin Web Application. For information on using the command line tool, please visit the&nbsp;</span><a href="https://cov-lineages.org/resources/pangolin/usage.html">command line tool usage page</a><span>.</span></p>
<p>https://cov-lineages.org/resources/pangolin/tutorial.html</p><p>Address of the bookmark: <a href="https://cov-lineages.org/resources/pangolin/tutorial.html" rel="nofollow">https://cov-lineages.org/resources/pangolin/tutorial.html</a></p>]]></description>
	<dc:creator>Abhi</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/44601/free-resources-to-learn-statistics</guid>
	<pubDate>Sat, 06 Jul 2024 10:30:50 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/44601/free-resources-to-learn-statistics</link>
	<title><![CDATA[Free resources to learn statistics]]></title>
	<description><![CDATA[<p><span>Welcome to the course notes for&nbsp;</span><span>STAT 414: Introduction to Probability Theory</span><span>. These notes are designed and developed by Penn State's&nbsp;</span><a href="https://science.psu.edu/stat">Department of Statistics</a><span>&nbsp;and offered as open educational resources. These notes are free to use under Creative Commons license&nbsp;</span><a href="https://creativecommons.org/licenses/by-nc/4.0/">CC BY-NC 4.0</a><span>.</span></p>
<p>&nbsp;</p>
<p>A free online version of the second edition of the book based on Stat 110,&nbsp;<em>Introduction to Probability</em>&nbsp;by Joe Blitzstein and Jessica Hwang,&nbsp;is now available at&nbsp;<a href="http://probabilitybook.net/" title="http://probabilitybook.net">http://probabilitybook.net</a></p>
<p>Print copies are available via&nbsp;<a href="https://www.crcpress.com/Introduction-to-Probability-Second-Edition/Blitzstein-Hwang/p/book/9781138369917" title="">CRC Press</a>,&nbsp;<a href="https://amzn.to/2Ubh7D8" title="">Amazon</a>, and elsewhere.&nbsp;</p>
<p>Stat110x is also available as an&nbsp;edX course.&nbsp;Free signup at&nbsp;<a href="https://www.edx.org/course/introduction-to-probability-0" title="https://www.edx.org/course/introduction-to-probability-0">https://www.edx.org/course/introduction-to-probability-0</a></p>
<p>The edX course focuses on animations, interactive features, readings, and problem-solving, and&nbsp;is&nbsp;<strong>complementary</strong>&nbsp;to the Stat 110 lecture videos on YouTube, which are available at&nbsp;<a href="https://goo.gl/i7njSb" title="https://goo.gl/i7njSb">https://goo.gl/i7njSb</a></p>
<p>The Stat110x animations are available within the course and at&nbsp;<a href="https://goo.gl/g7pqTo" title="">https://goo.gl/g7pqTo</a></p>
<p><a href="https://projects.iq.harvard.edu/stat110/home">https://projects.iq.harvard.edu/stat110/home</a>&nbsp;</p><p>Address of the bookmark: <a href="https://online.stat.psu.edu/stat414/" rel="nofollow">https://online.stat.psu.edu/stat414/</a></p>]]></description>
	<dc:creator>BioStar</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/44667/bioinformatics-lecture-notes</guid>
	<pubDate>Tue, 01 Oct 2024 03:45:26 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/44667/bioinformatics-lecture-notes</link>
	<title><![CDATA[Bioinformatics Lecture Notes]]></title>
	<description><![CDATA[<h1 style="text-align: center;">Study Resources for</h1><h1 style="text-align: center;">ECM3413 - Bioinformatics</h1><p style="text-align: center;">Contents</p><p style="text-align: center;">&nbsp;</p><p style="text-align: center;"><a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/#GenInfo">General Information</a></p><p style="text-align: center;"><a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/#Past%20Paper">Lecture Slides</a></p><p style="text-align: center;"><a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/#Past%20Paper">Past Exam Paper</a></p><p style="text-align: center;"><a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/#Assess">Continuous Assessments</a></p><p style="text-align: center;"><a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/#Reading">Suggested Reading List</a></p><p><a name="GenInfo" id="GenInfo"></a><strong>General Information</strong></p><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="baseline"><img src="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/blubul1a.gif" alt="bullet" width="15" height="15" style="border: 0px; margin-left: 13px; margin-right: 13px; border: 0px;"></td>
<td valign="top">This module runs in Semester 2.&nbsp;</td>
</tr>
<tr>
<td valign="baseline"><img src="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/blubul1a.gif" alt="bullet" width="15" height="15" style="border: 0px; margin-left: 13px; margin-right: 13px; border: 0px;"></td>
<td valign="top">It is taught by&nbsp;<a href="http://www.secam.ex.ac.uk/staff/index.php?nav=40&amp;group=Teaching%20Fellows&amp;user_directory_limit=&amp;user_directory_order=&amp;sid=182">Dr Ed Keedwell</a>&nbsp;(Module Coordinator)</td>
</tr>
<tr>
<td valign="baseline"><img src="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/blubul1a.gif" alt="bullet" width="15" height="15" style="border: 0px; margin-left: 13px; margin-right: 13px; border: 0px;"></td>
<td valign="top"><strong>Module Descriptor</strong>:&nbsp;&nbsp;<a href="http://www.secam.ex.ac.uk/student/modules?mid=393">ECM3413</a></td>
</tr>
<tr>
<td valign="baseline"><img src="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/blubul1a.gif" alt="bullet" width="15" height="15" style="border: 0px; margin-left: 13px; margin-right: 13px; border: 0px;"></td>
<td valign="top"><strong>Lecture Times</strong>: Tuesday 5pm,&nbsp; 171| Thursday, 171</td>
</tr>
<tr>
<td valign="baseline"><img src="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/blubul1a.gif" alt="bullet" width="15" height="15" style="border: 0px; margin-left: 13px; margin-right: 13px; border: 0px;"></td>
<td valign="top"><strong>Workshop Times</strong>: Wednesday 11am Blue Room (Weeks 29,33 &amp;40)</td>
</tr>
<tr>
<td valign="baseline"><img src="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/blubul1a.gif" alt="bullet" width="15" height="15" style="border: 0px; margin-left: 13px; margin-right: 13px; border: 0px;"></td>
<td valign="top">
<p><strong>Assessment:&nbsp;</strong>2 CAs each worth 15% | 1 Examination worth 70%</p>
</td>
</tr>
</tbody>
</table><p>&nbsp;&nbsp;</p><p style="text-align: left;"><strong><a name="Slides" id="Slides"></a>Lecture Slides&nbsp;</strong>(if you have to print slides, to save your ink choose 'print in black and white' on the print menu)</p><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="baseline"><img src="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/blubul1a.gif" alt="bullet" width="15" height="15" style="border: 0px; margin-left: 13px; margin-right: 13px; border: 0px;"></td>
<td valign="top">
<p style="text-align: left;"><a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/BIOLecture1.ppt">PPT</a>|<a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/BIOLecture1.pdf">PDF</a>| Lecture 1 - Introduction to Bioinformatics (&amp; Biology)</p>
</td>
</tr>
<tr>
<td valign="baseline"><img src="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/blubul1a.gif" alt="bullet" width="15" height="15" style="border: 0px; margin-left: 13px; margin-right: 13px; border: 0px;"></td>
<td valign="top">
<p style="text-align: left;"><a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/BIOLecture2.ppt">PPT</a>|<a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/BIOLecture2.pdf">PDF</a>| Lecture 2 - Genome Sequences: from fragments to sequences</p>
</td>
</tr>
<tr>
<td valign="baseline"><img src="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/blubul1a.gif" alt="bullet" width="15" height="15" style="border: 0px; margin-left: 13px; margin-right: 13px; border: 0px;"></td>
<td valign="top">
<p style="text-align: left;"><a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/BIOLecture3.ppt">PPT</a>|<a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/BIOLecture3.pdf">PDF</a>| Lecture 3 - Sequence Alignment 1</p>
</td>
</tr>
<tr>
<td valign="baseline"><img src="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/blubul1a.gif" alt="bullet" width="15" height="15" style="border: 0px; margin-left: 13px; margin-right: 13px; border: 0px;"></td>
<td valign="top">
<p style="text-align: left;"><a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/BIOLecture4.ppt">PPT</a>|<a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/BIOLecture4.pdf">PDF</a>| Lecture 4 - Global Pairwise Sequence Alignment</p>
</td>
</tr>
<tr>
<td valign="baseline"><img src="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/blubul1a.gif" alt="bullet" width="15" height="15" style="border: 0px; margin-left: 13px; margin-right: 13px; border: 0px;"></td>
<td valign="top">
<p style="text-align: left;"><a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/BIOLecture5.ppt">PPT</a>|<a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/BIOLecture5.pdf">PDF</a>| Lecture 5 - Local Pairwise Sequence Alignment (Smith-Waterman &amp; BLAST)</p>
</td>
</tr>
<tr>
<td valign="baseline"><img src="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/blubul1a.gif" alt="bullet" width="15" height="15" style="border: 0px; margin-left: 13px; margin-right: 13px; border: 0px;"></td>
<td valign="top">
<p style="text-align: left;"><a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/BIOWorkshop1.doc">DOC</a>| Workshop 1 - Using BLAST and other Bioinformatics Databases</p>
</td>
</tr>
<tr>
<td valign="baseline"><img src="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/blubul1a.gif" alt="bullet" width="15" height="15" style="border: 0px; margin-left: 13px; margin-right: 13px; border: 0px;"></td>
<td valign="top">
<p style="text-align: left;"><a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/BIOLecture6.ppt">PPT</a>|<a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/BIOLecture6.pdf">PDF</a>| Lecture 6 - Multiple Sequence Alignment</p>
</td>
</tr>
<tr>
<td valign="baseline"><img src="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/blubul1a.gif" alt="bullet" width="15" height="15" style="border: 0px; margin-left: 13px; margin-right: 13px; border: 0px;"></td>
<td valign="top">
<p style="text-align: left;"><a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/BIOLecture7.ppt">PPT</a>|<a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/BIOLecture7.pdf">PDF</a>| Lecture 7 - BLAST (in more detail) &amp; FASTA</p>
</td>
</tr>
<tr>
<td valign="baseline"><img src="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/blubul1a.gif" alt="bullet" width="15" height="15" style="border: 0px; margin-left: 13px; margin-right: 13px; border: 0px;"></td>
<td valign="top">
<p style="text-align: left;"><a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/BIOLecture8.ppt">PPT</a>|<a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/BIOLecture8.pdf">PDF</a>| Lecture 8 - Sequence Alignment Conclusion &amp; Other Sequence Analyses</p>
</td>
</tr>
<tr>
<td valign="baseline"><img src="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/blubul1a.gif" alt="bullet" width="15" height="15" style="border: 0px; margin-left: 13px; margin-right: 13px; border: 0px;"></td>
<td valign="top">
<p style="text-align: left;"><a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/BIOLecture9.ppt">PPT</a>|<a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/BIOLecture9.pdf">PDF</a>| Lecture 9 - Markov Chains and Intro to Hidden Markov Models</p>
</td>
</tr>
<tr>
<td valign="baseline"><img src="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/blubul1a.gif" alt="bullet" width="15" height="15" style="border: 0px; margin-left: 13px; margin-right: 13px; border: 0px;"></td>
<td valign="top">
<p style="text-align: left;"><a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/BIOLecture10.ppt">PPT</a>|<a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/BIOLecture10.pdf">PDF</a>| Lecture 10 - Hidden Markov Models</p>
</td>
</tr>
<tr>
<td valign="baseline"><img src="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/blubul1a.gif" alt="bullet" width="15" height="15" style="border: 0px; margin-left: 13px; margin-right: 13px; border: 0px;"></td>
<td valign="top">
<p style="text-align: left;"><a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/BIOLecture11.ppt">PPT</a>|<a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/BIOLecture11.pdf">PDF</a>| Lecture 11 - Classification in Bioinformatics</p>
</td>
</tr>
<tr>
<td valign="baseline"><img src="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/blubul1a.gif" alt="bullet" width="15" height="15" style="border: 0px; margin-left: 13px; margin-right: 13px; border: 0px;"></td>
<td valign="top">
<p style="text-align: left;"><a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/BIOWorkshop2.doc">DOC</a>|Workshop 2 - Using See5</p>
</td>
</tr>
<tr>
<td valign="baseline"><img src="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/blubul1a.gif" alt="bullet" width="15" height="15" style="border: 0px; margin-left: 13px; margin-right: 13px; border: 0px;"></td>
<td valign="top">
<p style="text-align: left;">Workshop Data - Part 1 -&nbsp;<a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/adult.names">adult.names&nbsp;</a>|&nbsp;<a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/adult.data">adult.data&nbsp;</a>|&nbsp;<a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/adult.test">adult.test,&nbsp;</a>Part 3 -&nbsp;<a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/wdbc.names">wdbc.names</a>|&nbsp;<a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/wdbc.data">wdbc.data</a></p>
</td>
</tr>
<tr>
<td valign="baseline"><img src="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/blubul1a.gif" alt="bullet" width="15" height="15" style="border: 0px; margin-left: 13px; margin-right: 13px; border: 0px;"></td>
<td valign="top">
<p style="text-align: left;"><a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/BIOLecture12.ppt">PPT</a>|<a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/BIOLecture12.pdf">PDF</a>| Lecture 12 - Gene Expression Data</p>
</td>
</tr>
<tr>
<td valign="baseline"><img src="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/blubul1a.gif" alt="bullet" width="15" height="15" style="border: 0px; margin-left: 13px; margin-right: 13px; border: 0px;"></td>
<td valign="top">
<p style="text-align: left;"><a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/BIOLecture13.ppt">PPT</a>|<a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/BIOLecture13.pdf">PDF</a>| Lecture 13 - Decision Trees and Gene Expression Classification</p>
</td>
</tr>
<tr>
<td valign="baseline"><img src="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/blubul1a.gif" alt="bullet" width="15" height="15" style="border: 0px; margin-left: 13px; margin-right: 13px; border: 0px;"></td>
<td valign="top">
<p style="text-align: left;"><a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/BIOLecture14.ppt">PPT</a>|<a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/BIOLecture14.pdf">PDF</a>| Lecture 14 - Other Methods for Gene Expression Classification</p>
</td>
</tr>
<tr>
<td valign="baseline"><img src="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/blubul1a.gif" alt="bullet" width="15" height="15" style="border: 0px; margin-left: 13px; margin-right: 13px; border: 0px;"></td>
<td valign="top">
<p style="text-align: left;"><a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/BIOLecture15.ppt">PPT</a>|<a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/BIOLecture15.pdf">PDF</a>| Lecture 15 - Gene Regulation</p>
</td>
</tr>
<tr>
<td valign="baseline"><img src="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/blubul1a.gif" alt="bullet" width="15" height="15" style="border: 0px; margin-left: 13px; margin-right: 13px; border: 0px;"></td>
<td valign="top">
<p style="text-align: left;"><a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/BIOLecture16.ppt">PPT</a>|<a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/BIOLecture16.pdf">PDF</a>| Lecture 16 - Neural Networks in Gene Expression Analysis</p>
</td>
</tr>
<tr>
<td valign="baseline"><img src="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/blubul1a.gif" alt="bullet" width="15" height="15" style="border: 0px; margin-left: 13px; margin-right: 13px; border: 0px;"></td>
<td valign="top">
<p style="text-align: left;"><a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/BIOLecture17.ppt">PPT</a>|<a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/BIOLecture17.pdf">PDF</a>| Lecture 17 - Genome Analysis</p>
</td>
</tr>
<tr>
<td valign="baseline"><img src="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/blubul1a.gif" alt="bullet" width="15" height="15" style="border: 0px; margin-left: 13px; margin-right: 13px; border: 0px;"></td>
<td valign="top">
<p style="text-align: left;"><a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/BIOLecture18.ppt">PPT</a>|<a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/BIOLecture18.pdf">PDF</a>| Lecture 18 - Conclusion/Revision Lecture</p>
</td>
</tr>
</tbody>
</table><p style="text-align: left;">&nbsp;</p><p style="text-align: left;">For some reason best known to itself, my PDF creator doesn't like the slide with the substitution matrix on.&nbsp; Therefore this has been removed from Lectures 3 and 7 for the PDF copy only - however, more information on these matrices can be found&nbsp;<a href="http://www.ebi.ac.uk/help/matrix.html">here</a>.</p><p style="text-align: left;"><strong><a name="Past%20Paper"></a>Past Exam Paper</strong></p><p style="text-align: left;">The paper from 2007/8 can be found&nbsp;<a href="http://library.exeter.ac.uk/exampapers/">here</a>.</p><p style="text-align: left;"><strong><a name="Assess" id="Assess"></a>Continuous Assessments</strong></p><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="baseline"><img src="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/blubul1a.gif" alt="bullet" width="15" height="15" style="border: 0px; margin-left: 13px; margin-right: 13px; border: 0px;"></td>
<td valign="top">
<p style="text-align: left;"><a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/CA1ECM3413.pdf">PDF</a>|&nbsp; CA1 - Manual Sequence Alignment</p>
</td>
</tr>
<tr>
<td valign="baseline"><img src="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/blubul1a.gif" alt="bullet" width="15" height="15" style="border: 0px; margin-left: 13px; margin-right: 13px; border: 0px;"></td>
<td valign="top">
<p style="text-align: left;"><a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/CA2ECM3413.pdf">PDF</a>|<a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/Promoter.names">Promoter.names</a>|<a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/Promoter.data">Promoter.data</a>|<a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/ML.names">ML.names</a>|<a href="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/ML.data">ML.data</a>| CA2 - Data Mining in Bioinformatics</p>
</td>
</tr>
</tbody>
</table><p style="text-align: left;">&nbsp;</p><p style="text-align: left;"><strong><a name="Reading" id="Reading"></a>Suggested Reading List</strong></p><p style="text-align: left;"><strong>General Bioinformatics</strong></p><p>&lt;="top"&gt;Xiong, J., (2006) Essential Bioinformatics, Cambridge University Press</p><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="baseline"><img src="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/blubul1a.gif" alt="bullet" width="15" height="15" style="border: 0px; margin-left: 13px; margin-right: 13px; border: 0px;"></td>
<td valign="top">
<p style="text-align: left;">Lesk, A.M., (2002) Introduction to Bioinformatics, Oxford University Press</p>
</td>
</tr>
<tr>
<td valign="baseline"><img src="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/blubul1a.gif" alt="bullet" width="15" height="15" style="border: 0px; margin-left: 13px; margin-right: 13px; border: 0px;"></td>
<td valign="top">
<p style="text-align: left;">Higgs, P.G., (2005) Bioinformatics and Molecular Evolution,&nbsp; Blackwell Publishing</p>
</td>
</tr>
<tr>
<td valign="baseline"><img src="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/blubul1a.gif" alt="bullet" width="15" height="15" style="border: 0px; margin-left: 13px; margin-right: 13px; border: 0px;"></td>
</tr>
</tbody>
</table><p style="text-align: left;">&nbsp;</p><p style="text-align: left;"><strong>Machine Learning in Bioinformatics</strong></p><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="baseline"><img src="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/blubul1a.gif" alt="bullet" width="15" height="15" style="border: 0px; margin-left: 13px; margin-right: 13px; border: 0px;"></td>
<td valign="top">
<p style="text-align: left;">Baldi, P., Brunak, S., (2001) Bioinformatics: The Machine Learning Approach, MIT Press</p>
</td>
</tr>
<tr>
<td><img src="https://empslocal.ex.ac.uk/people/staff/reverson/sr/oldECM3413/blubul1a.gif" alt="bullet" width="15" height="15" style="border: 0px; margin-left: 13px; margin-right: 13px; border: 0px;"></td>
<td valign="top">
<p style="text-align: left;">Keedwell, E., Narayanan, A., (2005) Intelligent Bioinformatics: The Application of Artificial Intelligence Techniques to Bioinformatics Problems, Wiley</p>
</td>
</tr>
</tbody>
</table>]]></description>
	<dc:creator>LEGE</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/37993/platypus-a-haplotype-based-variant-caller-for-next-generation-sequence-data</guid>
	<pubDate>Thu, 25 Oct 2018 06:14:55 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/37993/platypus-a-haplotype-based-variant-caller-for-next-generation-sequence-data</link>
	<title><![CDATA[Platypus: A Haplotype-Based Variant Caller For Next Generation Sequence Data]]></title>
	<description><![CDATA[<p><strong>Platypus</strong><span>&nbsp;is a tool designed for efficient and accurate variant-detection in high-throughput sequencing data. By using local realignment of reads and local assembly it achieves both high sensitivity and high specificity. Platypus can detect SNPs, MNPs, short indels, replacements and (using the assembly option) deletions up to several kb. It has been extensively tested on&nbsp;</span><a href="http://www.ncbi.nlm.nih.gov/pubmed/?term=24463883">whole-genome</a><span>,&nbsp;</span><a href="http://www.nature.com/ng/journal/v45/n1/abs/ng.2492.html">exon-capture</a><span>, and&nbsp;</span><a href="http://www.nature.com/nature/journal/v493/n7432/abs/nature11725.html">targeted capture</a><span>&nbsp;data, it has been run on very large datasets as part of the&nbsp;</span><a href="http://www.1000genomes.org/">Thousand Genomes</a><span>&nbsp;and WGS500 projects, and is being used in clinical sequencing trials in the&nbsp;</span><a href="http://www.mcgprogramme.com/">Mainstreaming Cancer Genetics</a><span>&nbsp;programme.&nbsp;</span></p>
<p><span>Tutorial&nbsp;https://github.com/andyrimmer/Platypus/blob/master/misc/README.txt</span></p><p>Address of the bookmark: <a href="http://www.well.ox.ac.uk/platypus" rel="nofollow">http://www.well.ox.ac.uk/platypus</a></p>]]></description>
	<dc:creator>Shruti Paniwala</dc:creator>
</item>

</channel>
</rss>