Skip to content
This repository has been archived by the owner on Nov 28, 2023. It is now read-only.

Commit

Permalink
adjust import order
Browse files Browse the repository at this point in the history
  • Loading branch information
CunliangGeng committed Aug 26, 2019
1 parent 98f5c18 commit ef75ffa
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
2 changes: 0 additions & 2 deletions deeprank/features/PSSM_IC.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ class PSSM_IC(FullPSSM):
#
##########################################################################

def __compute_feature__(pdb_data, featgrp, featgrp_raw):

def __compute_feature__(pdb_data, featgrp, featgrp_raw):

func(pdb_data, featgrp, featgrp_raw, out_type='pssmic')
Expand Down
4 changes: 2 additions & 2 deletions deeprank/features/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from .AtomicFeature import AtomicFeature
from .BSA import BSA
from .FeatureClass import FeatureClass
from .BSA import BSA
from .AtomicFeature import AtomicFeature
from .FullPSSM import FullPSSM
from .NaivePSSM import NaivePSSM
from .PSSM_IC import PSSM_IC
Expand Down
4 changes: 2 additions & 2 deletions deeprank/learn/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# deep learning
from .DataSet import DataSet
from .metaqnn import MetaQNN
from .modelGenerator import NetworkGenerator
from .DataSet import DataSet
from .NeuralNet import NeuralNet
from .metaqnn import MetaQNN
2 changes: 1 addition & 1 deletion deeprank/learn/metaqnn.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import deeprank.learn.modelGenerator
import torch.optim as optim
from deeprank.learn import NetworkGenerator, NeuralNet
from deeprank.learn import NetworkGenerator, NeuralNet, DataSet


class saved_model(object):
Expand Down

0 comments on commit ef75ffa

Please sign in to comment.