Hello,
I'm running a VS using the scripts available at autodock page. However, I'm getting this error:
"swig/python detected a memory leak of type 'BHtree *', no destructor found."
But the calculation still works and grid and docking are successful. Anybody knows how to solve this python warning?
This is the script
#!/bin/csh
#
# $Id: ex09.csh,v 1.7 2008/01/10 19:01:24 rhuey Exp $
#
# Create a file with a list of the dockings to run::
cd $VSTROOT/VirtualScreening/Dockings
/bin/ls > ../etc/docking.list
# For the purposes of this tutorial, instead of running ``autodock3`` as
# you normally would) simply copy the results of a docking that we've
# done for you previously.
foreach d (`cat ../etc/docking.list`)
echo $d
cd $d
autodock4 -p $d.dpf -l $d.dlg
cp $VSTROOT/dlgs/"$d".dlg .
cd ..
end