added test data for runALLclfs
This commit is contained in:
parent
c666c426c0
commit
6be17e3e3e
10 changed files with 113 additions and 741 deletions
|
@ -50,6 +50,12 @@ print('Strucutral features (n):'
|
|||
, '\nOther struc columns:', X_str
|
||||
, '\n================================================================\n')
|
||||
|
||||
print('AAindex features (n):'
|
||||
, len(X_aaindexFN)
|
||||
, '\nThese are:\n'
|
||||
, X_aaindexFN
|
||||
, '\n================================================================\n')
|
||||
|
||||
print('Evolutionary features (n):'
|
||||
, len(X_evolFN)
|
||||
, '\nThese are:\n'
|
||||
|
@ -69,14 +75,13 @@ print('Categorical features (n):'
|
|||
, categorical_FN
|
||||
, '\n================================================================\n')
|
||||
|
||||
if ( len(X.columns) == len(X_ssFN) +len(X_evolFN) + len(X_genomicFN) + len(categorical_FN) ):
|
||||
if ( len(X.columns) == len(X_ssFN) + len(X_aaindexFN) + len(X_evolFN) + len(X_genomicFN) + len(categorical_FN) ):
|
||||
print('\nPass: No. of features match')
|
||||
else:
|
||||
print('\nFail: Count of feature mismatch')
|
||||
sys.exit('\nFail: Count of feature mismatch')
|
||||
|
||||
print('\n#####################################################################\n')
|
||||
|
||||
|
||||
################################################################################
|
||||
#==================
|
||||
# Baseline models
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue