<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>O&#124;B&#124;F News</title>
	<atom:link href="http://news.open-bio.org/news/feed/" rel="self" type="application/rss+xml" />
	<link>http://news.open-bio.org/news</link>
	<description>Open Source Bioinformatics news</description>
	<lastBuildDate>Mon, 11 Feb 2013 15:42:33 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.3-beta1</generator>
		<item>
		<title>Biopython 1.61 released</title>
		<link>http://news.open-bio.org/news/2013/02/biopython-1-61-released/</link>
		<comments>http://news.open-bio.org/news/2013/02/biopython-1-61-released/#comments</comments>
		<pubDate>Tue, 05 Feb 2013 21:14:05 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Biopython]]></category>
		<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[OBF]]></category>
		<category><![CDATA[OBF Projects]]></category>

		<guid isPermaLink="false">http://news.open-bio.org/news/?p=998</guid>
		<description><![CDATA[Source distributions and Windows installers for Biopython 1.61 are now available from the downloads page on the Biopython website and from the Python Package Index (PyPI). The updated Biopython Tutorial and Cookbook is online (PDF). Platforms/Deployment We currently support Python &#8230; <a href="http://news.open-bio.org/news/2013/02/biopython-1-61-released/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Source distributions and Windows installers for Biopython 1.61 are now available from the <a href="http://biopython.org/wiki/Download">downloads page</a> on the <a href="http://biopython.org/">Biopython website</a> and from the <a href="http://pypi.python.org/pypi/biopython">Python Package Index (PyPI)</a>.</p>
<p>The updated <a href="http://biopython.org/DIST/docs/tutorial/Tutorial.html">Biopython Tutorial and Cookbook</a> is online (<a href="http://biopython.org/DIST/docs/tutorial/Tutorial.pdf">PDF</a>).</p>
<p><strong>Platforms/Deployment</strong></p>
<p>We currently support Python 2.5, 2.6 and 2.7 and also test under Python 3.1, 3.2 and 3.3 (including modules using NumPy), and <a href="http://www.jython.org">Jython</a> 2.5 and <a href="http://pypy.org">PyPy</a> 1.9 (Jython and PyPy do not cover NumPy or our C extensions). We are still encouraging early adopters to help test on these platforms, and have included a ‘beta’ installer for Python 3.2 (and Python 3.3 to follow soon) under 32-bit Windows.</p>
<p>Please note we are phasing out support for Python 2.5. We will continue support for at least one further release (Biopython 1.62). This could be extended given feedback from our users. Focusing on Python 2.6 and 2.7 only will make writing Python 3 compatible code easier.</p>
<p><strong>Features</strong></p>
<p>GenomeDiagram has three new sigils (shapes to illustrate features). OCTO shows an octagonal shape, like the existing BOX sigil but with the corners cut off. JAGGY shows a box with jagged edges at the start and end, intended for things like NNNNN regions in draft genomes. Finally BIGARROW is like the existing ARROW sigil but is drawn straddling the axis. This is useful for drawing vertically compact figures where you do not have overlapping genes.</p>
<p>New module Bio.Graphics.ColorSpiral can generate colors along a spiral path through HSV color space. This can be used to make arbitrary &#8216;rainbow&#8217; scales, for example to color features or cross-links on a GenomeDiagram figure.</p>
<p>The Bio.SeqIO module now supports reading sequences from PDB files in two different ways. The &#8220;pdb-atom&#8221; format determines the sequence as it appears in the structure based on the atom coordinate section of the file (via Bio.PDB,<br />
so NumPy is currently required for this). Alternatively, you can use the &#8220;pdb-seqres&#8221; format to read the complete protein sequence as it is listed in the PDB header, if available.</p>
<p>The Bio.SeqUtils module how has a seq1 function to turn a sequence using three letter amino acid codes into one using the more common one letter codes. This acts as the inverse of the existing seq3 function.</p>
<p>The multiple-sequence-alignment object used by Bio.AlignIO etc now supports an annotation dictionary. Additional support for per-column annotation is planned, with addition and splicing to work like that for the SeqRecord per-letter annotation.</p>
<p>The Bio.Motif module has been updated and reorganized. To allow for a clean deprecation of the old code, the new motif code is stored in a new module Bio.motifs, and a PendingDeprecationWarning was added to Bio.Motif.</p>
<p><strong>Experimental Code &#8211; SearchIO</strong></p>
<p>This release also includes <a href="http://biopython.org/wiki/SearchIO">Bow&#8217;s Google Summer of Code work</a> writing a unified parsing framework for NCBI BLAST (assorted formats including tabular and XML), HMMER, BLAT, and other sequence searching tools. This is currently available with the new <tt>BiopythonExperimentalWarning</tt> to indicate that this is still somewhat experimental. We&#8217;re bundling it with the main release to get more public feedback, but with the big warning that the API is likely to change. In fact, even the current name of Bio.SearchIO may change since unless you are familiar with BioPerl its purpose isn&#8217;t immediately clear.</p>
<p><strong>Contributors</strong></p>
<ul>
<li>Brandon Invergo</li>
<li>Bryan Lunt (first contribution)</li>
<li>Christian Brueffer (first contribution)</li>
<li>David Cain</li>
<li>Eric Talevich</li>
<li>Grace Yeo (first contribution)</li>
<li>Jeffrey Chang</li>
<li>Jingping Li (first contribution)</li>
<li>Kai Blin (first contribution)</li>
<li>Leighton Pritchard</li>
<li>Lenna Peterson</li>
<li>Lucas Sinclair (first contribution)</li>
<li>Michiel de Hoon</li>
<li>Nick Semenkovich (first contribution)</li>
<li>Peter Cock</li>
<li>Robert Ernst (first contribution)</li>
<li>Tiago Antao</li>
<li>Wibowo &#8216;Bow&#8217; Arindrarto</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://news.open-bio.org/news/2013/02/biopython-1-61-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OBF Board meeting 13 Nov</title>
		<link>http://news.open-bio.org/news/2012/11/obf-board-meeting-13-nov/</link>
		<comments>http://news.open-bio.org/news/2012/11/obf-board-meeting-13-nov/#comments</comments>
		<pubDate>Tue, 06 Nov 2012 15:58:44 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Mailing lists]]></category>
		<category><![CDATA[OBF]]></category>
		<category><![CDATA[OBF Projects]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[board]]></category>
		<category><![CDATA[board meeting]]></category>
		<category><![CDATA[meeting]]></category>
		<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://news.open-bio.org/news/?p=991</guid>
		<description><![CDATA[The Open Bioinformatics Foundation (OBF) will be holding a public Board of Directors meeting on Tuesday, 13 Nov, 2012, at 11.30am EST (8.30am PST, 17:30 CET, 16:30 UTC/GMT). The meeting will be held online or over conference call. We will &#8230; <a href="http://news.open-bio.org/news/2012/11/obf-board-meeting-13-nov/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The Open Bioinformatics Foundation (OBF) will be holding a public <a href="http://www.open-bio.org/wiki/Board">Board of Directors</a> meeting on Tuesday, 13 Nov, 2012, at 11.30am EST (8.30am PST, 17:30 CET, 16:30 UTC/GMT).</p>
<p>The meeting will be held online or over conference call. We will post details about how to dial in or connect closer to the date (<a href="http://www.open-bio.org/wiki/Minutes:2012_Nov_ConfCall">here</a>).</p>
<p>On the agenda Richard Holland and Chris Fields are running for election to the Board, and some other items primarily up for discussion, including how to keep our membership roll up-to-date and increasing with the least barriers. We will post a more detailed agenda in advance of the meeting (<a href="http://www.open-bio.org/wiki/Minutes:2012_Nov_ConfCall">here</a>).</p>
<p>OBF members should have already received notice of this meeting via the <a href="http://lists.open-bio.org/mailman/listinfo/members">OBF member’s mailing list</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://news.open-bio.org/news/2012/11/obf-board-meeting-13-nov/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Server transition process to AWS servers</title>
		<link>http://news.open-bio.org/news/2012/11/server-transition-to-aws/</link>
		<comments>http://news.open-bio.org/news/2012/11/server-transition-to-aws/#comments</comments>
		<pubDate>Mon, 05 Nov 2012 01:10:49 +0000</pubDate>
		<dc:creator>Jason Stajich</dc:creator>
				<category><![CDATA[OBF]]></category>
		<category><![CDATA[OBF Projects]]></category>
		<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://news.open-bio.org/news/?p=987</guid>
		<description><![CDATA[Our aging server which has run for 5+ years the OBF sites has finally reached end of its lifespan. We are currently migrating sites to AWS volumes and sites for a temporary period while we decide about how to continue &#8230; <a href="http://news.open-bio.org/news/2012/11/server-transition-to-aws/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Our aging server which has run for 5+ years the OBF sites has finally reached end of its lifespan. We are currently migrating sites to AWS volumes and sites for a temporary period while we decide about how to continue to support these services in the future.  There will be some downtime while the all-volunteer OBF admin team makes time to fix this.</p>
<p>Nearly all projects use public source code repositories such as github or sourceforge so no problems with access to the code should be limiting. Mailing lists are still using the old server but will be moved to the AWS site in the next few days and we are working to have little downtime for the lists.  Mediawiki sites are moving in stages and so far Bioperl, Biopython, and the OBF wikis have been migrated.  This news site has also been migrated to AWS and this is the 1st post from it (will it work!?)</p>
]]></content:encoded>
			<wfw:commentRss>http://news.open-bio.org/news/2012/11/server-transition-to-aws/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>OBF is now an SPI-associated project</title>
		<link>http://news.open-bio.org/news/2012/10/obf-now-spi-associated/</link>
		<comments>http://news.open-bio.org/news/2012/10/obf-now-spi-associated/#comments</comments>
		<pubDate>Fri, 12 Oct 2012 19:01:49 +0000</pubDate>
		<dc:creator>Hilmar Lapp</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[OBF]]></category>
		<category><![CDATA[OBF Projects]]></category>

		<guid isPermaLink="false">http://news.open-bio.org/news/?p=976</guid>
		<description><![CDATA[I am very pleased to announce that as of the SPI's Board meeting that took place yesterday, O&#124;B&#124;F is now an SPI-associated project. <a href="http://news.open-bio.org/news/2012/10/obf-now-spi-associated/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I am very pleased to announce that the Open Bioinformatics Foundation (O|B|F) is now a <a href="http://www.spi-inc.org">Software in the Public Interest (SPI)</a> associated project, rather than its own not-for-profit incorporation.</p>
<p>An electronic vote of O|B|F members on whether or not to provisionally approve the invitation from SPI closed yesterday at 19:00 UTC. We had a participation of 39 out of 105 eligible, or 37%, which is far above the quorum of 10%. The tally is 38 for provisionally accepting and 1 against. The tally can be seen (and audited) here:<br />
<a href="https://vote.heliosvoting.org/helios/e/OBFjoiningSPI">https://vote.heliosvoting.org/helios/e/OBFjoiningSPI</a></p>
<p>The SPI Board vote on resolution <a href="http://www.spi-inc.org/meetings/agendas/2012/2012-10-11/">2012-09-28.jb.1</a> (&#8220;Open Bioinformatics Foundation as associated project&#8221;) resulted in 8 yes, 0 no, 0 abstain. Given the result of our election, I accepted the invitation right away.</p>
<p>Thanks to everyone who voted. On behalf of the Board, I am thrilled about the turnout!</p>
<p>This terminates O|B|F&#8217;s status as its own corporation, which over the years has been more trouble than gain. As an SPI-associated project, we can now accept donations that are 501(c)3 tax-exempt in the US, aside from other <a href="http://www.spi-inc.org/projects/services/">benefits</a>. In the coming weeks and months we will be articulating what kind of objectives, platforms, and activities we can or should pursue, given our new status. I&#8217;ll communicate separately about that once it gets off the ground.</p>
<p>Finally, please join me in thanking Josh Berkus (SPI &#038; PostgreSQL) for shepherding our joining SPI all the way through. And please also join me in saying hi to the SPI community &#8211; as I have done earlier I&#8217;d like to encourage everyone to consider joining the SPI as well. It&#8217;s a friendly community, and I like to think we can enrich it.</p>
<p>This is a historic day for our organization. Have a drink tonight <img src='http://news.open-bio.org/news/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Cheers,</p>
<p>        -hilmar</p>
<p>Note: This post is based on an email sent yesterday to the <a href="http://lists.open-bio.org/mailman/listinfo/members">OBF member&#8217;s mailing list</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://news.open-bio.org/news/2012/10/obf-now-spi-associated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BioRuby 1.4.3 released</title>
		<link>http://news.open-bio.org/news/2012/08/bioruby-1-4-3-released/</link>
		<comments>http://news.open-bio.org/news/2012/08/bioruby-1-4-3-released/#comments</comments>
		<pubDate>Tue, 21 Aug 2012 16:47:56 +0000</pubDate>
		<dc:creator>Naohisa Goto</dc:creator>
				<category><![CDATA[BioRuby]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[OBF]]></category>
		<category><![CDATA[OBF Projects]]></category>

		<guid isPermaLink="false">http://news.open-bio.org/news/?p=971</guid>
		<description><![CDATA[We are pleased to announce the release of BioRuby 1.4.3. This new release fixes bugs existed in 1.4.2 and improves portability on JRuby and Rubinius. Here is a brief summary of changes. Bio::KEGG::KGML bug fixes and new class Bio::KEGG::KGML::Graphics for &#8230; <a href="http://news.open-bio.org/news/2012/08/bioruby-1-4-3-released/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>We are pleased to announce the release of <a href="http://bioruby.org/">BioRuby</a> 1.4.3. This new release fixes bugs existed in 1.4.2 and improves portability on JRuby and Rubinius.</p>
<p>Here is a brief summary of changes.</p>
<ul>
<li>Bio::KEGG::KGML bug fixes and new class Bio::KEGG::KGML::Graphics for storing a graphics element.</li>
<li>Many failures and errors running on JRuby and Rubinius are resolved.</li>
<li>Strange behavior related with “circular require” is fixed.</li>
<li>Fixed: Genomenet remote BLAST does not work.</li>
<li>Fixed: Bio::NucleicAcid.to_re(“s”) typo.</li>
<li>Fixed: Bio::EMBL#os raises RuntimeError.</li>
<li>Fixed: bin/bioruby: Failed to save object with error message &#8220;can’t convert Symbol into String&#8221; on Ruby 1.9.</li>
</ul>
<p>In addition, many changes have been made, including incompatible changes. For more information, see <a href="https://github.com/bioruby/bioruby/blob/1.4.3/RELEASE_NOTES.rdoc">RELEASE_NOTES.rdoc</a> and <a href="https://github.com/bioruby/bioruby/blob/1.4.3/ChangeLog">ChangeLog</a>.</p>
<p>The archive is available at: <a href="http://bioruby.org/archive/bioruby-1.4.3.tar.gz">http://bioruby.org/archive/bioruby-1.4.3.tar.gz</a><br />
Gem file is also available at:  <a href="http://bioruby.org/archive/gems/bio-1.4.3.gem">http://bioruby.org/archive/gems/bio-1.4.3.gem</a></p>
<p>We also put RubyGems pacakge at RubyGems.org and RubyForge. You can easily install by using RubyGems. First, check the version number by using search command:<br />
 % gem search &#8211;remote bio<br />
and find “bio (1.4.3)” in the list. Then,<br />
 % sudo gem install bio</p>
<p>Acknowledgments: Thanks to all persons reporting issues and/or submitting patches.</p>
<p>Hope you enjoy.</p>
]]></content:encoded>
			<wfw:commentRss>http://news.open-bio.org/news/2012/08/bioruby-1-4-3-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Travis-CI for Testing</title>
		<link>http://news.open-bio.org/news/2012/07/travis-ci-for-testing/</link>
		<comments>http://news.open-bio.org/news/2012/07/travis-ci-for-testing/#comments</comments>
		<pubDate>Mon, 30 Jul 2012 13:24:09 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[BioPerl]]></category>
		<category><![CDATA[Biopython]]></category>
		<category><![CDATA[BioRuby]]></category>
		<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[OBF]]></category>
		<category><![CDATA[OBF Projects]]></category>

		<guid isPermaLink="false">http://news.open-bio.org/news/?p=949</guid>
		<description><![CDATA[<a href="http://bioruby.org">BioRuby</a>, <a href="http://biopython.org">Biopython</a> and <a href="bioperl.org">BioPerl</a> are now using <a href="http://travis-ci.org">Travis-CI.org</a>, a hosted continuous integration service for the open source community, to run their unit tests automatically whenever their <a href="http://github.com">GitHub</a> repositories are updated. <a href="http://news.open-bio.org/news/2012/07/travis-ci-for-testing/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Earlier this year <a href="http://bioruby.org">BioRuby</a> and then <a href="http://biopython.org">Biopython</a> and <a href="http://bioperl.org">BioPerl</a> started using <a href="http://travis-ci.org">Travis-CI.org</a>, a hosted continuous integration service for the open source community, to run their unit tests automatically whenever their <a href="http://github.com">GitHub</a> repositories are updated:</p>
<ul>
<li><a href="http://travis-ci.org/bioruby/bioruby/"><img src="https://secure.travis-ci.org/bioruby/bioruby.png?branch=master" alt="BioRuby on Travis-CI.org" /></a> <a href="http://travis-ci.org/bioruby/bioruby/">BioRuby</a>
</li>
<li><a href="http://travis-ci.org/biopython/biopython/"><img src="https://secure.travis-ci.org/biopython/biopython.png?branch=master" alt="Biopython on Travis-CI.org" /></a> <a href="http://travis-ci.org/biopython/biopython/">Biopython</a>
</li>
<li><a href="http://travis-ci.org/bioperl/bioperl-live/"><img src="https://secure.travis-ci.org/bioperl/bioperl-live.png?branch=master" alt="BioPerl on Travis-CI.org" /></a> <a href="http://travis-ci.org/bioperl/bioperl-live/">BioPerl</a>
</li>
</ul>
<p>The BioRuby team are also using Travis-CI for automated testing of their new &#8216;plugin&#8217; ecosystem, BioRuby Gems, or <a href="http://www.biogems.info/">BioGems</a>.</p>
<p>Travis-CI gives us continuous testing, but for the moment only covers <a href="http://about.travis-ci.org/docs/user/ci-environment/">one operating system</a> (currently 32 bit Ubuntu Linux using Virtual Machines). This automated testing is therefore complementary to our existing <a href="http://testing.open-bio.org/">OBF BuildBot server</a> which aims to run nightly tests on volunteer developer machines setup to cover a broad range of operating systems and configurations.</p>
<p>However, Travis-CI are working on a new feature &#8211; <a href="http://about.travis-ci.org/blog/announcing-pull-request-support/">automatic testing of pull requests</a>, currently only available on a donation basis &#8211; which the OBF was happy to support.</p>
<p>What this means is that when a contributor has some code ready for integration, they can issue a <a href="https://help.github.com/articles/using-pull-requests/">GitHub pull request</a>, and then Travis-CI will automatically run the unit tests with those proposed changes. This is something that currently the core-developers would normally do manually as part of evaluating proposed changes, so having this happen automatically should be a big help.</p>
<p>We&#8217;re excited about making more use of Travis-CI for other <a href="http://www.open-bio.org/wiki/Projects">OBF projects</a>. Thus far we&#8217;ve been really impressed with Travis-CI.</p>
]]></content:encoded>
			<wfw:commentRss>http://news.open-bio.org/news/2012/07/travis-ci-for-testing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Biopython 1.60 released</title>
		<link>http://news.open-bio.org/news/2012/06/biopython-1-60-released/</link>
		<comments>http://news.open-bio.org/news/2012/06/biopython-1-60-released/#comments</comments>
		<pubDate>Mon, 25 Jun 2012 18:17:08 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Biopython]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[OBF]]></category>
		<category><![CDATA[OBF Projects]]></category>

		<guid isPermaLink="false">http://news.open-bio.org/news/?p=940</guid>
		<description><![CDATA[Source distributions and Windows installers for Biopython 1.60 are now available from the downloads page on the Biopython website and from the Python Package Index (PyPI). Platforms/Deployment We currently support Python 2.5, 2.6 and 2.7 and also test under Jython &#8230; <a href="http://news.open-bio.org/news/2012/06/biopython-1-60-released/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Source distributions and Windows installers for <strong>Biopython 1.60</strong> are now available from the <a href="http://biopython.org/wiki/Download">downloads page</a> on the <a href="http://biopython.org/">Biopython website</a> and from the <a href="http://pypi.python.org/pypi/biopython">Python Package Index (PyPI)</a>.</p>
<h3>Platforms/Deployment</h3>
<p>We currently support Python 2.5, 2.6 and 2.7 and also test under <a href="http://www.jython.org/">Jython</a> 2.5 and <a href="http://pypy.org/">PyPy</a> 1.9 (which does not cover NumPy or our C extensions). Please note that Python 2.4 or earlier is not supported.</p>
<p>Most functionality is also working under Python 3.1 and 3.2 (including modules using NumPy). We are now encouraging early adopters to help beta testing on these platforms, and have included a &#8216;beta&#8217; installer for Python 3.2 under 32-bit Windows.</p>
<h3>Features</h3>
<p>New module <code>Bio.bgzf</code> supports reading and writing BGZF files (Blocked GNU Zip Format), a variant of GZIP with efficient random access, most commonly used as part of the <a href="http://samtools.sourceforge.net/">BAM file format</a> and in <a href="http://samtools.sourceforge.net/tabix.shtml">tabix</a>. This uses Python&#8217;s <code>zlib</code> library internally, and provides a simple interface like Python&#8217;s gzip library. Using this the <code>Bio.SeqIO</code> indexing functions now support BGZF compressed sequence files. See this blog post for more background on <a href="http://blastedbio.blogspot.com/2011/11/bgzf-blocked-bigger-better-gzip.html">BGZF and SeqIO</a>.</p>
<p>The GenBank/EMBL parser will now give a warning on unrecognized feature locations and continue parsing (leaving the feature&#8217;s location as None). Previously it would abort with an exception, which was often unhelpful.</p>
<p>The <code>Bio.PDB.MMCIFParser</code> is now compiled by default (but is still not available under Jython, PyPy or Python 3).</p>
<p>The SFF parser in <code>Bio.SeqIO</code> now decodes Roche 454 &#8216;universal accession number&#8217; 14 character read names, which encode the timestamp of the run, the region the read came from, and the location of the well.</p>
<p>In the Phylo module, the &#8220;draw&#8221; function for plotting tree objects has become much more flexible, with improved support for <a href="http://matplotlib.sourceforge.net/">matplotlib</a> conventions and new parameters for specifying branch and taxon labels. Writing in the <a href="http://www.phyloxml.org/">PhyloXML</a> format has been updated to more closely match the output of other programs. A wrapper for the program <a href="http://sco.h-its.org/exelixis/software.html">RAxML</a> has been added under <code>Bio.Phylo.Applications</code>, alongside the existing wrapper for PhyML.</p>
<p>Additionally there have been other minor bug fixes and more unit tests.</p>
<h3>Contributors</h3>
<p>Many thanks to the Biopython developers and community for making this release<br />
possible, especially the following contributors:</p>
<ul>
<li>Brandon Invergo</li>
<li>Eric Talevich</li>
<li>Jeff Hussmann (first contribution)</li>
<li>John Comeau (first contribution)</li>
<li>Kamil Slowikowski (first contribution)</li>
<li>Kevin Jacobs</li>
<li>Lenna Peterson (first contribution)</li>
<li>Matt Fenwick (first contribution)</li>
<li>Peter Cock</li>
<li>Paul T. Bathen</li>
<li>Wibowo Arindrarto</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://news.open-bio.org/news/2012/06/biopython-1-60-released/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>BioJava 3.0.4 released</title>
		<link>http://news.open-bio.org/news/2012/05/biojava-3-0-4-released/</link>
		<comments>http://news.open-bio.org/news/2012/05/biojava-3-0-4-released/#comments</comments>
		<pubDate>Wed, 23 May 2012 16:18:11 +0000</pubDate>
		<dc:creator>andreas</dc:creator>
				<category><![CDATA[BioJava]]></category>
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://news.open-bio.org/news/?p=936</guid>
		<description><![CDATA[BioJava 3.0.4 has been released and is available from http://www.biojava.org/wiki/BioJava:Download as well as from the BioJava maven repository at http://www.biojava.org/download/maven/ . - This is mainly a bug fix release addressing issues with the protein structure and disorder modules - One &#8230; <a href="http://news.open-bio.org/news/2012/05/biojava-3-0-4-released/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>BioJava 3.0.4 has been released and is available from<br />
<a href="http://www.biojava.org/wiki/BioJava:Download">http://www.biojava.org/wiki/BioJava:Download</a> as well as from the<br />
BioJava maven repository at <a href="http://www.biojava.org/download/maven/">http://www.biojava.org/download/maven/</a> .</p>
<p>- This is mainly a bug fix release addressing issues with the protein<br />
structure and disorder modules</p>
<p>- One new feature: SCOP data can now be accessed from either the<br />
<a href="http://scop.mrc-lmb.cam.ac.uk/">original SCOP</a> site in the UK (v. 1.75) or <a href="http://scop.berkeley.edu/">from Berkeley</a> (v. 1.75A) .</p>
]]></content:encoded>
			<wfw:commentRss>http://news.open-bio.org/news/2012/05/biojava-3-0-4-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Students selected for GSoC</title>
		<link>http://news.open-bio.org/news/2012/04/students-selected-for-gsoc/</link>
		<comments>http://news.open-bio.org/news/2012/04/students-selected-for-gsoc/#comments</comments>
		<pubDate>Tue, 24 Apr 2012 09:08:35 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[BioLib]]></category>
		<category><![CDATA[Biopython]]></category>
		<category><![CDATA[BioRuby]]></category>
		<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Google Summer of Code]]></category>
		<category><![CDATA[OBF]]></category>
		<category><![CDATA[OBF Projects]]></category>

		<guid isPermaLink="false">http://news.open-bio.org/news/?p=923</guid>
		<description><![CDATA[Hello all, I&#8217;m very pleased and excited to announce that the Open Bioinformatics Foundation has selected 5 very capable students to work on OBF projects this summer as part of the Google Summer of Code (GSoC) program. The accepted students, &#8230; <a href="http://news.open-bio.org/news/2012/04/students-selected-for-gsoc/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Hello all,</p>
<p>I&#8217;m very pleased and excited to announce that the Open Bioinformatics Foundation has selected 5 very capable students to work on OBF projects this summer as part of the <a href="http://code.google.com/soc/">Google Summer of Code (GSoC) program</a>.</p>
<p>The accepted students, their projects, and their mentors (in alphabetical order):</p>
<ul>
<li><strong><a href="http://bow.web.id/blog/tag/gsoc/">Wibowo Arindrarto</a></strong>:<br /><em>SearchIO Implementation in Biopython</em><br />mentored by Peter Cock</li>
<li><strong><a href="http://arklenna.tumblr.com/tagged/gsoc2012">Lenna Peterson</a></strong>:<br /><em>Diff My DNA: Development of a Genomic Variant Toolkit for Biopython</em><br />mentored by Brad Chapman, Reece Hart, James Casbon</li>
<li><strong><a href="http://blog.mpthecoder.com/tagged/gsoc">Marjan Povolni</a></strong>:<br /><em>The worlds fastest parallelized GFF3/GTF parser in D, and an interfacing biogem plugin for Ruby</em><br />mentored by Pjotr Prins, Francesco Strozzi, Raoul Bonnal</li>
<li><strong><a href="http://lomereiter.wordpress.com/tag/gsoc/">Artem Tarasov</a></strong>:<br /><em>Fast parallelized GFF3/GTF parser in C++, with Ruby FFI bindings</em><br />mentored by Pjotr Prins, Francesco Strozzi, Raoul Bonnal</li>
<li><strong><a href="http://csw.github.com/bioruby-maf/">Clayton Wheeler</a></strong>:<br /><em>Multiple Alignment Format parser for BioRuby</em><br />mentored by Francesco Strozzi and Raoul Bonnal</li>
</ul>
<p>As in every year, we received many great applications and ideas. However, funding and mentor resources are limited, and we were not able to accept as many as we would have liked.  Our deepest thanks to all the students who applied: we sincerely appreciate the time and effort you put into your applications, and hope you will still consider being a part of the OBF&#8217;s open source projects, even without Google funding.  I speak for myself and all of the mentors who read and scored applications when I say that we were truly honored by the number and quality of the applications we received.</p>
<p>For the accepted students: congratulations!  You have risen to the top of a very competitive application process.  Now it&#8217;s time to &#8220;put your money where your mouth is&#8221;, as the saying goes.  Let&#8217;s get out there and write some great code this summer!</p>
<p>Best regards,</p>
<p>Robert Buels<br />OBF GSoC 2012 Organization Administrator</p>
]]></content:encoded>
			<wfw:commentRss>http://news.open-bio.org/news/2012/04/students-selected-for-gsoc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Announcing OBF Summer of Code 2012</title>
		<link>http://news.open-bio.org/news/2012/03/obf-summer-of-code-2012/</link>
		<comments>http://news.open-bio.org/news/2012/03/obf-summer-of-code-2012/#comments</comments>
		<pubDate>Sun, 25 Mar 2012 21:27:05 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Google Summer of Code]]></category>
		<category><![CDATA[OBF]]></category>
		<category><![CDATA[OBF Projects]]></category>

		<guid isPermaLink="false">http://news.open-bio.org/news/?p=916</guid>
		<description><![CDATA[Applications due 19:00 UTC, April 6, 2012. http://www.open-bio.org/wiki/Google_Summer_of_Code The Open Bioinformatics Foundation (OBF) Summer of Code program provides a unique opportunity for undergraduate, masters, and PhD students to obtain hands-on experience writing and extending open-source software for bioinformatics under the &#8230; <a href="http://news.open-bio.org/news/2012/03/obf-summer-of-code-2012/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Applications due 19:00 UTC, April 6, 2012.<br />
<a href="http://www.open-bio.org/wiki/Google_Summer_of_Code">http://www.open-bio.org/wiki/Google_Summer_of_Code</a></p>
<p>The Open Bioinformatics Foundation (OBF) Summer of Code program provides a unique opportunity for undergraduate, masters, and PhD students to obtain hands-on experience writing and extending open-source software for bioinformatics under the mentorship of experienced developers from around the world. The program is the participation of the Open Bioinformatics Foundation (OBF) as a mentoring organization in the <a href="http://code.google.com/soc/">Google Summer of Code (GSoC)</a>.</p>
<p>Students successfully completing the 3 month program receive a $5,000 USD stipend, and may work entirely from their home or home institution.  Participation is open to students from any country in the world except countries subject to US trade restrictions.  Each student will have at least one dedicated mentor to show them the ropes and help them complete their project.</p>
<p>The Open Bioinformatics Foundation is particularly seeking students interested in both bioinformatics (computational biology) and software development. Some <a href="http://www.open-bio.org/wiki/Google_Summer_of_Code">initial project ideas are listed on the website</a>. These range from sequence search I/O in <a href="http://biopython.org/wiki/Google_Summer_of_Code">Biopython</a> to lightweight sequence objects and lazy parsing in <a href="http://bioperl.org/wiki/Google_Summer_of_Code">BioPerl</a>, a next-generation <a href="http://www.bioruby.org/wiki/Google_Summer_of_Code">BioRuby</a> interface to Ensembl to developing cloud-optimized versions of <a href="http://biojava.org/wiki/Google_Summer_of_Code">BioJava</a> modules. All project ideas are flexible and many can be adjusted in scope to match the skills of the student. We also particularly welcome and encourage students proposing their own project ideas; historically some of the most successful Summer of Code projects are ones proposed by the students themselves.</p>
<p><strong>TO APPLY:</strong> Apply online at the Google Summer of Code website (http://socghop.appspot.com/), where you will also find GSoC program rules and eligibility requirements. The 12-day application period for students runs from Monday, March 26 through Friday, April 6th, 2012.</p>
<p><strong>INQUIRIES:</strong></p>
<p>We strongly encourage all interested students to get in touch with us with their ideas as early on as possible.  See the OBF GSoC page for contact details.</p>
<p>2012 OBF Summer of Code:<br />
<a href="http://www.open-bio.org/wiki/Google_Summer_of_Code">http://www.open-bio.org/wiki/Google_Summer_of_Code</a></p>
<p>Google Summer of Code FAQ:<br />
<a href="http://www.google-melange.com/document/show/gsoc_program/google/gsoc2012/faqs">http://www.google-melange.com/document/show/gsoc_program/google/gsoc2012/faqs</a></p>
<p>Rob Buels<br />
OBF GSoC 2012 Admin</p>
]]></content:encoded>
			<wfw:commentRss>http://news.open-bio.org/news/2012/03/obf-summer-of-code-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
