This commit is contained in:
Frank Knoll
2024-04-25 12:29:27 +02:00
parent 0a4c2e0d9e
commit df90d1b0c4

View File

@@ -42,9 +42,8 @@
"source": [ "source": [
"# split --bytes=45MiB VAERSBeforeDeletion.7z VAERSBeforeDeletion_\n", "# split --bytes=45MiB VAERSBeforeDeletion.7z VAERSBeforeDeletion_\n",
"def restoreVAERSBeforeDeletionFolder():\n", "def restoreVAERSBeforeDeletionFolder():\n",
" from IPython import get_ipython\n", " os.system('cat data/VAERSBeforeDeletion/VAERSBeforeDeletion_* > VAERS/VAERSBeforeDeletion.7z')\n",
" !cat data/VAERSBeforeDeletion/VAERSBeforeDeletion_* > VAERS/VAERSBeforeDeletion.7z\n", " os.system('cd VAERS; 7z x -y VAERSBeforeDeletion.7z')\n",
" !cd VAERS; 7z x -y VAERSBeforeDeletion.7z\n",
"\n", "\n",
"vaersBeforeDeletionDataDir = 'VAERS/VAERSBeforeDeletion'\n", "vaersBeforeDeletionDataDir = 'VAERS/VAERSBeforeDeletion'\n",
"restoreVAERSBeforeDeletionFolder()" "restoreVAERSBeforeDeletionFolder()"