<?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/31300?offset=1360</link>
	<atom:link href="https://bioinformaticsonline.com/related/31300?offset=1360" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/29479/how-to-install-perl-modules-on-mac-os-x-in-easy-steps</guid>
	<pubDate>Thu, 20 Oct 2016 07:26:29 -0500</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/29479/how-to-install-perl-modules-on-mac-os-x-in-easy-steps</link>
	<title><![CDATA[How to install Perl modules on Mac OS X in easy steps !!]]></title>
	<description><![CDATA[<p>Today at work, I learned how to install Perl modules using&nbsp;<a href="http://en.wikipedia.org/wiki/CPAN">CPAN</a>. It&rsquo;s a lot easier than I thought.</p><p>You see, for the past couple of years, I&rsquo;ve been a bit frustrated because OS X does not come with a whole lot of Perl modules pre-installed, and for all I googled, I couldn&rsquo;t find an &ldquo;idiot&rsquo;s&rdquo; guide for moderately-savvy-but-not-expert users like myself to install modules and dependencies on demand.</p><p>The only instructions I could find point to&nbsp;<a href="http://fink.sourceforge.net/">Fink</a>, which basically installs modules in a path that isn&rsquo;t included in the Perl @INC variable, meaning you have to manually specify the full path to the modules in every script &mdash; which is not a lot of fun if you&rsquo;re developing on OS X and deploying on Red Hat, for instance.</p><p>Moreover, Fink doesn&rsquo;t seem to make every module available, and it&rsquo;s not very easy to determine which Fink package you need to install if you need a particular module.</p><p>So, with a script that called on several apparently unavailable modules, and a deadline looming, I finally decided to suck it up and figure out how to use CPAN to install them:</p><h4>1) Make sure you have the Apple Developer Tools (XCode) installed.</h4><p>These are on one of your install discs, or available as a huge but free download from the&nbsp;<a href="https://developer.apple.com/xcode/">Apple Developer Connection</a>&nbsp;[free registration required] or the Mac App Store. I thought I had them, but apparently when we upgraded that computer to Tiger, they went missing.</p><p>If you don&rsquo;t have this stuff installed, your installation will fail with errors about unavailable commands.</p><h4>1.5) Install Command Line Tools (Recent XCode versions only)</h4><p>(Thank you to Tom Marchioro for informing me about this step.)</p><p>Older versions of XCode installed the command line tools (which are required to properly install CPAN modules) by default, but apparently newer ones do not. To check whether you have the command line tools already installed, run the following from the Terminal:</p><p><code>$ which make</code></p><p>This command checks the system for the &ldquo;<code>make</code>&rdquo; tool. If it spits out something like&nbsp;<code>/usr/bin/make</code>&nbsp;you&rsquo;re golden and can skip ahead to Step 2. If you just get a new prompt and no output, you&rsquo;ll need to install the tools:</p><ol>
