Skip to content

Commit b7d2a79

Browse files
committed
fix links
1 parent 65cb4ca commit b7d2a79

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

notebooks/getting_started/part2_searching_basics.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
"\n",
2424
"## Summary\n",
2525
"\n",
26-
"This notebook is part of [the series](link) introducing NCI Imaging Data Commons to the users who want to interact with IDC programmatically.\n",
26+
"This notebook is part of [the \"Getting started with IDC\" notebook series](https://github.com/ImagingDataCommons/IDC-Examples/blob/master/notebooks/getting_started) introducing NCI Imaging Data Commons to the users who want to interact with IDC programmatically.\n",
2727
"\n",
28-
"In Part 1 of this tutorial series, you learned how to complete the prerequisites that are required to be able to search IDC data using GCP BigQuery.\n",
28+
"In [Part 1](https://github.com/ImagingDataCommons/IDC-Examples/blob/master/notebooks/getting_started/part1_prerequisites.ipynb) of this tutorial series, you learned how to complete the prerequisites that are required to be able to search IDC data using GCP BigQuery.\n",
2929
"\n",
3030
"In this notebook you will be introduced into how IDC organizes the metadata accompanying images available in IDC, and how that metadata can be used to define subsets of data.\n",
3131
"\n",
@@ -58,7 +58,7 @@
5858
"\n",
5959
"Before doing **anything** you **must** authorize Colab Runtime to act on your behalf, and initialize the variable pointing to your Google Cloud project ID.\n",
6060
"\n",
61-
"The following cell initializes project ID that is needed for all operations with the cloud. You should have project ID if you completed the [first tutorial]() in this series."
61+
"The following cell initializes project ID that is needed for all operations with the cloud. You should have project ID if you completed the [first tutorial](https://github.com/ImagingDataCommons/IDC-Examples/blob/master/notebooks/getting_started/part1_prerequisites.ipynb) in this series."
6262
]
6363
},
6464
{
@@ -70,7 +70,7 @@
7070
"outputs": [],
7171
"source": [
7272
"# initialize this variable with your Google Cloud Project ID!\n",
73-
"my_ProjectID = \"idc-tcia\"\n",
73+
"my_ProjectID = \"REPLACE_ME_WITH_YOUR_PROJECT_ID\"\n",
7474
"\n",
7575
"import os\n",
7676
"os.environ[\"GCP_PROJECT_ID\"] = my_ProjectID\n",

notebooks/getting_started/part3_exploring_cohorts.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"\n",
2323
"## Summary\n",
2424
"\n",
25-
"This notebook is part of [the series](link) introducing NCI Imaging Data Commons to the users who want to interact with IDC programmatically.\n",
25+
"This notebook is part of [the \"Getting started with IDC\" notebook series](https://github.com/ImagingDataCommons/IDC-Examples/blob/master/notebooks/getting_started) introducing NCI Imaging Data Commons to the users who want to interact with IDC programmatically.\n",
2626
"\n",
2727
"In Part 1 of this tutorial series, you learned how to complete the prerequisites that are required to be able to search IDC data using GCP BigQuery.\n",
2828
"\n",
@@ -59,7 +59,7 @@
5959
"\n",
6060
"Before doing **anything** you **must** authorize Colab Runtime to act on your behalf, and initialize the variable pointing to your Google Cloud project ID.\n",
6161
"\n",
62-
"The following cell initializes project ID that is needed for all operations with the cloud. You should have project ID if you completed the [first tutorial]() in this series."
62+
"The following cell initializes project ID that is needed for all operations with the cloud. You should have project ID if you completed the [first tutorial](https://github.com/ImagingDataCommons/IDC-Examples/blob/master/notebooks/getting_started/part1_prerequisites.ipynb) in this series."
6363
]
6464
},
6565
{
@@ -71,7 +71,7 @@
7171
"outputs": [],
7272
"source": [
7373
"# initialize this variable with your Google Cloud Project ID!\n",
74-
"my_ProjectID = \"idc-tcia\"\n",
74+
"my_ProjectID = \"REPLACE_ME_WITH_YOUR_PROJECT_ID\"\n",
7575
"\n",
7676
"import os\n",
7777
"os.environ[\"GCP_PROJECT_ID\"] = my_ProjectID\n",

0 commit comments

Comments
 (0)