generated from hubmapconsortium/hubmap-template
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #104 from hubmapconsortium/development
2.0.0 Release
- Loading branch information
Showing
24 changed files
with
1,321 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.8.0 | ||
2.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
src/user_templates_api/templates/jupyter_lab/templates/blank/metadata.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
16 changes: 16 additions & 0 deletions
16
src/user_templates_api/templates/jupyter_lab/templates/blank_r/metadata.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"title": "Blank Notebook", | ||
"description": "Notebook only inserting UUIDs of added datasets.", | ||
"tags": ["R"], | ||
"is_multi_dataset_template": true, | ||
"template_format": "jinja", | ||
"job_types": ["jupyter_lab_r"], | ||
"examples": [ | ||
{ | ||
"title": "Workspace Tutorial datasets", | ||
"description": "Create a blank notebook with a CODEX and Slideseq dataset linked.", | ||
"datasets": ["69c70762689b20308bb049ac49653342", "a1d17fdd270a69c813b872a927dfa5f3"] | ||
} | ||
], | ||
"is_hidden": false | ||
} |
6 changes: 6 additions & 0 deletions
6
src/user_templates_api/templates/jupyter_lab/templates/blank_r/render.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
from user_templates_api.templates.jupyter_lab.render import JupyterLabRender | ||
|
||
|
||
class JupyterLabExampleJinjaRender(JupyterLabRender): | ||
def __init__(self): | ||
pass |
12 changes: 12 additions & 0 deletions
12
src/user_templates_api/templates/jupyter_lab/templates/blank_r/template.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
[ | ||
{ | ||
"cell_type": "code", | ||
"execution_count": null, | ||
"metadata": {}, | ||
"outputs": [], | ||
"source": [ | ||
"# linked datasets\n", | ||
"uuids <- c('{{ uuids|join:'\', \'' }}')" | ||
] | ||
} | ||
] |
2 changes: 1 addition & 1 deletion
2
src/user_templates_api/templates/jupyter_lab/templates/codex_clustering/metadata.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
12 changes: 12 additions & 0 deletions
12
src/user_templates_api/templates/jupyter_lab/templates/hra_api_tutorial/metadata.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"title": "Human Reference Atlas (HRA) API Tutorial", | ||
"description": "This notebook shows users how to instantiate and use the HuBMAP HRA APIs.", | ||
"tags": [ | ||
"hra", | ||
"api" | ||
], | ||
"is_multi_dataset_template": true, | ||
"template_format": "jinja", | ||
"is_hidden": false, | ||
"last_modified_unix_timestamp": 1723749414 | ||
} |
6 changes: 6 additions & 0 deletions
6
src/user_templates_api/templates/jupyter_lab/templates/hra_api_tutorial/render.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
from user_templates_api.templates.jupyter_lab.render import JupyterLabRender | ||
|
||
|
||
class JupyterLabExampleJinjaRender(JupyterLabRender): | ||
def __init__(self): | ||
pass |
Oops, something went wrong.