Mercurial > repos > bgruening > openbabel_remduplicates
comparison ob_spectrophore_search.py @ 12:8c4a4e9e173c draft
"planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/openbabel commit 944ea4bb8a9cd4244152a4a4fecd0485fabc2ad0"
| author | bgruening |
|---|---|
| date | Tue, 28 Jul 2020 12:01:17 +0000 |
| parents | a8b0cfa051f1 |
| children | d44de092fef3 |
comparison
equal
deleted
inserted
replaced
| 11:886c3e81ce7a | 12:8c4a4e9e173c |
|---|---|
| 4 Output: parse the target file using the same protocol used to generate the databases in our servers. Physico-chemical properties are computed and stored as metadata in the sdf output file. | 4 Output: parse the target file using the same protocol used to generate the databases in our servers. Physico-chemical properties are computed and stored as metadata in the sdf output file. |
| 5 Copyright 2012, Bjoern Gruening and Xavier Lucas | 5 Copyright 2012, Bjoern Gruening and Xavier Lucas |
| 6 """ | 6 """ |
| 7 import sys, os | 7 import sys, os |
| 8 import argparse | 8 import argparse |
| 9 import openbabel | |
| 10 openbabel.obErrorLog.StopLogging() | |
| 11 import pybel | |
| 12 import math | 9 import math |
| 13 import numpy as np | 10 import numpy as np |
| 14 | 11 |
| 12 from openbabel import openbabel, pybel | |
| 13 openbabel.obErrorLog.StopLogging() | |
| 15 #TODO get rid of eval() | 14 #TODO get rid of eval() |
| 16 | 15 |
| 17 global spectrophore | 16 global spectrophore |
| 18 spectrophore = pybel.ob.OBSpectrophore() | 17 spectrophore = pybel.ob.OBSpectrophore() |
| 19 | 18 |
