[Rdkit-discuss] Morgan Fingerprint bit vector

2019-07-17 Thread KENNETH PAUL RIVADENEIRA GUADAMUD
Dear all, Working in an example I realized that there are at least two ways of computing morgan fingerprints for a molecule using rdkit. But using the exact same properties in both ways I get different vectors. Am I missing something? First approach: info = {} mol =

Re: [Rdkit-discuss] SMILES to graphs

2019-07-17 Thread Mario Lovrić
After the adjacency matrix from rdkit you can do a lot with the networkx python library. On Wed, 17 Jul 2019, 10:00 Jan Halborg Jensen, wrote: > You can get an adjacency matrix with the function GetAdjacencyMatrix: > > mol = Chem.GetMolFromSmiles(‘C’) > am =

Re: [Rdkit-discuss] SMILES to graphs

2019-07-17 Thread Jan Halborg Jensen
You can get an adjacency matrix with the function GetAdjacencyMatrix: mol = Chem.GetMolFromSmiles(‘C’) am = Chem.rdmolops.GetAdjacencyMatrix(mol) > On 16 Jul 2019, at 21.06, Navid Shervani-Tabar wrote: > > Hello, > > I was wondering if it is possible to generate graph representations