Entering edit mode
10.9 years ago
dimkal
▴
730
Does anybody know if there's an a python alternative to STRIDE or DSSP for assigning secondary structure elements to protein structures?
Thanks,
Dima
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.