Most viewed recipes tagged "bioinformatics"http://code.activestate.com/recipes/tags/bioinformatics/views/2015-04-29T07:09:33-07:00ActiveState Code RecipesLecture 1: Applications of Python in Bioinformatics: Visualizing Protein (Python)
2015-04-29T07:09:33-07:00Devashish Dashttp://code.activestate.com/recipes/users/4192116/http://code.activestate.com/recipes/579050-lecture-1-applications-of-python-in-bioinformatics/
<p style="color: grey">
Python
recipe 579050
by <a href="/recipes/users/4192116/">Devashish Das</a>
(<a href="/recipes/tags/3d/">3d</a>, <a href="/recipes/tags/bioinformatics/">bioinformatics</a>, <a href="/recipes/tags/plots/">plots</a>, <a href="/recipes/tags/protein/">protein</a>, <a href="/recipes/tags/python/">python</a>).
</p>
<p>This code reads 1qlz.pdb protein file can be downloaded from <a href="http://www.rcsb.org/pdb/files/1QLZ.pdb" rel="nofollow">http://www.rcsb.org/pdb/files/1QLZ.pdb</a> and plots a 3D graph using maplotlib library. For mystery write to me: <a href="mailto:devashish.das@educept.com">devashish.das@educept.com</a></p>
<pre class="prettyprint"><code>__author__ = Devashish Das
__contact__ = +91-9964218681
__email__ = <a href="mailto:deavshish.das@educept.com">deavshish.das@educept.com</a>
__website__ = <a href="http://www.educept.com">http://www.educept.com</a>
</code></pre>
Create replica of the existing directory structure with only specified extension files. (Python)
2012-11-16T08:30:31-08:00Achal Rastogihttp://code.activestate.com/recipes/users/4183889/http://code.activestate.com/recipes/578303-create-replica-of-the-existing-directory-structure/
<p style="color: grey">
Python
recipe 578303
by <a href="/recipes/users/4183889/">Achal Rastogi</a>
(<a href="/recipes/tags/bioinformatics/">bioinformatics</a>, <a href="/recipes/tags/biology/">biology</a>, <a href="/recipes/tags/directory/">directory</a>, <a href="/recipes/tags/fileextensions/">fileextensions</a>, <a href="/recipes/tags/replica/">replica</a>).
Revision 2.
</p>
<p>The program creates a replica of existing directory structure with specified extension files only. The program maintains the directory-sub-directory architecture while executing. User has to provide two arguments, First the path of existing directory,whose replica has to be created and Second, the path of directory, where the replica has to be created.
This program is developed to fetch files with ".pl" (perl) extension, while maintaining the directory-sub-directory architecture. User can modify it, with his/her interested file extension, like ".txt", ".doc", etc.</p>