Hi,

Using a PHP script (containing cURL) I used to upload a BED file to  
the genome browser and extract the graph generated from it. Uploading  
the BED file still works, but recently I'm unable to retrieve the page  
containing the graph (I'm talking about this page :  
http://genome.ucsc.edu/cgi-bin/hgTracks?hgsid=136545595&clade=mammal&org=Human&db=hg18&position=chr21%3A46%2C226%2C739-46%2C227%2C098&pix=620&Submit=submit).
 To retrieve this page, I used the following PHP code  
:

   <?php
     $channel2 = curl_init("http://genome.ucsc.edu/cgi-bin
                            /hgTracks?hgsid=136544735&
                            Submit=go+to+genome+browser&
                            position=chr21%3A46226739-46227098");
     curl_setopt($channel2,CURLOPT_HTTPGET,true);
     curl_setopt($channel2,CURLOPT_RETURNTRANSFER,true);
     $webpage = curl_exec($channel2);
   ?>

When I execute this code now, I get a blank page only containing the  
number '1'. Has something been changed to this page which is  
preventing me from retrieving it? If so could you help me to solve  
this problem so I can retrieve the page (and the graph it contains)  
again?

Thanking you in advance,

Steve Lefever
Center for Medical Genetics Ghent (CMGG)
Ghent University Hospital
Medical Research Building (MRB), 2nd floor, room 120.055
De Pintelaan 185, B-9000 Ghent, Belgium






_______________________________________________
Genome maillist  -  [email protected]
https://lists.soe.ucsc.edu/mailman/listinfo/genome

Reply via email to