<html>
<head>
<style>
body {
  font-family: Verdana, sans-serif;
  font-size: 0.8em;
  color:#484848;
}
h1, h2, h3 { font-family: "Trebuchet MS", Verdana, sans-serif; margin: 0px; }
h1 { font-size: 1.2em; }
h2, h3 { font-size: 1.1em; }
a, a:link, a:visited { color: #2A5685;}
a:hover, a:active { color: #c61a1a; }
a.wiki-anchor { display: none; }
fieldset.attachments {border-width: 1px 0 0 0;}
hr {
  width: 100%;
  height: 1px;
  background: #ccc;
  border: 0;
}
span.footer {
  font-size: 0.8em;
  font-style: italic;
}
</style>
</head>
<body>
Issue #2925 has been updated by Lenna Peterson.

<ul>
  <li><strong>Description</strong> updated (<a title="View differences" href="https://redmine.open-bio.org/journals/diff/15375?detail_id=1687">diff</a>)</li>
  <li><strong>Status</strong> changed from <i>New</i> to <i>Resolved</i></li>
  <li><strong>Assignee</strong> deleted (<del><i>Biopython Dev Mailing List</i></del>)</li>
  <li><strong>% Done</strong> changed from <i>0</i> to <i>100</i></li>
</ul>

<p>Can't reproduce.</p>


<pre>
import numpy as np
from Bio import PDB

infile = "1bfg.pdb" 

p = PDB.PDBParser()

s = p.get_structure("test", infile)

atom_list = PDB.Selection.unfold_entities(s, "A")

ns = PDB.NeighborSearch(atom_list)

empty_place = np.array([999, 999, 999])
for level in ["A", "R", "C", "M", "S"]:
    neighbors2 = ns.search(empty_place, 5.0, level=level)
    print PDB.Selection.unfold_entities(neighbors2, "R")
</pre>

        <p>output:<br /><pre>
[]
[]
[]
[]
[]
</pre></p>
<hr />
<h1><a href="https://redmine.open-bio.org/issues/2925#change-15375">Bug #2925: false exception in Bio.PDB.NeighborSearch.search</a></h1>

<ul><li>Author: Li Zhenhua</li>
<li>Status: Resolved</li>
<li>Priority: Normal</li>
<li>Assignee: </li>
<li>Category: Main Distribution</li>
<li>Target version: 1.52</li>
<li>URL: </li></ul>

<p>Bio.PDB.NeighborSearch.search<br />if there is no atom nearby(within a distance smaller than radius) and the level is not "A",  an exception will be thrown. it would be better to return an empty list.</p>



<hr />
<span class="footer"><p>You have received this notification because you have either subscribed to it, or are involved in it.<br />To change your notification preferences, please click here and login: <a class="external" href="http://redmine.open-bio.org">http://redmine.open-bio.org</a></p></span>
</body>
</html>