<li>Launch XCode and bring up the Preferences panel.</li>
<li>Click on the Downloads tab</li>
<li>Click to install the Command Line Tools</li>
</ol><p>If you like, you can run&nbsp;<code>which make</code>&nbsp;again to confirm that everything&rsquo;s installed correctly.</p><h4>2) Configure CPAN.</h4><p><code>$ sudo perl -MCPAN -e shell</code></p><p><code>perl&gt; o conf init</code></p><p>This will prompt you for some settings. You can accept the defaults for almost everything (just hit &ldquo;return&rdquo;). The two things you must fill in are the path to&nbsp;<code>make</code>&nbsp;(which should be&nbsp;<code>/usr/bin/make</code>&nbsp;or the value returned when you run&nbsp;<code>which make</code>&nbsp;from the command line) and your choice of CPAN mirrors (which you actually choose don&rsquo;t really matter, but it won&rsquo;t let you finish until you select at least one). If you use a proxy or a very restrictive firewall, you may have to configure those settings as well.</p><p>If you skip Step 2, you may get errors about&nbsp;<code>make</code>&nbsp;being unavailable.</p><h4>3) Upgrade CPAN</h4><p><code>$ sudo perl -MCPAN -e 'install Bundle::CPAN'</code></p><p>Don&rsquo;t forget the&nbsp;<code>sudo</code>, or it&rsquo;ll fail with permissions errors, probably when doing something relatively unimportant like installing&nbsp;<code>man</code>&nbsp;files.</p><p>This will spend a long time downloading, testing, and compiling various files and dependencies. Bear with it. It will prompt you a few times about dependencies. You probably want to enter &ldquo;yes&rdquo;. I agreed to everything it asked me, and everything turned out fine. YMMV of course. If everything installs properly, it&rsquo;ll give you an &ldquo;OK&rdquo; at the end.</p><h4>4) Install your modules. For each module&hellip;.</h4><p><code>$ sudo perl -MCPAN -e 'install Bundle::Name'</code></p><p>or</p><p><code>$ sudo perl -MCPAN -e 'install Module::Name'</code></p><p>This will install the module&nbsp;<em>and</em>&nbsp;its dependencies. Nice, eh? Again, don&rsquo;t forget the&nbsp;<code>sudo</code>.</p><p>The first time you run this after upgrading CPAN, it may prompt you to configure again (see Step 2). If you accept its offer to try to configure itself automatically, it may just run through everything without a problem.</p><p>There are a couple of potential pitfalls with specific modules (such as the<code>LWP::UserAgent</code>&nbsp;/&nbsp;<code>HEAD</code>&nbsp;issue), but most have workarounds, and I haven&rsquo;t run into anything that wasn&rsquo;t easily recoverable.</p><p>And that&rsquo;s it!</p><p>Did you find this useful? Is there anything I missed?</p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/29578/plink2</guid>
	<pubDate>Thu, 27 Oct 2016 11:24:45 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/29578/plink2</link>
	<title><![CDATA[PLINK2]]></title>
	<description><![CDATA[<p><span>This is a comprehensive update to Shaun Purcell's&nbsp;</span><a href="http://pngu.mgh.harvard.edu/~purcell/plink/">PLINK</a><span>&nbsp;command-line program, developed by&nbsp;</span><a href="mailto:chrchang@alumni.caltech.edu">Christopher Chang</a><span>&nbsp;with support from the&nbsp;</span><a href="http://www.niddk.nih.gov/">NIH-NIDDK</a><span>'s Laboratory of Biological Modeling, the&nbsp;</span><a href="http://research.mssm.edu/statgen/">Purcell Lab</a><span>&nbsp;at Mount Sinai School of Medicine, and others. (</span><a href="https://www.cog-genomics.org/plink2/#new">What's new?</a><span>) (</span><a href="https://www.cog-genomics.org/plink2/credits">Credits.</a><span>) (</span><a href="http://www.gigasciencejournal.com/content/4/1/7">Methods paper.</a><span>)</span></p><p>Address of the bookmark: <a href="https://www.cog-genomics.org/plink2/" rel="nofollow">https://www.cog-genomics.org/plink2/</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/29614/art-set-of-simulation-tools</guid>
	<pubDate>Thu, 03 Nov 2016 08:28:25 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/29614/art-set-of-simulation-tools</link>
	<title><![CDATA[ART: Set of Simulation Tools]]></title>
	<description><![CDATA[<p>ART is a set of simulation tools to generate synthetic next-generation sequencing reads. ART simulates sequencing reads by mimicking real sequencing process with empirical error models or quality profiles summarized from large recalibrated sequencing data. ART can also simulate reads using user own read error model or quality profiles. ART supports simulation of single-end, paired-end/mate-pair reads of three major commercial next-generation sequencing platforms: Illumina's Solexa, Roche's 454 and Applied Biosystems' SOLiD. ART can be used to test or benchmark a variety of method or tools for next-generation sequencing data analysis, including read alignment, de novo assembly, SNP and structure variation discovery. ART was used as a primary tool for the simulation study of the <span><a href="http://www.1000genomes.org/" target="_blank">1000 Genomes Project<span></span></a></span> . ART is implemented in C++ with optimized algorithms and is highly efficient in read simulation. ART outputs reads in the FASTQ format, and alignments in the ALN format. ART can also generate alignments in the SAM alignment or UCSC BED file format. ART can be used together with genome variants simulators (e.g. <span><a href="http://bioinform.github.io/varsim/" target="_blank">VarSim<span></span></a></span>) for evaluating variant calling tools or methods.</p><p>Address of the bookmark: <a href="http://www.niehs.nih.gov/research/resources/software/biostatistics/art/" rel="nofollow">http://www.niehs.nih.gov/research/resources/software/biostatistics/art/</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/29842/research-assistant-bioinformatics-recruitment-in-national-institute-of-cancer-prevention-research-icmr-on-contract-basis</guid>
  <pubDate>Tue, 15 Nov 2016 17:15:48 -0600</pubDate>
  <link></link>
  <title><![CDATA[Research Assistant Bioinformatics recruitment in National Institute Of Cancer Prevention &amp; Research (ICMR) on Contract basis]]></title>
  <description><![CDATA[
<p>National Institute Of Cancer Prevention &amp; Research - ICMR</p>

<p>Research Assistant Bioinformatics recruitment in National Institute Of Cancer Prevention &amp; Research (ICMR) on Contract basis <br />Project entitled: “Next generation EGFR inhibitor identification using ligand based QSAR technique” </p>

<p>Essential: M.Sc. in Bioinformatics or related field. Desirable: Experience in QSAR and structure based drug designing.<br />Age: 28 years<br />No.of Post: 1</p>

<p>Pay Scale : Rs.27000</p>

<p>Application format is attached and should be sent by post to Dr. Subhash M Agarwal, Scientist D, Division of Bioinformatics, National Institute of Cancer Prevention &amp; Research (ICMR), Plot No. I-7, Sector-39, Noida 201301 (U.P).</p>

<p>More at http://www.icmr.nic.in/icmrnews/NICPR_Advertisement%20for%20RA.pdf</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/30012/swalo</guid>
	<pubDate>Wed, 30 Nov 2016 05:06:05 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/30012/swalo</link>
	<title><![CDATA[SWALO]]></title>
	<description><![CDATA[<p>SWALO (scaffolding with assembly likelihood optimization) is a method for scaffolding based on likelihood of genome assemblies computed using generative models for sequencing.</p>
<p><a href="https://atifrahman.github.io/SWALO/swalo-0.9.7-beta.tar.gz"><strong>Download</strong></a></p>
<p><strong>Git repository of SWALO is at <a href="https://github.com/atifrahman/SWALO">https://github.com/atifrahman/SWALO</a>.</strong></p><p>Address of the bookmark: <a href="https://atifrahman.github.io/SWALO/" rel="nofollow">https://atifrahman.github.io/SWALO/</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/30027/dbt-india</guid>
	<pubDate>Sun, 04 Dec 2016 22:30:37 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/30027/dbt-india</link>
	<title><![CDATA[DBT India]]></title>
	<description><![CDATA[<p>Latest announcement on DBT India.&nbsp;</p>
<p>Calls</p>
<p>Events</p>
<p>Projects</p>
<p>Jobs</p>
<p>&nbsp;</p><p>Address of the bookmark: <a href="http://www.dbtindia.nic.in/out-reach/latest-announcements/" rel="nofollow">http://www.dbtindia.nic.in/out-reach/latest-announcements/</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/30334/postdoc-at-ubritishcolumbia-in-troutgenomics</guid>
  <pubDate>Thu, 22 Dec 2016 08:18:46 -0600</pubDate>
  <link></link>
  <title><![CDATA[Postdoc at UBritishColumbia in TroutGenomics]]></title>
  <description><![CDATA[
<p>Landscape Genomics Postdoc at UBC A research team at the University of British Columbia’s Department of Zoology and Biodiversity Research Centre is seeking a postdoctoral researcher in landscape genetics of native rainbow trout (Oncorhynchus mykiss). </p>

<p>This project is part of a larger Genome Canada project on genetics and physiology of adaptation to climate change in rainbow trout, and the population genomics component is in the labs of Eric Taylor and Michael Whitlock. The landscape genomics component primarily involves whole genome sequencing approaches to understanding the genomic basis of adaptation to features of habitat, but also to provide insights into phylogeography and the influence of watershed structure on population subdivision in rainbow trout. A PhD in a related field with expertise in basic theory and bioinformatic analysis of population genomics data is required. </p>

<p>The position is available for one year with renewal for up to three additional years. Salary is $55,000 per year plus benefits. To apply, please send a brief cover letter summarizing your qualifications for the position, a CV, and the names, addresses, phone numbers and emails of three references. </p>

<p>Review of applications will begin January 16, 2017. Address application materials to etaylor@zoology.ubc.ca to whom any questions can also be addressed. etaylor@zoology.ubc.ca</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/30680/easybuild</guid>
	<pubDate>Fri, 27 Jan 2017 16:00:43 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/30680/easybuild</link>
	<title><![CDATA[EasyBuild]]></title>
	<description><![CDATA[<p><a href="https://github.com/hpcugent/easybuild">EasyBuild</a><span>&nbsp;is a software build and installation framework that allows you to manage (scientific) software on High Performance Computing (HPC) systems in an efficient way.</span><br><span>A full list of supported software packages is available&nbsp;</span><a href="http://easybuild.readthedocs.io/en/latest/version-specific/Supported_software.html">here</a><span>.</span></p><p>Address of the bookmark: <a href="https://hpcugent.github.io/easybuild/" rel="nofollow">https://hpcugent.github.io/easybuild/</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/news/view/30744/binc-2017</guid>
	<pubDate>Wed, 01 Feb 2017 09:36:22 -0600</pubDate>
	<link>https://bioinformaticsonline.com/news/view/30744/binc-2017</link>
	<title><![CDATA[BINC 2017]]></title>
	<description><![CDATA[<p><span>Pondicherry University,Puducherry,on behalf of Department of Biotechnology, Government of India, conducted the BINC examination in&nbsp;</span><span style="color: blue;">2015 and 2016.&nbsp;</span><span>The objective of this examination is to certify bioinformatics professionals, trained formally as well as self-trained.</span><span style="color: blue;">Registration for BINC 2017 examination will open from January 29,2017 to February 28,2017.</span><span>&nbsp;</span></p><p><span>Pondicherry University, Puducherry has been identified as a nodal agency by the Department of Biotechnology, Govt. of India to coordinate this examination along with nine centres namely, </span></p><p><span>Pune University, Pune; </span></p><p><span>Anna University, Chennai; </span></p><p><span>Bose Institute, Kolkata; </span></p><p><span>Institute of Bioinformatics &amp; Applied Biotechnology, Bangalore; </span></p><p><span>North-Eastern Hill University, Shillong, University of Hyderabad, Hyderabad; </span></p><p><span>University of Kerala, Thiruvananthapuram; </span></p><p><span>Jawaharlal Nehru University, New Delhi and </span></p><p><span>Assam Agricultural University, Guwahati.</span><span style="color: blue;"><strong>&nbsp;</strong></span></p><p><span style="color: blue;"><strong>In the BINC 2015 and 2016 examination, 23 candidates and five candidates were certified respectively.</strong></span><span>&nbsp;DBT has agreed to fund Research fellowships for all the BINC qualified Indian nationals to pursue Ph.D. in Indian Institutes/Universities. </span></p><p><span>Note that the candidate must possess a postgraduate degree(or equivalent) &amp; meet the criteria of the institutes/universities in order to avail research fellowship. </span></p><p><span>In addition, cash prize of Rs. 10,000/- will be awarded to the top 10 BINC qualifiers.</span></p><p><span>More at&nbsp;http://www.pondiuni.edu.in/exams/binc/</span></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/30874/important-journals-blogs-and-forums-for-bioinformaticians</guid>
	<pubDate>Wed, 08 Feb 2017 09:15:31 -0600</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/30874/important-journals-blogs-and-forums-for-bioinformaticians</link>
	<title><![CDATA[Important Journals, Blogs and Forums for Bioinformaticians]]></title>
	<description><![CDATA[<p><em>Journals</em>. Most journals have RSS feeds for their current updates.</p><ul>
<li><a href="http://bioinformatics.oxfordjournals.org/rss/" target="_blank">Bioinformatics - RSS feed of current and advance online publications</a></li>
<li><a href="http://genome.cshlp.org/rss/" target="_blank">Genome Research - current &amp; advance</a></li>
<li><a href="http://genomebiology.com/" target="_blank">Genome Biology - editors picks, latest, most viewed, most forwarded</a>. (Hit the RSS icon under each tab).</li>
<li><a href="http://www.plosgenetics.org/static/rssFeeds.action" target="_blank">PLoS Genetics - new articles</a></li>
<li><a href="http://www.ploscompbiol.org/static/rssFeeds.action" target="_blank">PLoS Computational Biology - new articles</a></li>
<li><a href="http://www.nature.com/ng/newsfeeds.html" target="_blank">Nature Genetics - current TOC and AOP</a></li>
<li><a href="http://www.nature.com/nrg/info/newsfeeds.html" target="_blank">Nature Reviews Genetics - current TOC and AOP</a></li>
</ul><ul>
<li><a href="https://academic.oup.com/bioinformatics" target="_blank">Bioinformatics</a></li>
<li><a href="https://bmcbioinformatics.biomedcentral.com/" target="_blank">BMC Bioinformatics</a></li>
<li><a href="https://academic.oup.com/bib" target="_blank">Briefings in Bioinformatics</a></li>
<li><a href="http://genomebiology.biomedcentral.com/" target="_blank">Genome Biology</a></li>
<li><a href="http://genome.cshlp.org/rss/" target="_blank">Genome Research: current and AOP</a></li>
<li><a href="http://microbiomejournal.biomedcentral.com/" target="_blank">Microbiome</a></li>
<li><a href="http://www.nature.com/ng/newsfeeds.html" target="_blank">Nature Genetics, current &amp; AOP</a></li>
<li><a href="http://www.nature.com/nrg/info/newsfeeds.html" target="_blank">Nature Reviews Genetics, current &amp; AOP</a></li>
<li><a href="https://academic.oup.com/nar" target="_blank">Nucleic Acids Research</a></li>
<li><a href="http://journals.plos.org/ploscompbiol/s/help-using-this-site#loc-article-feeds" target="_blank">PLOS Computational Biology</a></li>
<li><a href="http://journals.plos.org/plosgenetics/s/help-using-this-site#loc-article-feeds" target="_blank">PLOS Genetics</a></li>
</ul><p><em>Blogs</em><span>. Some of these blogs are very relevant to bioinfo jobs. Others are more personal interest.</span></p><ul>
<li><a href="http://blog.openhelix.eu/" target="_blank">The OpenHelix Blog</a></li>
<li><a href="http://www.ensembl.info/" target="_blank">Ensembl blog</a></li>
<li><a href="http://wiki.g2.bx.psu.edu/News" target="_blank">Galaxy News</a></li>
<li><a href="http://bcbio.wordpress.com/" target="_blank">Blue Collar Bioinformatics</a></li>
<li><a href="http://www.homolog.us/blogs/" target="_blank">Homologus</a></li>
<li><a href="http://blog.goldenhelix.com/" target="_blank">Golden Helix - our 2 SNPs</a></li>
<li><a href="http://genomicslawreport.com/" target="_blank">Genomics Law Report</a></li>
<li><a href="http://www.r-bloggers.com/" target="_blank">R-bloggers</a>&nbsp;(aggregates feeds from &gt;350 blogs about R)</li>
<li><a href="http://genomesunzipped.org/" target="_blank">Genomes Unzipped</a></li>
<li><a href="http://compgen.blogspot.com/" target="_blank">Jason Moore's Epistasis Blog</a></li>
<li><a href="http://spittoon.23andme.com/" target="_blank">23andMe - the Spitoon</a></li>
</ul><ul>
<li><a href="http://varianceexplained.org/" target="_blank">Variance Explained</a>: David Robinson&rsquo;s blog (Data Scientist at Stack Overflow, works in R and Python).</li>
<li><a href="https://globalbiodefense.com/" target="_blank">Global Biodefense</a>: News on pathogens, outbreaks, and preparedness, with periodic posts on genomics and bioinformatics-related developments and funding opportunities.</li>
<li><a href="https://flxlexblog.wordpress.com/" target="_blank">In between lines of code</a>: Lex Nederbragt&rsquo;s blog on biology, sequencing, bioinformatics, &hellip;</li>
<li><a href="http://simplystatistics.org/" target="_blank">Simply Statistics</a>: A statistics blog by Rafa Irizarry, Roger Peng, and Jeff Leek.</li>
<li><a href="https://liorpachter.wordpress.com/" target="_blank">Bits of DNA</a>: Reviews and commentary on computational biology by Lior Pachter (fair warning: dialogue here can get a bit heated!).</li>
<li><a href="http://bcb.io/articles/" target="_blank">Blue Collar Bioinformatics</a>: articles related tool validation and the open source bioinformatics community.</li>
<li><a href="https://microbiomedigest.com/" target="_blank">Microbiome Digest &ndash; Bik&rsquo;s Picks</a>: A daily digest of scientific microbiome papers, by Elisabeth Bik, Science Editor at uBiome.</li>
<li><a href="http://ivory.idyll.org/blog/" target="_blank">Living in an Ivory Basement</a>: Titus Brown&rsquo;s blog on metagenomics, open science, testing, reproducibility, and programming.</li>
<li><a href="http://enseqlopedia.com/" target="_blank">Enseqlopedia</a>: James Hadfield&rsquo;s blog on all things NGS.</li>
<li><a href="http://www.epistasisblog.org/" target="_blank">Epistasis Blog</a>: Jason Moore&rsquo;s computational biology blog.</li>
<li><a href="https://blog.rstudio.org/" target="_blank">RStudio Blog</a>: announcements about new RStudio functionality, updates about the&nbsp;<a href="http://tidyverse.org/" target="_blank">tidyverse</a>, and more.</li>
<li><a href="http://nextgenseek.com/" target="_blank">nextgenseek.com</a>: Next-Gen Sequencing Blog covering new developments in NGS data &amp; analysis.</li>
<li><a href="http://www.rna-seqblog.com/" target="_blank">RNA-Seq Blog</a>: Transcriptome Research &amp; Industry News.</li>
<li><a href="http://www.theallium.com/" target="_blank">The Allium</a>: We all need a little humor in our lives. Like&nbsp;<em>The Onion</em>, but for science.</li>
</ul><p><em>Forums.</em></p><ul>
<li><a href="http://seqanswers.com/forums/forumdisplay.php?f=18" target="_blank">Seqanswers - bioinformatics forum</a></li>
<li><a href="http://seqanswers.com/forums/forumdisplay.php?f=26" target="_blank">Seqanswers - RNA-Seq forum</a></li>
<li><a href="http://www.biostars.org/rss/" target="_blank">BioStar</a></li>
<li><a href="http://bioinformaticsonline.com/">BOL</a></li>
</ul>]]></description>
	<dc:creator>Jit</dc:creator>
</item>

</channel>
</rss>