Hi. So I was examining the code (0.8.6) because I aim to create hyperlinks, from the BLAST results to GBrowse. After some time of looking, I found out that construct_standard_sequence_hyperlink(options) as called in line 500 of sequenceserver.rb returns something like this:
xxx--------------------------xxx
gb|EU941459.1|EU941459 PLN Zea mays clone 1453910 mRNA sequence.
xxx--------------------------xxx
Which conflicts with what’s stated at http://www.w3.org/TR/html401/struct/links.html#h-12.2.2 which says
xxx--------------------------xxx
Links and anchors defined by the A element must not be nested; an A element must not contain any other A elements.
xxx--------------------------xxx
Google Chrome does parse it in a way as Jukka K. Korpela says in here: http://stackoverflow.com/questions/13052598/creating-anchor-tag-inside-anchor-tag .
Haven’t tried on another browser yet. I was dumbfounded for around two days why the output does not seem to match with what are being logged.
And this also causes me headache on how to add the link to GBrowse. Any suggestion? So far, I can see variable hint_coordinates as being helpful.