-
Notifications
You must be signed in to change notification settings - Fork 18
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 #52 from STRIDES/kao_link_check
Added link check workflow and fixed identified broken links
- Loading branch information
Showing
55 changed files
with
108 additions
and
5 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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Test Notebook | ||
|
||
on: | ||
push: | ||
branches: | ||
- "*" | ||
pull_request: | ||
branches: | ||
- "*" | ||
|
||
jobs: | ||
test-notebook: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.8 | ||
|
||
- name: Install dependencies | ||
run: | | ||
pip install jupyter | ||
- name: Test notebook | ||
run: | | ||
jupyter nbconvert --to notebook --execute /tutorials/notebooks/LifeSciencesAPI/nextflow/*.ipynb |
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,28 @@ | ||
name: Check Links | ||
|
||
on: | ||
push: | ||
branches: | ||
- '*' | ||
pull_request: | ||
branches: | ||
- '*' | ||
jobs: | ||
check-links: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
|
||
- name: Install dependencies | ||
run: | | ||
npm install -g markdown-link-check | ||
- name: Check links in Markdown files | ||
run: find . -name '*.md' -print0 | xargs -0 -n1 markdown-link-check -q -c .markdown-link-check.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,43 @@ | ||
{ | ||
"ignorePatterns": [ | ||
{ | ||
"pattern": "^#" | ||
}, | ||
{ | ||
"pattern": "^https://iam.nih.gov" | ||
}, | ||
{ | ||
"pattern": "^https://github.com/conda-forge/miniforge/releases/" | ||
}, | ||
{ | ||
"pattern": "^https://github.com/david-thrower-nih/DL-gwas-gcp-example" | ||
} | ||
], | ||
"replacementPatterns": [ | ||
{ | ||
"pattern": "^/docs", | ||
"replacement": "https://github.com/STRIDES/NIHCloudLabGCP/tree/main/docs" | ||
}, | ||
{ | ||
"pattern": "^/tutorials", | ||
"replacement": "https://github.com/STRIDES/NIHCloudLabGCP/tree/main/tutorials" | ||
}, | ||
{ | ||
"pattern": "^/images", | ||
"replacement": "https://github.com/STRIDES/NIHCloudLabGCP/tree/main/images" | ||
}, | ||
{ | ||
"pattern": "^/issues", | ||
"replacement": "https://github.com/STRIDES/NIHCloudLabGCP/issues" | ||
}, | ||
{ | ||
"pattern": "^/assets", | ||
"replacement": "https://github.com/STRIDES/NIHCloudLabGCP/tree/main/tutorials/notebooks/DL-gwas-gcp-example/assets" | ||
} | ||
], | ||
"timeout": "20s", | ||
"retryOn429": true, | ||
"retryCount": 5, | ||
"fallbackRetryDelay": "30s", | ||
"aliveStatusCodes": [200, 206] | ||
} |
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
Binary file added
BIN
+409 KB
tutorials/notebooks/DL-gwas-gcp-example/assets/00-create-new-notebook1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+253 KB
tutorials/notebooks/DL-gwas-gcp-example/assets/01-create-new-notebook2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+190 KB
tutorials/notebooks/DL-gwas-gcp-example/assets/01-r2-create-new-notebook2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+166 KB
tutorials/notebooks/DL-gwas-gcp-example/assets/01-r3-create-new-notebook2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+202 KB
tutorials/notebooks/DL-gwas-gcp-example/assets/02-create-new-notebook3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+338 KB
tutorials/notebooks/DL-gwas-gcp-example/assets/04-upload-notebook-and-data.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+75.7 KB
tutorials/notebooks/DL-gwas-gcp-example/assets/06-pipeline-parameters.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+336 KB
tutorials/notebooks/DL-gwas-gcp-example/assets/07-pipeline-parameters-katib.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+20.9 KB
tutorials/notebooks/DL-gwas-gcp-example/assets/09-pipeline-metrics.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+420 KB
tutorials/notebooks/DL-gwas-gcp-example/assets/14-successful-katib-run.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+227 KB
tutorials/notebooks/DL-gwas-gcp-example/assets/click-set-cell-kind.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Binary file added
BIN
+169 KB
tutorials/notebooks/DL-gwas-gcp-example/assets/enable-compute-engine.png
Oops, something went wrong.
Binary file added
BIN
+112 KB
tutorials/notebooks/DL-gwas-gcp-example/assets/enable-service-management.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+103 KB
tutorials/notebooks/DL-gwas-gcp-example/assets/old-11-r2-setup-job.png
Oops, something went wrong.
Binary file added
BIN
+272 KB
tutorials/notebooks/DL-gwas-gcp-example/assets/old-x002-final-results-page.png
Oops, something went wrong.
Binary file added
BIN
+94.6 KB
tutorials/notebooks/DL-gwas-gcp-example/assets/run-minikf-startup.png
Oops, something went wrong.
Binary file added
BIN
+153 KB
tutorials/notebooks/DL-gwas-gcp-example/assets/service-management-api.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+388 KB
tutorials/notebooks/DL-gwas-gcp-example/assets/updated-pipeline-params.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+1.26 MB
tutorials/notebooks/DL-gwas-gcp-example/assets/x002-final-results-page.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+150 KB
tutorials/notebooks/DL-gwas-gcp-example/assets/x004-launch-terminal.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+226 KB
tutorials/notebooks/DL-gwas-gcp-example/assets/xx0001-navigate-to-experiment.png
Oops, something went wrong.
Binary file added
BIN
+206 KB
tutorials/notebooks/DL-gwas-gcp-example/assets/xx0003-pick-pipeline-step.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
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