Python Tool To Assign Secondary Structure Elements To A 3D/Pdb Structure
0 answers
No answers yet.
Log in to answer this question.
More posts like this
-
How to associate secondary structure to protein sequence
written by francesco.costa.11 •Hi everybody! I am sruggling to find a way to associate to a vast collection of PDB entries the respective secondary structures. For every protein …
-
Why were protein secondary structure predictions dropped from CASP?
written by alibek.kruglikov11 •I have seen that after CASP5 there is no more assesment of protein secondary structure prediction by CASP. Does anybody know why that is the …
-
alignment of secondary structure of template and target
written by amara.jabeen86 •hi I have selected a template for tertiary structure prediction. I have predicted the secondary structure of target sequence. now I have to match the …
-
Clustering small peptides based on secondary structure sequence (DSSP classification with "C","H", …
written by ericbrenner •Hi, I have data on a bunch of small peptides (10-20aa each) that now includes their secondary structure sequence with DSSP classification. I was wondering …
-
How To Extract Secondary Structure Regions Based On Dihedral Angles From Multiple Pdb Files ?
written by nahsivar •<p>How to extract secondary structure regions based on dihedral angles from multiple PDB files ?</p> <p>For a single PDB file, secondary structure could easily be …
-
Convert Fasta To Nicely Formatted Html
written by dimkal<p>Hi everyone, does anybody aware of a simple script (preferably python) that would convert a fasta file (with one protein sequence) to a an HTML …
-
Is There Any R Package To Extract Secondary Structure Information From A Protein Sequence?
written by p2011001 •Could anyone please suggest me an R package to extract the secondary structure information from a protein sequence? As far as I know DSSP extract …
-
How To Get The Angle Between Secondary Structure Elements Of A Protein?
written by lylylytc •<p>I'm recently studying on the tableaux representation of secondary structure elements of proteins. But I don't know how to get the orientations between them from …
-
How Do I Run Stride For Multiple Files?
written by alianwar •<p>Hello,</p> <p>I would like to run stride(Protein secondary structure assignment <a href="http://webclu.bio.wzw.tum.de/stride/)">http://webclu.bio.wzw.tum.de/stride/)</a> for multiple files. I got the output for single file. But I get …
-
Converting Smiles To Iupac Chemical Name?
written by dimkal<p>Does anybody know of of an <em>open source</em> tool which can convert chemical SMILES to IUPAC name? </p> <p>So for example, if i have a …
Why Python? There are lots of protein secondary structure tools available. Performance-wise, lots of them are pretty similar. STRIDE/DSSP are both well-established, widely-used, easy to parse and easy to call from other languages, including Python.
there are a bunch of reasons why python can be preferred over c/fortran -- easier to redistribute, easier to read, modify, extend, no need to deal with compilers.
-d
Yes, but do those reasons justify writing code when perfectly reasonable solutions already exist? What do you care about more: language aesthetics or getting the job done?
at the moment i care about the code's readability and ease of use. python, is preferred language. Perhaps the answer to my question is that no alternatives exist since the original codes works so well. That's perfectly acceptable. I'm having hard time to believe that nobody implemented any of the two methods in python.