comparison chembl.py @ 4:59eea7d0d720 draft

"planemo upload for repository https://github.com/chembl/chembl_webresource_client commit f5c316339ed36a0469f4862d00fa0e5cafebc041"
author bgruening
date Tue, 19 May 2020 05:34:34 -0400
parents f56492688f43
children 1ade252ebe08
comparison
equal deleted inserted replaced
3:8b6ba267714b 4:59eea7d0d720
3 from chembl_webresource_client.new_client import new_client 3 from chembl_webresource_client.new_client import new_client
4 import argparse 4 import argparse
5 5
6 def open_file(filename): 6 def open_file(filename):
7 with open(filename) as f: 7 with open(filename) as f:
8 return f.readline() 8 return f.readline().split()[0]
9 9
10 def get_smiles(res): 10 def get_smiles(res):
11 """ 11 """
12 Get a list of SMILES from function results 12 Get a list of SMILES from function results
13 """ 13 """