This is a test version of Biostars. For the public version, visit https://www.biostars.org.
To Calculate Solvent Accessibility With Wesa

Hello all,

       I would like to run WESA (http://pipe.scs.fsu.edu/wesa.html) in batch mode to calculate solvent accessibility of protein sequences. For this, I tried the following command on windows command prompt. I got the command from <http://pipe.scs.fsu.edu/PostHandler/WESA-PostHandler.htm.> 

C:\Python27>python WESA-submit.py   area   ksha@gmail.com  C:/seqs.fasta  > $1.html
Traceback (most recent call last):
File "WESA-submit.py", line 4, in <module>
 import MultipartPostHandler, urllib2, cookielib
ImportError: No module named MultipartPostHandler

I have already saved the WESA-submit.py, MultipartPostHandler.py scripts on Python27 directory. Any suggestions please

protein python

1 answer

it is not a server error, the problem is you don't have Python module MultipartPostHandler. Try to install MultipartPostHandler from http://pypi.python.org/pypi/MultipartPostHandler/0.1.0#downloads (or try google)

@sheila Thank you very much for your answer.It worked well.

Log in to answer this question.