Spaces:
Running
Running
Eachan Johnson
commited on
Commit
·
e8cb587
1
Parent(s):
ea2ab9b
Fix example data files, remove pubchem_name
Browse files- app.py +2 -2
- example-data/liu23-abau-1000.csv +0 -0
- example-data/stokes20-eco-1000.csv +0 -0
- example-data/wong24-sau-tox-1000.csv +0 -0
app.py
CHANGED
@@ -344,8 +344,8 @@ def draw_one(
|
|
344 |
mols = [mols]
|
345 |
return Draw.MolsToGridImage(
|
346 |
mols,
|
347 |
-
molsPerRow=min(
|
348 |
-
subImgSize=(
|
349 |
legends=[
|
350 |
"\n".join(
|
351 |
_x if _x is not None else ""
|
|
|
344 |
mols = [mols]
|
345 |
return Draw.MolsToGridImage(
|
346 |
mols,
|
347 |
+
molsPerRow=min(5, len(mols)),
|
348 |
+
subImgSize=(600, 600),
|
349 |
legends=[
|
350 |
"\n".join(
|
351 |
_x if _x is not None else ""
|
example-data/liu23-abau-1000.csv
CHANGED
The diff for this file is too large to render.
See raw diff
|
|
example-data/stokes20-eco-1000.csv
CHANGED
The diff for this file is too large to render.
See raw diff
|
|
example-data/wong24-sau-tox-1000.csv
CHANGED
The diff for this file is too large to render.
See raw diff
|
|