From 4eb3269061b030974c876f559aa5011bbe27c2b8 Mon Sep 17 00:00:00 2001 From: Matthew Nemeth <44307920+mnemeth66@users.noreply.github.com> Date: Mon, 2 May 2022 11:47:41 -0700 Subject: [PATCH] Update 07 - Blast.ipynb missed a line to get blast_record from blast_records --- notebooks/07 - Blast.ipynb | 1 + 1 file changed, 1 insertion(+) diff --git a/notebooks/07 - Blast.ipynb b/notebooks/07 - Blast.ipynb index d6e751b..feb3a6b 100644 --- a/notebooks/07 - Blast.ipynb +++ b/notebooks/07 - Blast.ipynb @@ -852,6 +852,7 @@ "from Bio.Blast import NCBIXML\n", "result_handle = open(\"my_blast.xml\", 'r')\n", "blast_records = NCBIXML.parse(result_handle)\n", + "blast_record = next(blast_records)" "\n", "for alignment in blast_record.alignments:\n", " for hsp in alignment.hsps:\n",