Skip to content
Snippets Groups Projects
Commit ebeeace5 authored by Vermaat's avatar Vermaat
Browse files

Fix in soaptools example client code.

parent 0bc33a9b
No related branches found
No related tags found
No related merge requests found
......@@ -56,7 +56,8 @@ if r.messages:
for m in r.messages.SoapMessage:
print 'Error %s: %s\n' % (m.errorcode, m.message)
print 'Chromosomal description: %s' % r.chromDescription
if 'chromDescription' in r:
print 'Chromosomal description: %s' % r.chromDescription
print 'Genomic description: %s' % r.genomicDescription
if r.transcriptDescriptions:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment