
<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://biopython.org/w/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://biopython.org/w/api.php?action=feedcontributions&amp;user=Jason&amp;feedformat=atom</id>
		<title>Biopython - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://biopython.org/w/api.php?action=feedcontributions&amp;user=Jason&amp;feedformat=atom"/>
		<link rel="alternate" type="text/html" href="http://biopython.org/wiki/Special:Contributions/Jason"/>
		<updated>2013-05-23T05:15:09Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.18.1</generator>

	<entry>
		<id>http://biopython.org/wiki/Talk:Biopython</id>
		<title>Talk:Biopython</title>
		<link rel="alternate" type="text/html" href="http://biopython.org/wiki/Talk:Biopython"/>
				<updated>2012-11-04T00:46:48Z</updated>
		
		<summary type="html">&lt;p&gt;Jason: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Testing edit access to biopython wiki -- --[[User:Chrisdag|Chrisdag]] 08:16, 1 July 2008 (EDT)&lt;br /&gt;
Testing x2 --[[User:Jason|jason]] 00:46, 4 November 2012 (UTC)&lt;/div&gt;</summary>
		<author><name>Jason</name></author>	</entry>

	<entry>
		<id>http://biopython.org/wiki/SeqIO_dev</id>
		<title>SeqIO dev</title>
		<link rel="alternate" type="text/html" href="http://biopython.org/wiki/SeqIO_dev"/>
				<updated>2007-04-13T20:41:19Z</updated>
		
		<summary type="html">&lt;p&gt;Jason: /* Possible additional formats */ -- updated links with interwiki prefixes to bioperl site&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is aimed at any developers or coders interesting in understanding or extending the new Sequence Input/Output interface for BioPython, [[SeqIO]].&lt;br /&gt;
