one other short thing.
If this is the code you are using for the distance matrix:
On Thu, Jul 17, 2014 at 12:18 AM, Matthew Lardy <mla...@gmail.com> wrote:
>
> dm=[]
> for i,fp in enumerate(zims_fps[:26000]): # only 1000 in the demo (in
> the interest of time)
>
> dm.extend(DataStructs.BulkTanimotoSimilarity(fp,zims_fps[1+1:26000],returnDistance=True))
> dm = array(dm)
>
Then at least part of the problem is that you are generating the full
matrix. I think you intend to have:
dm.extend(DataStructs.BulkTanimotoSimilarity(fp,zims_fps[i+1:26000],returnDistance=True))
in there.
That typo was in the original notebook that you used; I'm going to have to
figure out how to fix that.
-greg
------------------------------------------------------------------------------
Want fast and easy access to all the code in your enterprise? Index and
search up to 200,000 lines of code with a free copy of Black Duck
Code Sight - the same software that powers the world's largest code
search on Ohloh, the Black Duck Open Hub! Try it now.
http://p.sf.net/sfu/bds
_______________________________________________
Rdkit-discuss mailing list
Rdkit-discuss@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/rdkit-discuss