|
5 | 5 | "id": "cb0d308b-8f50-4ac9-a8a3-550d8a2e3feb", |
6 | 6 | "metadata": {}, |
7 | 7 | "source": [ |
8 | | - "<img src=\"openFE_logo3.png\" width=\"100\"> \n", |
| 8 | + "<img src=\"OFE-color-horizontal.png\" width=\"300\"> \n", |
9 | 9 | "\n", |
10 | | - "# The OpenFE Showcase: Relative Binding Free Energies in the TYK2 System" |
| 10 | + "# OpenFE Showcase: Relative Binding Free Energies in the TYK2 System" |
11 | 11 | ] |
12 | 12 | }, |
13 | 13 | { |
|
69 | 69 | }, |
70 | 70 | { |
71 | 71 | "cell_type": "code", |
72 | | - "execution_count": 1, |
| 72 | + "execution_count": null, |
73 | 73 | "id": "-jX9udRGehD3", |
74 | 74 | "metadata": { |
75 | 75 | "colab": { |
|
86 | 86 | "# Only run this cell if on google colab\n", |
87 | 87 | "import os\n", |
88 | 88 | "if \"COLAB_RELEASE_TAG\" in os.environ:\n", |
| 89 | + " # fix for colab's torchvision causing issues\n", |
| 90 | + " !rm -r /usr/local/lib/python3.12/dist-packages/torchvision\n", |
| 91 | + " \n", |
89 | 92 | " !pip install -q condacolab\n", |
90 | 93 | " import condacolab\n", |
91 | | - " condacolab.install_from_url(\"https://github.com/OpenFreeEnergy/openfe/releases/download/v1.6.0/OpenFEforge-1.6.0-Linux-x86_64.sh\")" |
| 94 | + " condacolab.install_from_url(\"https://github.com/OpenFreeEnergy/openfe/releases/download/v1.6.1/OpenFEforge-1.6.1-Linux-x86_64.sh\")" |
92 | 95 | ] |
93 | 96 | }, |
94 | 97 | { |
95 | 98 | "cell_type": "code", |
96 | | - "execution_count": 2, |
| 99 | + "execution_count": null, |
97 | 100 | "id": "dlCARZ2_fAI4", |
98 | 101 | "metadata": { |
99 | 102 | "colab": { |
|
108 | 111 | "source": [ |
109 | 112 | "# NBVAL_SKIP\n", |
110 | 113 | "# Only run this cell if on google colab\n", |
| 114 | + "# Colab will say the runtime crashed, but this is expected with `install_from_url`, and you should continue running the next cell\n", |
| 115 | + "\n", |
111 | 116 | "import os\n", |
112 | 117 | "if \"COLAB_RELEASE_TAG\" in os.environ:\n", |
113 | 118 | " import condacolab\n", |
114 | 119 | " import locale\n", |
115 | 120 | " locale.getpreferredencoding = lambda: \"UTF-8\"\n", |
116 | 121 | " !mkdir inputs && cd inputs && openfe fetch rbfe-tutorial\n", |
| 122 | + " # quick fix for https://github.com/conda-incubator/condacolab/issues/75\n", |
| 123 | + " # if deprecation warnings persist, rerun this cell\n", |
| 124 | + " import warnings\n", |
| 125 | + " warnings.filterwarnings(action=\"ignore\", message=r\"datetime.datetime.utcnow\") \n", |
117 | 126 | " for _ in range(3):\n", |
118 | 127 | " # Sometimes we have to re-run the check\n", |
119 | 128 | " try:\n", |
|
0 commit comments