diff options
author | Pjotr Prins | 2022-10-08 17:17:54 -0500 |
---|---|---|
committer | Pjotr Prins | 2022-10-08 17:17:54 -0500 |
commit | f6c1e428a95a39331b87c521a4141df8bfd9fdc7 (patch) | |
tree | a7ae35db304d7e39537bfa234c411fc3025754a9 /wqflask | |
parent | 958679e5d5ddf6ff1994803912a96cad6fb6f737 (diff) | |
download | genenetwork2-f6c1e428a95a39331b87c521a4141df8bfd9fdc7.tar.gz |
Update link to public datasets
Diffstat (limited to 'wqflask')
-rw-r--r-- | wqflask/wqflask/db_info.py | 2 | ||||
-rw-r--r-- | wqflask/wqflask/templates/base.html | 2 | ||||
-rw-r--r-- | wqflask/wqflask/templates/info_page.html | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/wqflask/wqflask/db_info.py b/wqflask/wqflask/db_info.py index d7ed3b9e..376ce14c 100644 --- a/wqflask/wqflask/db_info.py +++ b/wqflask/wqflask/db_info.py @@ -63,7 +63,7 @@ class InfoPage: self.filelist = [] try: response = urllib.request.urlopen( - "http://datafiles.genenetwork.org/download/GN%s" % self.gn_accession_id) + "https://files.genenetwork.org/current/GN%s" % self.gn_accession_id) data = response.read() matches = re.findall(r"<tr>.+?</tr>", data, re.DOTALL) diff --git a/wqflask/wqflask/templates/base.html b/wqflask/wqflask/templates/base.html index d0201bdb..6bae5e9e 100644 --- a/wqflask/wqflask/templates/base.html +++ b/wqflask/wqflask/templates/base.html @@ -88,7 +88,7 @@ <li><a href="http://ucscbrowser.genenetwork.org/">Genome Browser</a></li> <li><a href="http://power.genenetwork.org">BXD Power Calculator</a></li> <li><a href="{{url_for('jupyter_notebooks.launcher')}}">Jupyter Notebooks</a></li> - <li><a href="http://datafiles.genenetwork.org">Interplanetary File System</a></li> + <li><a href="https://files.genenetwork.org/current/">Public Datasets</a></li> </ul> </li> {% if g.user_session %} diff --git a/wqflask/wqflask/templates/info_page.html b/wqflask/wqflask/templates/info_page.html index d8b7d74c..91d34573 100644 --- a/wqflask/wqflask/templates/info_page.html +++ b/wqflask/wqflask/templates/info_page.html @@ -46,7 +46,7 @@ <td>
<ul style="line-height: 160%">
{% for file in filelist %}
- <li><a href="http://datafiles.genenetwork.org/download/GN{{ gn_accession_id }}/{{ file[0] }}">{{ file[0] }} ({{ file[2] }})</a></li>
+ <li><a href="https://files.genenetwork.org/current/GN{{ gn_accession_id }}/{{ file[0] }}">{{ file[0] }} ({{ file[2] }})</a></li>
{% endfor %}
</ul>
</td>
@@ -89,4 +89,4 @@ </table>
</p>
-{% endblock %}
\ No newline at end of file +{% endblock %}
|