&lt;br /&gt;
The code has now been checked into [http://cvs.biopython.org/cgi-bin/viewcvs/viewcvs.cgi/biopython/Bio/SeqIO/?cvsroot=biopython#dirlist CVS]. Related [http://bugzilla.open-bio.org/show_bug.cgi?id=2059 Bug 2059] has been resolved. &lt;br /&gt;
&lt;br /&gt;
The code is already available in BioPython 1.43.&lt;br /&gt;
&lt;br /&gt;
== Reading new file formats ==&lt;br /&gt;
&lt;br /&gt;
'''Note:''' The details are still subject to change&lt;br /&gt;
&lt;br /&gt;
To add support for reading a new file format, you must implement an iterator that expects a just file handle and returns SeqRecord objects.  You may do this using:&lt;br /&gt;
&lt;br /&gt;
* An iterator class subclassing something from Bio.SeqIO.Interfaces&lt;br /&gt;
* A generator function (using the yield keyword; suitable for simple formats)&lt;br /&gt;
* An ordinary function which returns an iterator.  For example, you could build a list of SeqRecords and then turn it into an iterator using the iter() function.&lt;br /&gt;
&lt;br /&gt;
You may accept additional ''optional'' arguments (an alphabet for example).  However there ''must'' be one and only one required argument (the input file handle).&lt;br /&gt;
&lt;br /&gt;
What you use as the SeqRecord's id, name and description will depend on the file format.  Ideally you would use the accesion number for the id.  This id should also be unique for each record (unless the records in the file are in themselves ambiguous).&lt;br /&gt;
&lt;br /&gt;
When storing any annotations in the record's annotations dictionary follow the defacto standard laid down by the GenBank parser... I should try and document this more.&lt;br /&gt;
&lt;br /&gt;
If the supplied file seems to be invalid, raise a SyntaxError exception.&lt;br /&gt;
&lt;br /&gt;
== Writing new file formats ==&lt;br /&gt;
&lt;br /&gt;
'''Note:''' The details are still subject to change&lt;br /&gt;
&lt;br /&gt;
To add support for writing a new file format you should write a sub class of one of the writer objects in Bio.SeqIO.Interfaces&lt;br /&gt;
&lt;br /&gt;
Then, the new format must be added to the relevant dictionary mappings in Bio/SeqIO/__init__.py so that the '''Bio.SeqIO.parse''' and '''Bio.SeqIO.write''' functions are aware of it.&lt;br /&gt;
&lt;br /&gt;
If the supplied records cannot be written to this file format, raise a ValueError exception.  Where appropriate, please use the following wording:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;python&amp;gt;&lt;br /&gt;
raise ValueError(&amp;quot;Must have at least one sequence&amp;quot;)&lt;br /&gt;
raise ValueError(&amp;quot;Sequences must all be the same length&amp;quot;)&lt;br /&gt;
raise ValueError(&amp;quot;Duplicate record identifier: %s&amp;quot; % ...)&lt;br /&gt;
...&lt;br /&gt;
&amp;lt;/python&amp;gt;&lt;br /&gt;
&lt;br /&gt;
ToDo - Defined standard exceptions in Bio.SeqIO itself?&lt;br /&gt;
&lt;br /&gt;
== Possible additional formats ==&lt;br /&gt;
&lt;br /&gt;
There are existing parsers in BioPython for the following file formats, which could be integrated into Bio.SeqIO if appropriate.&lt;br /&gt;
&lt;br /&gt;
=== NBRF / PIR format ===&lt;br /&gt;
&lt;br /&gt;
Bio.NBRF has a Martel parser for [[bp:PIR sequence format|PIR sequence format]], which is similar to the [[bp:FASTA sequence format|FASTA format]].  It would need addition work to return SeqRecords.  It might be easier to extend to reuse the Bio.SeqIO fasta code instead.&lt;br /&gt;
&lt;br /&gt;
There is also [http://www.psc.edu/general/software/packages/seq-intro/nbrffile.html PSC documentation].&lt;br /&gt;
&lt;br /&gt;
=== KEGG format ===&lt;br /&gt;
&lt;br /&gt;
Can Bio.KEGG parse files in [[bp:KEGG sequence format|KEGG format]]?&lt;br /&gt;
&lt;br /&gt;
=== PHD sequencing files from PHRED ===&lt;br /&gt;
&lt;br /&gt;
Bio.Sequencing.PHD has a Martel parser for [[bp:PHD sequence format|PHD format]], also used by the tools PHRAP and CONSED.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== MASE alignment format ===&lt;br /&gt;
&lt;br /&gt;
Bio.IntelliGenetics seems to use Martel parse MASE format files into its own record object.  It could be extended to return SeqRecord objects.  See:&lt;br /&gt;
&lt;br /&gt;
http://pbil.univ-lyon1.fr/help/formats.html&lt;br /&gt;
&lt;br /&gt;
=== MEME format ===&lt;br /&gt;
&lt;br /&gt;
Bio.MEME has a parser for this file format, which at first glance looks like it could be treated like an alignment format.&lt;br /&gt;
&lt;br /&gt;
http://meme.sdsc.edu&lt;br /&gt;
&lt;br /&gt;
=== BLAST results ===&lt;br /&gt;
&lt;br /&gt;
Pairwise alignments from the BLAST suite could be turned into two SeqRecord objects with gapped sequences.  Is this useful?&lt;br /&gt;
&lt;br /&gt;
=== COMPASS pairwise alignment format ===&lt;br /&gt;
&lt;br /&gt;
Bio.Compass can parse the pairwise alignments from COMPASS.  The output is similar to BLAST in many ways.  Again, is getting the results as SeqRecord objects useful?&lt;/div&gt;</summary>
		<author><name>Jason</name></author>	</entry>

	<entry>
		<id>http://biopython.org/wiki/SeqIO_dev</id>
		<title>SeqIO dev</title>
		<link rel="alternate" type="text/html" href="http://biopython.org/wiki/SeqIO_dev"/>
				<updated>2007-04-13T20:35:54Z</updated>
		
		<summary type="html">&lt;p&gt;Jason: /* NBRF / PIR format */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is aimed at any developers or coders interesting in understanding or extending the new Sequence Input/Output interface for BioPython, [[SeqIO]].&lt;br /&gt;
&lt;br /&gt;
The code has now been checked into [http://cvs.biopython.org/cgi-bin/viewcvs/viewcvs.cgi/biopython/Bio/SeqIO/?cvsroot=biopython#dirlist CVS]. Related [http://bugzilla.open-bio.org/show_bug.cgi?id=2059 Bug 2059] has been resolved. &lt;br /&gt;
&lt;br /&gt;
The code is already available in BioPython 1.43.&lt;br /&gt;
&lt;br /&gt;
== Reading new file formats ==&lt;br /&gt;
&lt;br /&gt;
'''Note:''' The details are still subject to change&lt;br /&gt;
&lt;br /&gt;
To add support for reading a new file format, you must implement an iterator that expects a just file handle and returns SeqRecord objects.  You may do this using:&lt;br /&gt;
&lt;br /&gt;
* An iterator class subclassing something from Bio.SeqIO.Interfaces&lt;br /&gt;
* A generator function (using the yield keyword; suitable for simple formats)&lt;br /&gt;
* An ordinary function which returns an iterator.  For example, you could build a list of SeqRecords and then turn it into an iterator using the iter() function.&lt;br /&gt;
&lt;br /&gt;
You may accept additional ''optional'' arguments (an alphabet for example).  However there ''must'' be one and only one required argument (the input file handle).&lt;br /&gt;
&lt;br /&gt;
What you use as the SeqRecord's id, name and description will depend on the file format.  Ideally you would use the accesion number for the id.  This id should also be unique for each record (unless the records in the file are in themselves ambiguous).&lt;br /&gt;
&lt;br /&gt;
When storing any annotations in the record's annotations dictionary follow the defacto standard laid down by the GenBank parser... I should try and document this more.&lt;br /&gt;
&lt;br /&gt;
If the supplied file seems to be invalid, raise a SyntaxError exception.&lt;br /&gt;
&lt;br /&gt;
== Writing new file formats ==&lt;br /&gt;
&lt;br /&gt;
'''Note:''' The details are still subject to change&lt;br /&gt;
&lt;br /&gt;
To add support for writing a new file format you should write a sub class of one of the writer objects in Bio.SeqIO.Interfaces&lt;br /&gt;
&lt;br /&gt;
Then, the new format must be added to the relevant dictionary mappings in Bio/SeqIO/__init__.py so that the '''Bio.SeqIO.parse''' and '''Bio.SeqIO.write''' functions are aware of it.&lt;br /&gt;
&lt;br /&gt;
If the supplied records cannot be written to this file format, raise a ValueError exception.  Where appropriate, please use the following wording:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;python&amp;gt;&lt;br /&gt;
raise ValueError(&amp;quot;Must have at least one sequence&amp;quot;)&lt;br /&gt;
raise ValueError(&amp;quot;Sequences must all be the same length&amp;quot;)&lt;br /&gt;
raise ValueError(&amp;quot;Duplicate record identifier: %s&amp;quot; % ...)&lt;br /&gt;
...&lt;br /&gt;
&amp;lt;/python&amp;gt;&lt;br /&gt;
&lt;br /&gt;
ToDo - Defined standard exceptions in Bio.SeqIO itself?&lt;br /&gt;
&lt;br /&gt;
== Possible additional formats ==&lt;br /&gt;
&lt;br /&gt;
There are existing parsers in BioPython for the following file formats, which could be integrated into Bio.SeqIO if appropriate.&lt;br /&gt;
&lt;br /&gt;
=== NBRF / PIR format ===&lt;br /&gt;
&lt;br /&gt;
Bio.NBRF has a Martel parser for this file format, which is similar to the FASTA format.  It would need addition work to return SeqRecords.  It might be easier to extend to reuse the Bio.SeqIO fasta code instead.&lt;br /&gt;
&lt;br /&gt;
* BioPerl description of [[bp:PIR_sequence_format|PIR sequence format]] &lt;br /&gt;
* [http://www.psc.edu/general/software/packages/seq-intro/nbrffile.html PSC documentation]&lt;br /&gt;
&lt;br /&gt;
=== KEGG format ===&lt;br /&gt;
&lt;br /&gt;
Can Bio.KEGG parse these files?&lt;br /&gt;
&lt;br /&gt;
http://www.bioperl.org/wiki/KEGG_sequence_format&lt;br /&gt;
&lt;br /&gt;
=== PHD sequencing files from PHRED ===&lt;br /&gt;
&lt;br /&gt;
Bio.Sequencing.PHD has a Martel parser for this file format, also used by the tools PHRAP and CONSED.&lt;br /&gt;
&lt;br /&gt;
http://www.bioperl.org/wiki/PHD_sequence_format&lt;br /&gt;
&lt;br /&gt;
=== MASE alignment format ===&lt;br /&gt;
&lt;br /&gt;
Bio.IntelliGenetics seems to use Martel parse MASE format files into its own record object.  It could be extended to return SeqRecord objects.  See:&lt;br /&gt;
&lt;br /&gt;
http://pbil.univ-lyon1.fr/help/formats.html&lt;br /&gt;
&lt;br /&gt;
=== MEME format ===&lt;br /&gt;
&lt;br /&gt;
Bio.MEME has a parser for this file format, which at first glance looks like it could be treated like an alignment format.&lt;br /&gt;
&lt;br /&gt;
http://meme.sdsc.edu&lt;br /&gt;
&lt;br /&gt;
=== BLAST results ===&lt;br /&gt;
&lt;br /&gt;
Pairwise alignments from the BLAST suite could be turned into two SeqRecord objects with gapped sequences.  Is this useful?&lt;br /&gt;
&lt;br /&gt;
=== COMPASS pairwise alignment format ===&lt;br /&gt;
&lt;br /&gt;
Bio.Compass can parse the pairwise alignments from COMPASS.  The output is similar to BLAST in many ways.  Again, is getting the results as SeqRecord objects useful?&lt;/div&gt;</summary>
		<author><name>Jason</name></author>	</entry>

	<entry>
		<id>http://biopython.org/wiki/News</id>
		<title>News</title>
		<link rel="alternate" type="text/html" href="http://biopython.org/wiki/News"/>
				<updated>2006-06-05T15:21:46Z</updated>
		
		<summary type="html">&lt;p&gt;Jason: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Our News/blog server is available at [http://biopython.org/news/ biopython.org/news/].&lt;br /&gt;
&lt;br /&gt;
There is also a (currently separate) news server for all the [[obf:OBF|OBF]] projects at [http://news.open-bio.org news.open-bio.org].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; width=&amp;quot;800px&amp;quot; &lt;br /&gt;
|- style=&amp;quot;background-color:#ccccff; text-align:center&amp;quot;&lt;br /&gt;
!  Biopython News&lt;br /&gt;
|-&lt;br /&gt;
| [http://biopython.org/news/feed RSS feed]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;rss&amp;gt;http://biopython.org/news/feed|date|charset=utf-8|max=10&amp;lt;/rss&amp;gt;&lt;br /&gt;
|- style=&amp;quot;background-color:#ccccff; text-align:center&amp;quot;&lt;br /&gt;
! Recent [[Mailing lists|Mailing list]] posts&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Jason</name></author>	</entry>

	<entry>
		<id>http://biopython.org/wiki/MediaWiki:Sidebar</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="http://biopython.org/wiki/MediaWiki:Sidebar"/>
				<updated>2006-06-05T15:18:22Z</updated>
		
		<summary type="html">&lt;p&gt;Jason: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* navigation&lt;br /&gt;
** Biopython|mainpage&lt;br /&gt;
** Download|Download&lt;br /&gt;
** documentation|Documentation&lt;br /&gt;
** mailing lists|Mailing lists&lt;br /&gt;
** News|News&lt;br /&gt;
** http://bugzilla.open-bio.org/|Bugs&lt;br /&gt;
** CVS|CVS&lt;br /&gt;
** participants|Participants&lt;br /&gt;
** scriptcentral|ScriptCentral&lt;br /&gt;
** http://search.open-bio.org/cgi-bin/obf-search.cgi|Search&lt;br /&gt;
** recentchanges-url|recentchanges&lt;br /&gt;
** randompage-url|randompage&lt;br /&gt;
** helppage|help&lt;/div&gt;</summary>
		<author><name>Jason</name></author>	</entry>

	<entry>
		<id>http://biopython.org/wiki/MediaWiki:Sidebar</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="http://biopython.org/wiki/MediaWiki:Sidebar"/>
				<updated>2006-06-05T15:18:13Z</updated>
		
		<summary type="html">&lt;p&gt;Jason: remove the donations page and upcase Do&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* navigation&lt;br /&gt;
** Biopython|mainpage&lt;br /&gt;
** download|Download&lt;br /&gt;
** documentation|Documentation&lt;br /&gt;
** mailing lists|Mailing lists&lt;br /&gt;
** News|News&lt;br /&gt;
** http://bugzilla.open-bio.org/|Bugs&lt;br /&gt;
** CVS|CVS&lt;br /&gt;
** participants|Participants&lt;br /&gt;
** scriptcentral|ScriptCentral&lt;br /&gt;
** http://search.open-bio.org/cgi-bin/obf-search.cgi|Search&lt;br /&gt;
** recentchanges-url|recentchanges&lt;br /&gt;
** randompage-url|randompage&lt;br /&gt;
** helppage|help&lt;/div&gt;</summary>
		<author><name>Jason</name></author>	</entry>

	<entry>
		<id>http://biopython.org/wiki/Documentation</id>
		<title>Documentation</title>
		<link rel="alternate" type="text/html" href="http://biopython.org/wiki/Documentation"/>
				<updated>2006-06-05T15:14:38Z</updated>
		
		<summary type="html">&lt;p&gt;Jason: /* Papers */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==== Documentation ====&lt;br /&gt;
&lt;br /&gt;
* Installation instructions cover the installation of Python itself, the Biopython dependencies, and Biopython itself. &lt;br /&gt;
:[http://biopython.org/DIST/docs/install/Installation.html HTML] | [http://biopython.org/DIST/docs/install/Installation.pdf PDF]&lt;br /&gt;
* The Biopython Tutorial and Cookbook contains the main bulk of Biopython documentation. It provides information to get you started with Biopython, in addition to specific documentation on a number of modules. &lt;br /&gt;
:[http://biopython.org/DIST/docs/tutorial/Tutorial.html HTML] | [http://biopython.org/DIST/docs/tutorial/Tutorial.pdf PDF]&lt;br /&gt;
* Documentation for the Biopython interfaces to BioSQL cover installing Python database adaptors and basic usage of BioSQL. &lt;br /&gt;
:[http://biopython.org/DIST/docs/biosql/python_biosql_basic.html HTML] | [http://biopython.org/DIST/docs/biosql/python_biosql_basic.pdf PDF]&lt;br /&gt;
* Documentation for the cluster module in Biopython. This describes the underlying C library and the Python interface. &lt;br /&gt;
:[http://biopython.org/DIST/docs/cluster/cluster.pdf PDF]&lt;br /&gt;
* Cookbook-style documentation:&lt;br /&gt;
:*Converting GenBank (and other formats) to Fasta. &lt;br /&gt;
::[http://biopython.org/DIST/docs/cookbook/genbank_to_fasta.html HTML] | [http://biopython.org/DIST/docs/cookbook/genbank_to_fasta.pdf PDF]&lt;br /&gt;
:*Writing Tests for Biopython. &lt;br /&gt;
::[http://biopython.org/DIST/docs/cookbook/biopython_test.html HTML] | [http://biopython.org/DIST/docs/cookbook/biopython_test.pdf PDF]&lt;br /&gt;
:*Logistic Regression supervised learning. &lt;br /&gt;
::[http://biopython.org/DIST/docs/cookbook/LogisticRegression.html HTML] | [http://biopython.org/DIST/docs/cookbook/LogisticRegression.pdf PDF]&lt;br /&gt;
:*The Biopython Structural Bioinformatics FAQ. &lt;br /&gt;
::[http://biopython.org/DIST/docs/cookbook/biopdb_faq.pdf PDF]&lt;br /&gt;
:*Working with restriction enzymes. &lt;br /&gt;
::[http://biopython.org/DIST/docs/cookbook/Restriction.html HTML]&lt;br /&gt;
&lt;br /&gt;
==== API Documentation ====&lt;br /&gt;
&lt;br /&gt;
* Documentation for Biopython modules is generated directly from source code comments using [http://epydoc.sourceforge.net/ Epydoc].&lt;br /&gt;
:[http://biopython.org/DIST/docs/api/public/trees.html HTML]&lt;br /&gt;
&lt;br /&gt;
==== Online Course Notes ====&lt;br /&gt;
&lt;br /&gt;
* Andrew Dalke taught an introduction to programming for Bioinformatics in Python class at the National Bioinformatics Network in South Africa.&lt;br /&gt;
:http://www.dalkescientific.com/writings/NBN/&lt;br /&gt;
* Katja Schuerer and Catherine Letondal teach a Bioinformatics course in Python at the Pasteur Institute.&lt;br /&gt;
:http://www.pasteur.fr/recherche/unites/sis/formation/python/&lt;br /&gt;
* Ravinder Singh and Scott Kelley teach a Bioinformatics course using Biopython at the University of Colorado.&lt;br /&gt;
:http://mcdb.colorado.edu/courses/6440/index.html&lt;br /&gt;
* Katja Schuerer, Catherine Letondal and Eric Deveaud have an online course that covers getting started in programming with Python. It's aimed at biologists that want to learn programming.&lt;br /&gt;
:http://www.pasteur.fr/formation/infobio/python/&lt;br /&gt;
&lt;br /&gt;
==== Papers ====&lt;br /&gt;
&lt;br /&gt;
*Thomas wrote an applications note&amp;lt;cite&amp;gt;Hamelryck&amp;lt;/cite&amp;gt; for Bioinformatics about the Biopython PDB parser and related code dealing with crystal structures.&lt;br /&gt;
&amp;lt;biblio&amp;gt;&lt;br /&gt;
#Hamelryck pmid=14630660&lt;br /&gt;
&amp;lt;/biblio&amp;gt;&lt;br /&gt;
*Brad and Jeff wrote a paper for the ACM SIG-BIO newsletter back in August of 2000.&lt;br /&gt;
:[http://biopython.org/DIST/docs/acm/ACMbiopy.html HTML] | [http://biopython.org/DIST/docs/acm/ACMbiopy.pdf PDF]&lt;br /&gt;
&lt;br /&gt;
==== Presentations ====&lt;br /&gt;
&lt;br /&gt;
* March 2004 presentation at Exelixis about Biopython. Includes code examples with Biopython libraries and Martel.&lt;br /&gt;
:[http://biopython.org/DIST/docs/presentations/biopython_exelixis.pdf PDF] | [http://biopython.org/DIST/docs/presentations/biopython_exelixis.tar.gz tarball with LaTeX source]&lt;br /&gt;
* BOSC 2003 presentation about Biopython and using it for Laboratory Analysis Pipelines.&lt;br /&gt;
:[http://biopython.org/DIST/docs/presentations/bosc_biopython.pdf PDF] | [http://biopython.org/DIST/docs/presentations/bosc_biopython.tar.gz tarball with LaTeX source]&lt;br /&gt;
* General talk about scripting with Biopython based example of a primer design program.&lt;br /&gt;
:[http://biopython.org/DIST/docs/presentations/scripting.pdf PDF] | [http://biopython.org/DIST/docs/presentations/scripting.tar.gz tarball with LaTeX source]&lt;br /&gt;
* Talk about Python and Biopython with an emphasis on teaching the design goals of Biopython.&lt;br /&gt;
:[http://biopython.org/DIST/docs/presentations/biopython.pdf PDF] | [http://biopython.org/DIST/docs/presentations/biopy_group.tar.gz tarball with LaTeX source]&lt;br /&gt;
&lt;br /&gt;
==== Documentation for Developers ====&lt;br /&gt;
&lt;br /&gt;
* Details about the biopython.org [[website]].&lt;br /&gt;
* How to [[Contributing|contribute code]] to Biopython.&lt;br /&gt;
* Instructions for [[building a release]] of Biopython.&lt;/div&gt;</summary>
		<author><name>Jason</name></author>	</entry>

	<entry>
		<id>http://biopython.org/wiki/Documentation</id>
		<title>Documentation</title>
		<link rel="alternate" type="text/html" href="http://biopython.org/wiki/Documentation"/>
				<updated>2006-06-05T15:13:04Z</updated>
		
		<summary type="html">&lt;p&gt;Jason: /* Documentation for Developers */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==== Documentation ====&lt;br /&gt;
&lt;br /&gt;
* Installation instructions cover the installation of Python itself, the Biopython dependencies, and Biopython itself. &lt;br /&gt;
:[http://biopython.org/DIST/docs/install/Installation.html HTML] | [http://biopython.org/DIST/docs/install/Installation.pdf PDF]&lt;br /&gt;
* The Biopython Tutorial and Cookbook contains the main bulk of Biopython documentation. It provides information to get you started with Biopython, in addition to specific documentation on a number of modules. &lt;br /&gt;
:[http://biopython.org/DIST/docs/tutorial/Tutorial.html HTML] | [http://biopython.org/DIST/docs/tutorial/Tutorial.pdf PDF]&lt;br /&gt;
* Documentation for the Biopython interfaces to BioSQL cover installing Python database adaptors and basic usage of BioSQL. &lt;br /&gt;
:[http://biopython.org/DIST/docs/biosql/python_biosql_basic.html HTML] | [http://biopython.org/DIST/docs/biosql/python_biosql_basic.pdf PDF]&lt;br /&gt;
* Documentation for the cluster module in Biopython. This describes the underlying C library and the Python interface. &lt;br /&gt;
:[http://biopython.org/DIST/docs/cluster/cluster.pdf PDF]&lt;br /&gt;
* Cookbook-style documentation:&lt;br /&gt;
:*Converting GenBank (and other formats) to Fasta. &lt;br /&gt;
::[http://biopython.org/DIST/docs/cookbook/genbank_to_fasta.html HTML] | [http://biopython.org/DIST/docs/cookbook/genbank_to_fasta.pdf PDF]&lt;br /&gt;
:*Writing Tests for Biopython. &lt;br /&gt;
::[http://biopython.org/DIST/docs/cookbook/biopython_test.html HTML] | [http://biopython.org/DIST/docs/cookbook/biopython_test.pdf PDF]&lt;br /&gt;
:*Logistic Regression supervised learning. &lt;br /&gt;
::[http://biopython.org/DIST/docs/cookbook/LogisticRegression.html HTML] | [http://biopython.org/DIST/docs/cookbook/LogisticRegression.pdf PDF]&lt;br /&gt;
:*The Biopython Structural Bioinformatics FAQ. &lt;br /&gt;
::[http://biopython.org/DIST/docs/cookbook/biopdb_faq.pdf PDF]&lt;br /&gt;
:*Working with restriction enzymes. &lt;br /&gt;
::[http://biopython.org/DIST/docs/cookbook/Restriction.html HTML]&lt;br /&gt;
&lt;br /&gt;
==== API Documentation ====&lt;br /&gt;
&lt;br /&gt;
* Documentation for Biopython modules is generated directly from source code comments using [http://epydoc.sourceforge.net/ Epydoc].&lt;br /&gt;
:[http://biopython.org/DIST/docs/api/public/trees.html HTML]&lt;br /&gt;
&lt;br /&gt;
==== Online Course Notes ====&lt;br /&gt;
&lt;br /&gt;
* Andrew Dalke taught an introduction to programming for Bioinformatics in Python class at the National Bioinformatics Network in South Africa.&lt;br /&gt;
:http://www.dalkescientific.com/writings/NBN/&lt;br /&gt;
* Katja Schuerer and Catherine Letondal teach a Bioinformatics course in Python at the Pasteur Institute.&lt;br /&gt;
:http://www.pasteur.fr/recherche/unites/sis/formation/python/&lt;br /&gt;
* Ravinder Singh and Scott Kelley teach a Bioinformatics course using Biopython at the University of Colorado.&lt;br /&gt;
:http://mcdb.colorado.edu/courses/6440/index.html&lt;br /&gt;
* Katja Schuerer, Catherine Letondal and Eric Deveaud have an online course that covers getting started in programming with Python. It's aimed at biologists that want to learn programming.&lt;br /&gt;
:http://www.pasteur.fr/formation/infobio/python/&lt;br /&gt;
&lt;br /&gt;
==== Papers ====&lt;br /&gt;
&lt;br /&gt;
*Thomas wrote an applications note for Bioinformatics about the Biopython PDB parser and related code dealing with crystal structures.&lt;br /&gt;
:[http://bioinformatics.oupjournals.org/cgi/content/abstract/19/17/2308 Abstract and links to full text]&lt;br /&gt;
*Brad and Jeff wrote a paper for the ACM SIG-BIO newsletter back in August of 2000.&lt;br /&gt;
:[http://biopython.org/DIST/docs/acm/ACMbiopy.html HTML] | [http://biopython.org/DIST/docs/acm/ACMbiopy.pdf PDF]&lt;br /&gt;
&lt;br /&gt;
==== Presentations ====&lt;br /&gt;
&lt;br /&gt;
* March 2004 presentation at Exelixis about Biopython. Includes code examples with Biopython libraries and Martel.&lt;br /&gt;
:[http://biopython.org/DIST/docs/presentations/biopython_exelixis.pdf PDF] | [http://biopython.org/DIST/docs/presentations/biopython_exelixis.tar.gz tarball with LaTeX source]&lt;br /&gt;
* BOSC 2003 presentation about Biopython and using it for Laboratory Analysis Pipelines.&lt;br /&gt;
:[http://biopython.org/DIST/docs/presentations/bosc_biopython.pdf PDF] | [http://biopython.org/DIST/docs/presentations/bosc_biopython.tar.gz tarball with LaTeX source]&lt;br /&gt;
* General talk about scripting with Biopython based example of a primer design program.&lt;br /&gt;
:[http://biopython.org/DIST/docs/presentations/scripting.pdf PDF] | [http://biopython.org/DIST/docs/presentations/scripting.tar.gz tarball with LaTeX source]&lt;br /&gt;
* Talk about Python and Biopython with an emphasis on teaching the design goals of Biopython.&lt;br /&gt;
:[http://biopython.org/DIST/docs/presentations/biopython.pdf PDF] | [http://biopython.org/DIST/docs/presentations/biopy_group.tar.gz tarball with LaTeX source]&lt;br /&gt;
&lt;br /&gt;
==== Documentation for Developers ====&lt;br /&gt;
&lt;br /&gt;
* Details about the biopython.org [[website]].&lt;br /&gt;
* How to [[Contributing|contribute code]] to Biopython.&lt;br /&gt;
* Instructions for [[building a release]] of Biopython.&lt;/div&gt;</summary>
		<author><name>Jason</name></author>	</entry>

	<entry>
		<id>http://biopython.org/wiki/Biopython</id>
		<title>Biopython</title>
		<link rel="alternate" type="text/html" href="http://biopython.org/wiki/Biopython"/>
				<updated>2006-06-05T15:11:58Z</updated>
		
		<summary type="html">&lt;p&gt;Jason: /* Download Current Release */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== About the Biopython project ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The Biopython Project is an international association of developers of freely available [http://www.python.org Python] tools for computational molecular biology.&lt;br /&gt;
&lt;br /&gt;
It is a distributed collaborative effort to develop Python libraries and applications which address the needs of current and future work in bioinformatics. The source code is made available under the [http://www.biopython.org/DIST/LICENSE Biopython License], which is extremely liberal and compatible with almost every license in the world. We work along with the [http://open-bio.org Open Bioinformatics Foundation], who generously provide web and CVS space for the project.&lt;br /&gt;
&lt;br /&gt;
=== Download Current Release ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The latest release is Biopython 1.41, released on 28 Oct 2005. Get it from our  [[Download]] page.&lt;br /&gt;
&lt;br /&gt;
See the [[News|News page]] as well.&lt;/div&gt;</summary>
		<author><name>Jason</name></author>	</entry>

	<entry>
		<id>http://biopython.org/wiki/Mailing_lists</id>
		<title>Mailing lists</title>
		<link rel="alternate" type="text/html" href="http://biopython.org/wiki/Mailing_lists"/>
				<updated>2006-05-30T14:42:36Z</updated>
		
		<summary type="html">&lt;p&gt;Jason: main mailing list host is 'lists.open-bio.org' although biopython.org is alias (but due to current in-between with hostnames lists.open-bio is the appropriate one)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===  Announcement List ===&lt;br /&gt;
[mailto:biopython-announce@biopython.org biopython-announce@biopython.org]&lt;br /&gt;
&lt;br /&gt;
Low volume moderated list, providing announcements of major Biopython releases and upgrades.&lt;br /&gt;
&lt;br /&gt;
[http://lists.open-bio.org/mailman/listinfo/biopython-announce/ List Website] | [http://lists.open-bio.org/pipermail/biopython-announce/ Web Archive]&lt;br /&gt;
&lt;br /&gt;
=== Discussion List ===&lt;br /&gt;
[mailto:biopython@biopython.org biopython@biopython.org]&lt;br /&gt;
&lt;br /&gt;
Unmoderated list for use, comments, help, and other things related to Biopython.&lt;br /&gt;
&lt;br /&gt;
[http://lists.open-bio.org/mailman/listinfo/biopython/ List Website] | [http://lists.open-bio.org/pipermail/biopython/ Web Archive]&lt;br /&gt;
&lt;br /&gt;
=== Development List ===&lt;br /&gt;
[mailto:biopython-dev@biopython.org biopython-dev@biopython.org]&lt;br /&gt;
&lt;br /&gt;
Unmoderated list for Biopython developers and interested people.&lt;br /&gt;
&lt;br /&gt;
[http://lists.open-bio.org/mailman/listinfo/biopython-dev/ List Website] | [http://lists.open-bio.org/pipermail/biopython-dev/ Web Archive]&lt;br /&gt;
&lt;br /&gt;
=== Searching ===&lt;br /&gt;
[http://search.open-bio.org/cgi-bin/mail-search.cgi Search the mailing list archives.]&lt;/div&gt;</summary>
		<author><name>Jason</name></author>	</entry>

	<entry>
		<id>http://biopython.org/wiki/Documentation</id>
		<title>Documentation</title>
		<link rel="alternate" type="text/html" href="http://biopython.org/wiki/Documentation"/>
				<updated>2006-05-30T14:40:07Z</updated>
		
		<summary type="html">&lt;p&gt;Jason: URL does not need to contain 'static'&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==== Documentation ====&lt;br /&gt;
&lt;br /&gt;
* Installation instructions cover the installation of Python itself, the Biopython dependencies, and Biopython itself. &lt;br /&gt;
:[http://biopython.open-bio.org/DIST/docs/install/Installation.html HTML] | [http://biopython.open-bio.org//DIST/docs/install/Installation.pdf PDF]&lt;br /&gt;
* The Biopython Tutorial and Cookbook contains the main bulk of Biopython documentation. It provides information to get you started with Biopython, in addition to specific documentation on a number of modules. &lt;br /&gt;
:[http://biopython.open-bio.org/DIST/docs/tutorial/Tutorial.html HTML] | [http://biopython.open-bio.org/DIST/docs/tutorial/Tutorial.pdf PDF]&lt;br /&gt;
* Documentation for the Biopython interfaces to BioSQL cover installing Python database adaptors and basic usage of BioSQL. &lt;br /&gt;
:[http://biopython.open-bio.org/DIST/docs/biosql/python_biosql_basic.html HTML] | [http://biopython.open-bio.org/DIST/docs/biosql/python_biosql_basic.pdf PDF]&lt;br /&gt;
* Documentation for the cluster module in Biopython. This describes the underlying C library and the Python interface. &lt;br /&gt;
:[http://biopython.open-bio.org/DIST/docs/cluster/cluster.pdf PDF]&lt;br /&gt;
* Cookbook-style documentation:&lt;br /&gt;
:*Converting GenBank (and other formats) to Fasta. &lt;br /&gt;
::[http://biopython.open-bio.org/DIST/docs/cookbook/genbank_to_fasta.html HTML] | [http://biopython.open-bio.org/DIST/docs/cookbook/genbank_to_fasta.pdf PDF]&lt;br /&gt;
:*Writing Tests for Biopython. &lt;br /&gt;
::[http://biopython.open-bio.org/DIST/docs/cookbook/biopython_test.html HTML] | [http://biopython.open-bio.org/DIST/docs/cookbook/biopython_test.pdf PDF]&lt;br /&gt;
:*Logistic Regression supervised learning. &lt;br /&gt;
::[http://biopython.open-bio.org/DIST/docs/cookbook/LogisticRegression.html HTML] | [http://biopython.open-bio.org/DIST/docs/cookbook/LogisticRegression.pdf PDF]&lt;br /&gt;
:*The Biopython Structural Bioinformatics FAQ. &lt;br /&gt;
::[http://biopython.open-bio.org/DIST/docs/cookbook/biopdb_faq.pdf PDF]&lt;br /&gt;
:*Working with restriction enzymes. &lt;br /&gt;
::[http://biopython.open-bio.org/DIST/docs/cookbook/Restriction.html HTML]&lt;br /&gt;
&lt;br /&gt;
==== API Documentation ====&lt;br /&gt;
&lt;br /&gt;
* Documentation for Biopython modules is generated directly from source code comments using [http://epydoc.sourceforge.net/ Epydoc].&lt;br /&gt;
:[http://biopython.open-bio.org/DIST/docs/api/public/trees.html HTML]&lt;br /&gt;
&lt;br /&gt;
==== Online Course Notes ====&lt;br /&gt;
&lt;br /&gt;
* Andrew Dalke taught an introduction to programming for Bioinformatics in Python class at the National Bioinformatics Network in South Africa.&lt;br /&gt;
:http://www.dalkescientific.com/writings/NBN/&lt;br /&gt;
* Katja Schuerer and Catherine Letondal teach a Bioinformatics course in Python at the Pasteur Institute.&lt;br /&gt;
:http://www.pasteur.fr/recherche/unites/sis/formation/python/&lt;br /&gt;
* Ravinder Singh and Scott Kelley teach a Bioinformatics course using Biopython at the University of Colorado.&lt;br /&gt;
:http://mcdb.colorado.edu/courses/6440/index.html&lt;br /&gt;
* Katja Schuerer, Catherine Letondal and Eric Deveaud have an online course that covers getting started in programming with Python. It's aimed at biologists that want to learn programming.&lt;br /&gt;
:http://www.pasteur.fr/formation/infobio/python/&lt;br /&gt;
&lt;br /&gt;
==== Papers ====&lt;br /&gt;
&lt;br /&gt;
*Thomas wrote an applications note for Bioinformatics about the Biopython PDB parser and related code dealing with crystal structures.&lt;br /&gt;
:[http://bioinformatics.oupjournals.org/cgi/content/abstract/19/17/2308 Abstract and links to full text]&lt;br /&gt;
*Brad and Jeff wrote a paper for the ACM SIG-BIO newsletter back in August of 2000.&lt;br /&gt;
:[http://biopython.open-bio.org/DIST/docs/acm/ACMbiopy.html HTML] | [http://biopython.open-bio.org/DIST/docs/acm/ACMbiopy.pdf PDF]&lt;br /&gt;
&lt;br /&gt;
==== Presentations ====&lt;br /&gt;
&lt;br /&gt;
* March 2004 presentation at Exelixis about Biopython. Includes code examples with Biopython libraries and Martel.&lt;br /&gt;
:[http://biopython.open-bio.org/DIST/docs/presentations/biopython_exelixis.pdf PDF] | [http://biopython.open-bio.org/DIST/docs/presentations/biopython_exelixis.tar.gz tarball with LaTeX source]&lt;br /&gt;
* BOSC 2003 presentation about Biopython and using it for Laboratory Analysis Pipelines.&lt;br /&gt;
:[http://biopython.open-bio.org/DIST/docs/presentations/bosc_biopython.pdf PDF] | [http://biopython.open-bio.org/DIST/docs/presentations/bosc_biopython.tar.gz tarball with LaTeX source]&lt;br /&gt;
* General talk about scripting with Biopython based example of a primer design program.&lt;br /&gt;
:[http://biopython.open-bio.org/DIST/docs/presentations/scripting.pdf PDF] | [http://biopython.open-bio.org/DIST/docs/presentations/scripting.tar.gz tarball with LaTeX source]&lt;br /&gt;
* Talk about Python and Biopython with an emphasis on teaching the design goals of Biopython.&lt;br /&gt;
:[http://biopython.open-bio.org/DIST/docs/presentations/biopython.pdf PDF] | [http://biopython.open-bio.org/DIST/docs/presentations/biopy_group.tar.gz tarball with LaTeX source]&lt;br /&gt;
&lt;br /&gt;
==== Documentation for Developers ====&lt;br /&gt;
&lt;br /&gt;
* Details about the biopython.org website.&lt;br /&gt;
:[[website|HTML]]&lt;br /&gt;
* How to contribute code to Biopython.&lt;br /&gt;
:[[Contributing|HTML]]&lt;br /&gt;
* Instructions for building releases of Biopython.&lt;br /&gt;
:[[Building a release|HTML]]&lt;/div&gt;</summary>
		<author><name>Jason</name></author>	</entry>

	<entry>
		<id>http://biopython.org/wiki/Talk:Download</id>
		<title>Talk:Download</title>
		<link rel="alternate" type="text/html" href="http://biopython.org/wiki/Talk:Download"/>
				<updated>2006-05-30T14:25:44Z</updated>
		
		<summary type="html">&lt;p&gt;Jason: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;You could also just link to the [http://biopython.open-bio.org/DIST DIST] directory and let that webserver provide the list of  files rather than having to keep the list of old releases up to date. --[[User:Jason|Jason]] 10:25, 30 May 2006 (EDT)&lt;/div&gt;</summary>
		<author><name>Jason</name></author>	</entry>

	<entry>
		<id>http://biopython.org/wiki/Download</id>
		<title>Download</title>
		<link rel="alternate" type="text/html" href="http://biopython.org/wiki/Download"/>
				<updated>2006-05-30T14:25:00Z</updated>
		
		<summary type="html">&lt;p&gt;Jason: don't put 'static' in the URL that is handled by apache&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Current Release -- 1.41 -- 28 Oct 2005 =&lt;br /&gt;
&lt;br /&gt;
=== Installation Instructions ===&lt;br /&gt;
&lt;br /&gt;
* [http://biopython.open-bio.org/DIST/docs/install/Installation.html HTML Installation Instructions]&lt;br /&gt;
* [http://biopython.open-bio.org/DIST/docs/install/Installation.pdf PDF Installation Instructions]&lt;br /&gt;
&lt;br /&gt;
=== Files ===&lt;br /&gt;
&lt;br /&gt;
* Source Tarball -- [http://biopython.open-bio.org/DIST/biopython-1.41.tar.gz biopython-1.41.tar.gz] 3,718 Kb&lt;br /&gt;
* Source Zip File -- [http://biopython.open-bio.org/DIST/biopython-1.41.zip biopython-1.41.zip] 4,240 Kb&lt;br /&gt;
* Windows Installer for Python 2.3 -- [http://biopython.open-bio.org/DIST/biopython-1.41.win32-py2.3.exe biopython-1.41.win32-py2.3.exe] 1,038 Kb&lt;br /&gt;
* Windows Installer for Python 2.4 -- [http://biopython.open-bio.org/DIST/biopython-1.41.win32-py2.4.exe biopython-1.41.win32-py2.4.exe] 1,042 Kb&lt;br /&gt;
&lt;br /&gt;
=== Required Software ===&lt;br /&gt;
&lt;br /&gt;
* [http://www.python.org Python 2.3 or above]&lt;br /&gt;
* [http://www.python.org/doc/current/inst/inst.html A C compiler -- you need a C compiler supported by distutils. gcc will work fine on UNIX-like platforms]&lt;br /&gt;
* [http://www.lemburg.com/files/python/mxTextTools.html mxTextTools]&lt;br /&gt;
* [http://sourceforge.net/projects/numpy Numerical Python (version 24.2 recommended)]&lt;br /&gt;
&lt;br /&gt;
=== Optional Software ===&lt;br /&gt;
&lt;br /&gt;
* [http://www.reportlab.org/downloads.html ReportLab -- for pdf graphics code]&lt;br /&gt;
* [http://sourceforge.net/projects/mysql-python MySQLdb]&lt;br /&gt;
&lt;br /&gt;
= Biopython-corba =&lt;br /&gt;
&lt;br /&gt;
=== Files ===&lt;br /&gt;
&lt;br /&gt;
* Source tarball -- [http://biopython.open-bio.org/DIST/biopython-corba-0.3.0.tar.gz biopython-corba-0.3.0.tar.gz] 344Kb&lt;br /&gt;
* Source Zip File -- [http://biopython.open-bio.org/DIST/biopython-corba-0.3.0.zip biopython-corba-0.3.0.zip] 378Kb&lt;br /&gt;
&lt;br /&gt;
=== Required Software ===&lt;br /&gt;
&lt;br /&gt;
* [http://omniorb.sourceforge.net omniORBpy]&lt;br /&gt;
* [http://fnorb.sourceforge.net Fnorb]&lt;br /&gt;
* [http://sourceforge.net/projects/orbit-python orbit-python]&lt;br /&gt;
&lt;br /&gt;
= Old Releases =&lt;br /&gt;
&lt;br /&gt;
* [http://biopython.open-bio.org/DIST/biopython-1.40b.tar.gz biopython-1.40b.tar.gz] 3,437 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/DIST/biopython-1.40b.zip biopython-1.40b.zip] 3,267 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/DIST/biopython-1.40b.win32-py2.3.exe biopython-1.40b.win32-py2.3.exe] 1,019 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/DIST/biopython-1.40b.win32-py2.4.exe biopython-1.40b.win32-py2.4.exe] 1,023 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/DIST/biopython-1.30.tar.gz biopython-1.30.tar.gz] 3,186 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/DIST/biopython-1.24.tar.gz biopython-1.24.tar.gz] 3,081 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/DIST/biopython-1.24.zip biopython-1.24.zip] 3,623 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/DIST/biopython-1.24.win32-py2.2.exe biopython-1.24.win32-py2.2.exe] 892 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/DIST/biopython-1.24.win32-py2.3.exe biopython-1.24.win32-py2.3.exe] 894 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/DIST/biopython-1.23.tar.gz biopython-1.23.tar.gz] 2,241 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/DIST/biopython-1.23.zip biopython-1.23.zip] 2,719 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/DIST/biopython-1.23.win32-py2.2.exe biopython-1.23.win32-py2.2.exe] 833 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/DIST/biopython-1.23.win32-py2.3.exe biopython-1.23.win32-py2.3.exe] 842 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/DIST/biopython-1.22.tar.gz biopython-1.22.tar.gz] 2,214 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/DIST/biopython-1.22.zip biopython-1.22.zip] 2,691 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/DIST/biopython-1.21.tar.gz biopython-1.21.tar.gz] 2,214 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/DIST/biopython-1.21.zip biopython-1.21.zip] 2,897 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/DIST/biopython-1.21.win32-py2.2.exe biopython-1.21.win32-py2.2.exe] 770 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/DIST/biopython-1.21.win32-py2.3.exe biopython-1.21.win32-py2.3.exe] 832 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/DIST/biopython-1.20.tar.gz biopython-1.20.tar.gz] 2,101 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/DIST/biopython-1.20.zip biopython-1.20.zip] 2,602 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/DIST/biopython-1.10.tar.gz biopython-1.10.tar.gz] 1,811 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/DIST/biopython-1.10.zip biopython-1.10.zip] 2,300 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/DIST/biopython-1.10.win32-py2.2.exe biopython-1.10.win32-py2.2.exe] 1,199 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/DIST/biopython-1.00a4.tar.gz biopython-1.00a4.tar.gz] 1,739Kb&lt;br /&gt;
* [http://biopython.open-bio.org/DIST/biopython-1.00a4.zip biopython-1.00a4.zip] 2,121Kb&lt;br /&gt;
* [http://biopython.open-bio.org/DIST/biopython-1.00a4.win32-py2.0.exe biopython-1.00a4.win32-py2.0.exe] 835Kb&lt;br /&gt;
* [http://biopython.open-bio.org/DIST/biopython-1.00a4.win32-py2.1.exe biopython-1.00a4.win32-py2.1.exe] 837Kb&lt;br /&gt;
* [http://biopython.open-bio.org/DIST/biopython-1.00a4.win32-py2.2.exe biopython-1.00a4.win32-py2.2.exe] 838Kb&lt;br /&gt;
* [http://biopython.open-bio.org/DIST/MacBiopython-1.00a4.sit MacBiopython-1.00a4.sit] 2.2Mb&lt;br /&gt;
* [http://biopython.open-bio.org/DIST/biopython-1.00a3.tar.gz biopython-1.00a3.tar.gz] 1,816Kb&lt;br /&gt;
* [http://biopython.open-bio.org/DIST/biopython-1.00a3.zip biopython-1.00a3.zip] 2,165Kb&lt;br /&gt;
* [http://biopython.open-bio.org/DIST/biopython-1.00a3.win32-py2.0.exe biopython-1.00a3.win32-py2.0.exe] 583Kb&lt;br /&gt;
* [http://biopython.open-bio.org/DIST/biopython-1.00a3.win32-py2.1.exe biopython-1.00a3.win32-py2.1.exe] 585Kb&lt;br /&gt;
* [http://biopython.open-bio.org/DIST/Macbiopython-1.00a3.sit.bin Macbiopython-1.00a3.sit.bin] 1926Kb&lt;/div&gt;</summary>
		<author><name>Jason</name></author>	</entry>

	<entry>
		<id>http://biopython.org/wiki/Download</id>
		<title>Download</title>
		<link rel="alternate" type="text/html" href="http://biopython.org/wiki/Download"/>
				<updated>2006-05-30T14:22:58Z</updated>
		
		<summary type="html">&lt;p&gt;Jason: /* Files */ - don't put static in the URL this is handled by the URL rewrite&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Current Release -- 1.41 -- 28 Oct 2005 =&lt;br /&gt;
&lt;br /&gt;
=== Installation Instructions ===&lt;br /&gt;
&lt;br /&gt;
* [http://biopython.open-bio.org/DIST/docs/install/Installation.html HTML Installation Instructions]&lt;br /&gt;
* [http://biopython.open-bio.org/DIST/docs/install/Installation.pdf PDF Installation Instructions]&lt;br /&gt;
&lt;br /&gt;
=== Files ===&lt;br /&gt;
&lt;br /&gt;
* Source Tarball -- [http://biopython.open-bio.org/DIST/biopython-1.41.tar.gz biopython-1.41.tar.gz] 3,718 Kb&lt;br /&gt;
* Source Zip File -- [http://biopython.open-bio.org/DIST/biopython-1.41.zip biopython-1.41.zip] 4,240 Kb&lt;br /&gt;
* Windows Installer for Python 2.3 -- [http://biopython.open-bio.org/DIST/biopython-1.41.win32-py2.3.exe biopython-1.41.win32-py2.3.exe] 1,038 Kb&lt;br /&gt;
* Windows Installer for Python 2.4 -- [http://biopython.open-bio.org/DIST/biopython-1.41.win32-py2.4.exe biopython-1.41.win32-py2.4.exe] 1,042 Kb&lt;br /&gt;
&lt;br /&gt;
=== Required Software ===&lt;br /&gt;
&lt;br /&gt;
* [http://www.python.org Python 2.3 or above]&lt;br /&gt;
* [http://www.python.org/doc/current/inst/inst.html A C compiler -- you need a C compiler supported by distutils. gcc will work fine on UNIX-like platforms]&lt;br /&gt;
* [http://www.lemburg.com/files/python/mxTextTools.html mxTextTools]&lt;br /&gt;
* [http://sourceforge.net/projects/numpy Numerical Python (version 24.2 recommended)]&lt;br /&gt;
&lt;br /&gt;
=== Optional Software ===&lt;br /&gt;
&lt;br /&gt;
* [http://www.reportlab.org/downloads.html ReportLab -- for pdf graphics code]&lt;br /&gt;
* [http://sourceforge.net/projects/mysql-python MySQLdb]&lt;br /&gt;
&lt;br /&gt;
= Biopython-corba =&lt;br /&gt;
&lt;br /&gt;
=== Files ===&lt;br /&gt;
&lt;br /&gt;
* Source tarball -- [http://biopython.open-bio.org/static/DIST/biopython-corba-0.3.0.tar.gz biopython-corba-0.3.0.tar.gz] 344Kb&lt;br /&gt;
* Source Zip File -- [http://biopython.open-bio.org/static/DIST/biopython-corba-0.3.0.zip biopython-corba-0.3.0.zip] 378Kb&lt;br /&gt;
&lt;br /&gt;
=== Required Software ===&lt;br /&gt;
&lt;br /&gt;
* [http://omniorb.sourceforge.net omniORBpy]&lt;br /&gt;
* [http://fnorb.sourceforge.net Fnorb]&lt;br /&gt;
* [http://sourceforge.net/projects/orbit-python orbit-python]&lt;br /&gt;
&lt;br /&gt;
= Old Releases =&lt;br /&gt;
&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.40b.tar.gz biopython-1.40b.tar.gz] 3,437 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.40b.zip biopython-1.40b.zip] 3,267 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.40b.win32-py2.3.exe biopython-1.40b.win32-py2.3.exe] 1,019 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.40b.win32-py2.4.exe biopython-1.40b.win32-py2.4.exe] 1,023 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.30.tar.gz biopython-1.30.tar.gz] 3,186 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.24.tar.gz biopython-1.24.tar.gz] 3,081 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.24.zip biopython-1.24.zip] 3,623 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.24.win32-py2.2.exe biopython-1.24.win32-py2.2.exe] 892 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.24.win32-py2.3.exe biopython-1.24.win32-py2.3.exe] 894 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.23.tar.gz biopython-1.23.tar.gz] 2,241 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.23.zip biopython-1.23.zip] 2,719 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.23.win32-py2.2.exe biopython-1.23.win32-py2.2.exe] 833 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.23.win32-py2.3.exe biopython-1.23.win32-py2.3.exe] 842 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.22.tar.gz biopython-1.22.tar.gz] 2,214 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.22.zip biopython-1.22.zip] 2,691 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.21.tar.gz biopython-1.21.tar.gz] 2,214 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.21.zip biopython-1.21.zip] 2,897 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.21.win32-py2.2.exe biopython-1.21.win32-py2.2.exe] 770 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.21.win32-py2.3.exe biopython-1.21.win32-py2.3.exe] 832 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.20.tar.gz biopython-1.20.tar.gz] 2,101 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.20.zip biopython-1.20.zip] 2,602 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.10.tar.gz biopython-1.10.tar.gz] 1,811 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.10.zip biopython-1.10.zip] 2,300 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.10.win32-py2.2.exe biopython-1.10.win32-py2.2.exe] 1,199 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.00a4.tar.gz biopython-1.00a4.tar.gz] 1,739Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.00a4.zip biopython-1.00a4.zip] 2,121Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.00a4.win32-py2.0.exe biopython-1.00a4.win32-py2.0.exe] 835Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.00a4.win32-py2.1.exe biopython-1.00a4.win32-py2.1.exe] 837Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.00a4.win32-py2.2.exe biopython-1.00a4.win32-py2.2.exe] 838Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/MacBiopython-1.00a4.sit MacBiopython-1.00a4.sit] 2.2Mb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.00a3.tar.gz biopython-1.00a3.tar.gz] 1,816Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.00a3.zip biopython-1.00a3.zip] 2,165Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.00a3.win32-py2.0.exe biopython-1.00a3.win32-py2.0.exe] 583Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.00a3.win32-py2.1.exe biopython-1.00a3.win32-py2.1.exe] 585Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/Macbiopython-1.00a3.sit.bin Macbiopython-1.00a3.sit.bin] 1926Kb&lt;/div&gt;</summary>
		<author><name>Jason</name></author>	</entry>

	<entry>
		<id>http://biopython.org/wiki/Download</id>
		<title>Download</title>
		<link rel="alternate" type="text/html" href="http://biopython.org/wiki/Download"/>
				<updated>2006-05-30T14:22:12Z</updated>
		
		<summary type="html">&lt;p&gt;Jason: /* Installation Instructions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Current Release -- 1.41 -- 28 Oct 2005 =&lt;br /&gt;
&lt;br /&gt;
=== Installation Instructions ===&lt;br /&gt;
&lt;br /&gt;
* [http://biopython.open-bio.org/DIST/docs/install/Installation.html HTML Installation Instructions]&lt;br /&gt;
* [http://biopython.open-bio.org/DIST/docs/install/Installation.pdf PDF Installation Instructions]&lt;br /&gt;
&lt;br /&gt;
=== Files ===&lt;br /&gt;
&lt;br /&gt;
* Source Tarball -- [http://biopython.open-bio.org/static/DIST/biopython-1.41.tar.gz biopython-1.41.tar.gz] 3,718 Kb&lt;br /&gt;
* Source Zip File -- [http://biopython.open-bio.org/static/DIST/biopython-1.41.zip biopython-1.41.zip] 4,240 Kb&lt;br /&gt;
* Windows Installer for Python 2.3 -- [http://biopython.open-bio.org/static/DIST/biopython-1.41.win32-py2.3.exe biopython-1.41.win32-py2.3.exe] 1,038 Kb&lt;br /&gt;
* Windows Installer for Python 2.4 -- [http://biopython.open-bio.org/static/DIST/biopython-1.41.win32-py2.4.exe biopython-1.41.win32-py2.4.exe] 1,042 Kb&lt;br /&gt;
&lt;br /&gt;
=== Required Software ===&lt;br /&gt;
&lt;br /&gt;
* [http://www.python.org Python 2.3 or above]&lt;br /&gt;
* [http://www.python.org/doc/current/inst/inst.html A C compiler -- you need a C compiler supported by distutils. gcc will work fine on UNIX-like platforms]&lt;br /&gt;
* [http://www.lemburg.com/files/python/mxTextTools.html mxTextTools]&lt;br /&gt;
* [http://sourceforge.net/projects/numpy Numerical Python (version 24.2 recommended)]&lt;br /&gt;
&lt;br /&gt;
=== Optional Software ===&lt;br /&gt;
&lt;br /&gt;
* [http://www.reportlab.org/downloads.html ReportLab -- for pdf graphics code]&lt;br /&gt;
* [http://sourceforge.net/projects/mysql-python MySQLdb]&lt;br /&gt;
&lt;br /&gt;
= Biopython-corba =&lt;br /&gt;
&lt;br /&gt;
=== Files ===&lt;br /&gt;
&lt;br /&gt;
* Source tarball -- [http://biopython.open-bio.org/static/DIST/biopython-corba-0.3.0.tar.gz biopython-corba-0.3.0.tar.gz] 344Kb&lt;br /&gt;
* Source Zip File -- [http://biopython.open-bio.org/static/DIST/biopython-corba-0.3.0.zip biopython-corba-0.3.0.zip] 378Kb&lt;br /&gt;
&lt;br /&gt;
=== Required Software ===&lt;br /&gt;
&lt;br /&gt;
* [http://omniorb.sourceforge.net omniORBpy]&lt;br /&gt;
* [http://fnorb.sourceforge.net Fnorb]&lt;br /&gt;
* [http://sourceforge.net/projects/orbit-python orbit-python]&lt;br /&gt;
&lt;br /&gt;
= Old Releases =&lt;br /&gt;
&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.40b.tar.gz biopython-1.40b.tar.gz] 3,437 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.40b.zip biopython-1.40b.zip] 3,267 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.40b.win32-py2.3.exe biopython-1.40b.win32-py2.3.exe] 1,019 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.40b.win32-py2.4.exe biopython-1.40b.win32-py2.4.exe] 1,023 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.30.tar.gz biopython-1.30.tar.gz] 3,186 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.24.tar.gz biopython-1.24.tar.gz] 3,081 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.24.zip biopython-1.24.zip] 3,623 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.24.win32-py2.2.exe biopython-1.24.win32-py2.2.exe] 892 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.24.win32-py2.3.exe biopython-1.24.win32-py2.3.exe] 894 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.23.tar.gz biopython-1.23.tar.gz] 2,241 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.23.zip biopython-1.23.zip] 2,719 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.23.win32-py2.2.exe biopython-1.23.win32-py2.2.exe] 833 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.23.win32-py2.3.exe biopython-1.23.win32-py2.3.exe] 842 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.22.tar.gz biopython-1.22.tar.gz] 2,214 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.22.zip biopython-1.22.zip] 2,691 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.21.tar.gz biopython-1.21.tar.gz] 2,214 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.21.zip biopython-1.21.zip] 2,897 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.21.win32-py2.2.exe biopython-1.21.win32-py2.2.exe] 770 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.21.win32-py2.3.exe biopython-1.21.win32-py2.3.exe] 832 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.20.tar.gz biopython-1.20.tar.gz] 2,101 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.20.zip biopython-1.20.zip] 2,602 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.10.tar.gz biopython-1.10.tar.gz] 1,811 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.10.zip biopython-1.10.zip] 2,300 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.10.win32-py2.2.exe biopython-1.10.win32-py2.2.exe] 1,199 Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.00a4.tar.gz biopython-1.00a4.tar.gz] 1,739Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.00a4.zip biopython-1.00a4.zip] 2,121Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.00a4.win32-py2.0.exe biopython-1.00a4.win32-py2.0.exe] 835Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.00a4.win32-py2.1.exe biopython-1.00a4.win32-py2.1.exe] 837Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.00a4.win32-py2.2.exe biopython-1.00a4.win32-py2.2.exe] 838Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/MacBiopython-1.00a4.sit MacBiopython-1.00a4.sit] 2.2Mb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.00a3.tar.gz biopython-1.00a3.tar.gz] 1,816Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.00a3.zip biopython-1.00a3.zip] 2,165Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.00a3.win32-py2.0.exe biopython-1.00a3.win32-py2.0.exe] 583Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/biopython-1.00a3.win32-py2.1.exe biopython-1.00a3.win32-py2.1.exe] 585Kb&lt;br /&gt;
* [http://biopython.open-bio.org/static/DIST/Macbiopython-1.00a3.sit.bin Macbiopython-1.00a3.sit.bin] 1926Kb&lt;/div&gt;</summary>
		<author><name>Jason</name></author>	</entry>

	<entry>
		<id>http://biopython.org/wiki/User:Jason</id>
		<title>User:Jason</title>
		<link rel="alternate" type="text/html" href="http://biopython.org/wiki/User:Jason"/>
				<updated>2006-05-07T17:29:36Z</updated>
		
		<summary type="html">&lt;p&gt;Jason: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;My page on [[bp:User:Jason|bioperl site]].&lt;/div&gt;</summary>
		<author><name>Jason</name></author>	</entry>

	<entry>
		<id>http://biopython.org/wiki/Sandbox</id>
		<title>Sandbox</title>
		<link rel="alternate" type="text/html" href="http://biopython.org/wiki/Sandbox"/>
				<updated>2006-05-07T17:25:34Z</updated>
		
		<summary type="html">&lt;p&gt;Jason: some interwiki linking examples&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Some examples==&lt;br /&gt;
Demonstrate links to wikipedia [[wp:DNA|DNA]] and BioPerl [[bp:BLAST|BLAST]] and wikiomics [[wikiomics:BLAST|BLAST]].&lt;/div&gt;</summary>
		<author><name>Jason</name></author>	</entry>

	<entry>
		<id>http://biopython.org/wiki/User:Idoerg</id>
		<title>User:Idoerg</title>
		<link rel="alternate" type="text/html" href="http://biopython.org/wiki/User:Idoerg"/>
				<updated>2006-05-07T17:19:28Z</updated>
		
		<summary type="html">&lt;p&gt;Jason: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Iddo Friedberg&lt;/div&gt;</summary>
		<author><name>Jason</name></author>	</entry>

	<entry>
		<id>http://biopython.org/wiki/User:Mdehoon</id>
		<title>User:Mdehoon</title>
		<link rel="alternate" type="text/html" href="http://biopython.org/wiki/User:Mdehoon"/>
				<updated>2006-05-07T17:18:50Z</updated>
		
		<summary type="html">&lt;p&gt;Jason: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Michiel De Hoon&lt;/div&gt;</summary>
		<author><name>Jason</name></author>	</entry>

	<entry>
		<id>http://biopython.org/wiki/Biopython</id>
		<title>Biopython</title>
		<link rel="alternate" type="text/html" href="http://biopython.org/wiki/Biopython"/>
				<updated>2006-01-28T18:41:28Z</updated>
		
		<summary type="html">&lt;p&gt;Jason: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Welcome==&lt;br /&gt;
See the [http://biopython.open-bio.org/news News page] as well.&lt;br /&gt;
&lt;br /&gt;
Wiki software successfully installed.&lt;br /&gt;
&lt;br /&gt;
Please see [http://meta.wikipedia.org/wiki/MediaWiki_i18n documentation on customizing the interface]&lt;br /&gt;
and the [http://meta.wikipedia.org/wiki/MediaWiki_User%27s_Guide User's Guide] for usage and configuration help.&lt;/div&gt;</summary>
		<author><name>Jason</name></author>	</entry>

	<entry>
		<id>http://biopython.org/wiki/User:Jason</id>
		<title>User:Jason</title>
		<link rel="alternate" type="text/html" href="http://biopython.org/wiki/User:Jason"/>
				<updated>2006-01-28T18:37:09Z</updated>
		
		<summary type="html">&lt;p&gt;Jason: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[bp:Jason Stajich]]&lt;/div&gt;</summary>
		<author><name>Jason</name></author>	</entry>

	</feed>