I have a web application which generate list of chromosomal position in human genome. Is there a way I can embed UCSC genome browser such that it does the following:
- Take the chromosome position as input
- Display the alignment chart based on some pre-specified switch/track (e.g. turn on the UCSC track,
tRNA track, conservation track etc) - Also allow the zooming or navigation button for the figures just like the original GB.
This is really more of a web development question, rather than a bioinformatics question. Back in the day, one might have used frames for this (http://www.w3schools.com/tags/tag_frame.asp), but that's sort of old-school and is deprecated in html5. You're going to have to use some dynamic programming for web development, and for more details stackexchange should be helpful. Basically, you seem to want your app to do what UCSC genome browser already does -- why not just take user input and feed that directly to genome browser that opens in a new tab?
Agreed; what you describe is what the UCSC browser does already...why the need to embed?