Skip to content

Commit

Permalink
renamed
Browse files Browse the repository at this point in the history
  • Loading branch information
kotori-y committed Aug 8, 2020
1 parent 5050157 commit fd37087
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions gui/smash/pysmash.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@

import pandas as pd
from getRes import getFingerprintRes, predict
from smash import ShowResult


class SmashGui(Tk):
Expand All @@ -42,7 +41,7 @@ def __init__(self):
# self.pack()
self.geometry('600x400+500+200')
self.resizable(0, 0)
self.title('Smash molecule based on fingerprint')
self.title('Smash molecule and obtain significant fragments')

self.bg = '#abbfc5'
self.fg = '#b70131'
Expand Down Expand Up @@ -147,7 +146,7 @@ def preview(self):
fg=self.fg, font=self.lblFont)
lblsubPvalue.place(x=350, y=80)

lblsubHTML = Label(self.view, text='Summray',
lblsubHTML = Label(self.view, text='Model',
fg=self.fg, font=self.lblFont)
lblsubHTML.place(x=600, y=80)

Expand Down
4 changes: 2 additions & 2 deletions smash/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@
from rdkit.Chem import rdDepictor

try:
from .fingerprints import Circular, Path, FunctionGroup
from .fragments import Circular, Path, FunctionGroup
except Exception:
from fingerprints import Circular, Path, FunctionGroup
from fragments import Circular, Path, FunctionGroup

try:
pd.set_option('display.max_colwidth', None)
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit fd37087

Please sign in to comment.