Tagged Questions

0
votes
1answer
39 views

BioPython: extracting sequence IDs from a Blast output file

Hi, I have a BLAST output file in XML format. It is 22 query sequences with 50 hits reported from each sequence. And I want to extract all the 50x22 hits. This is the code I curre …
0
votes
2answers
98 views

Umlaut in Java SAX Parser

Hello everybody! I am currently having trouble with German umlaut values in a XML document I received. It displays / saves the value as a "ü" instead of a "ü". The XML Encoding …
0
votes
4answers
640 views

Parsing XML With Single Quotes?

I am currently running into a problem where an element is coming back from my xml file with a single quote in it. This is causing xml_parse to break it up into multiple chunks, exa …
4
votes
2answers
447 views

Are line breaks in XML attribute values valid?

I realise that it's not elegant or desired, but is it valid for an attribute value in an XML element to span multiple lines? e.g. <some-xml-element value="this value goes over …