aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPjotr Prins2022-10-08 17:17:54 -0500
committerPjotr Prins2022-10-08 17:17:54 -0500
commitf6c1e428a95a39331b87c521a4141df8bfd9fdc7 (patch)
treea7ae35db304d7e39537bfa234c411fc3025754a9
parent958679e5d5ddf6ff1994803912a96cad6fb6f737 (diff)
downloadgenenetwork2-f6c1e428a95a39331b87c521a4141df8bfd9fdc7.tar.gz
Update link to public datasets
-rw-r--r--doc/GUIX-archive.org2
-rw-r--r--wqflask/wqflask/db_info.py2
-rw-r--r--wqflask/wqflask/templates/base.html2
-rw-r--r--wqflask/wqflask/templates/info_page.html4
4 files changed, 5 insertions, 5 deletions
diff --git a/doc/GUIX-archive.org b/doc/GUIX-archive.org
index 67ab5cd0..a2aeb35c 100644
--- a/doc/GUIX-archive.org
+++ b/doc/GUIX-archive.org
@@ -50,7 +50,7 @@ and you should be able to use this directly, e.g.
Find the archive on
- http://files.genenetwork.org/software/
+=> https://files.genenetwork.org/software/
download and install with
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 %}