Skip to content

Commit

Permalink
forgot to push correct nbs for oct sonnet post-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
qcampbel committed Jan 23, 2025
1 parent fe09850 commit 17e1fcb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@
"source": [
"import re\n",
"import os\n",
"match = re.search(rf\"1LYZ_\\d+\", paths_and_descriptions)\n",
"match = re.search(r\"1LYZ_\\d+\", paths_and_descriptions)\n",
"file_id = match.group(0)\n",
"pdb_path = registry.get_mapped_path(file_id)\n",
"assert os.path.exists(pdb_path)\n",
Expand Down Expand Up @@ -668,7 +668,7 @@
"source": [
"import re\n",
"import os\n",
"match = re.search(rf\"1LYZ_\\d+\", paths_and_descriptions)\n",
"match = re.search(r\"1LYZ_\\d+\", paths_and_descriptions)\n",
"file_id = match.group(0)\n",
"pdb_path = registry.get_mapped_path(file_id)\n",
"assert os.path.exists(pdb_path)\n",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -940,7 +940,7 @@
"import os\n",
"import re\n",
"\n",
"match = re.search(rf\"1LYZ_\\d+\", paths_and_descriptions)\n",
"match = re.search(r\"1LYZ_\\d+\", paths_and_descriptions)\n",
"file_id = match.group(0)\n",
"pdb_path = registry.get_mapped_path(file_id)\n",
"assert os.path.exists(pdb_path)\n",
Expand Down Expand Up @@ -1791,7 +1791,7 @@
"import os\n",
"import re\n",
"\n",
"match = re.search(rf\"1LYZ_\\d+\", paths_and_descriptions)\n",
"match = re.search(r\"1LYZ_\\d+\", paths_and_descriptions)\n",
"file_id = match.group(0)\n",
"pdb_path = registry.get_mapped_path(file_id)\n",
"assert os.path.exists(pdb_path)\n",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@
],
"source": [
"from IPython.display import Image\n",
"match = re.search(rf\"fig0_\\d+\", paths_and_descriptions)\n",
"match = re.search(r\"fig0_\\d+\", paths_and_descriptions)\n",
"fig_id = match.group(0)\n",
"fig_path = registry.get_mapped_path(fig_id)\n",
"assert os.path.exists(fig_path), \"This figure does not exist.\"\n",
Expand Down Expand Up @@ -749,7 +749,7 @@
],
"source": [
"from IPython.display import Image\n",
"match = re.search(rf\"fig0_\\d+\", paths_and_descriptions)\n",
"match = re.search(r\"fig0_\\d+\", paths_and_descriptions)\n",
"fig_id = match.group(0)\n",
"fig_path = registry.get_mapped_path(fig_id)\n",
"assert os.path.exists(fig_path), \"This figure does not exist.\"\n",
Expand Down

0 comments on commit 17e1fcb

Please sign in to comment.