aboutsummaryrefslogtreecommitdiff
path: root/wqflask
diff options
context:
space:
mode:
authorjgart2022-01-17 05:24:38 -0500
committerjgart2022-01-17 05:24:38 -0500
commit869f84ee791ce2761ef240a07c641fc5a829b0c3 (patch)
tree71df49a5f5ac2e7bb65c576d166bd6c175c02df1 /wqflask
parent9ab0c3b6cc146e1711f1478242d4198eed720e4c (diff)
downloadgenenetwork2-869f84ee791ce2761ef240a07c641fc5a829b0c3.tar.gz
update live jupyter notebooks
Diffstat (limited to 'wqflask')
-rw-r--r--wqflask/wqflask/jupyter_notebooks.py32
1 files changed, 23 insertions, 9 deletions
diff --git a/wqflask/wqflask/jupyter_notebooks.py b/wqflask/wqflask/jupyter_notebooks.py
index 7d76828e..ba0b0e0d 100644
--- a/wqflask/wqflask/jupyter_notebooks.py
+++ b/wqflask/wqflask/jupyter_notebooks.py
@@ -1,17 +1,31 @@
from flask import Blueprint, render_template
-jupyter_notebooks = Blueprint('jupyter_notebooks', __name__)
+jupyter_notebooks = Blueprint("jupyter_notebooks", __name__)
+
@jupyter_notebooks.route("/launcher", methods=("GET",))
def launcher():
links = (
- {
- "main_url": "http://notebook.genenetwork.org/34301/notebooks/genenetwork-api-using-r.ipynb",
- "notebook_name": "R notebook showing how to query the GeneNetwork API.",
- "src_link_url": "https://github.com/jgarte/genenetwork-api-r-jupyter-notebook"},
- {
- "main_url": "http://notebook.genenetwork.org/57675/notebooks/genenetwork.ipynb",
- "notebook_name": "Querying the GeneNetwork API declaratively with python.",
- "src_link_url": "https://github.com/jgarte/genenetwork-jupyter-notebook-example"})
+ {
+ "main_url": "http://notebook.genenetwork.org/59373/notebooks/BXD%20Analysis.ipynb",
+ "notebook_name": "This shows how to model BXD mouse weight data using an AR(1) process",
+ "src_link_url": "https://github.com/BonfaceKilz/tsaf-analysis-of-bxd-mouse-colonies",
+ },
+ {
+ "main_url": "http://notebook.genenetwork.org/50939/notebooks/2020-05-08/solberg-rat-analysis.ipynb",
+ "notebook_name": "Quantitative Genetics Tools for Mapping Trait Variation to Mechanisms, Therapeutics, and Interventions - Webinar Series",
+ "src_link_url": "https://github.com/senresearch/quant-genetics-webinars",
+ },
+ {
+ "main_url": "http://notebook.genenetwork.org/34447/notebooks/genenetwork.ipynb",
+ "notebook_name": "Querying the GeneNetwork API declaratively with python.",
+ "src_link_url": "https://github.com/jgarte/genenetwork-jupyter-notebook-example",
+ },
+ {
+ "main_url": "http://notebook.genenetwork.org/53923/notebooks/genenetwork-api-using-r.ipynb",
+ "notebook_name": "R notebook showing how to query the GeneNetwork API.",
+ "src_link_url": "https://github.com/jgarte/genenetwork-api-r-jupyter-notebook",
+ },
+ )
return render_template("jupyter_notebooks.html", links=links)