Spaces:
Sleeping
Sleeping
Commit
·
ac09c4e
1
Parent(s):
c497936
Update code/pdb_featureVector.py
Browse files
code/pdb_featureVector.py
CHANGED
@@ -281,9 +281,10 @@ def pdb(input_set, mode, impute):
|
|
281 |
FileNotFoundError
|
282 |
|
283 |
uniprot_matched = pd.merge(uniprot_matched, pdb_info, on='uniprotID', how='left')
|
|
|
284 |
uniprot_matched = uniprot_matched.astype(str)
|
285 |
uniprot_matched = uniprot_matched.drop_duplicates()
|
286 |
-
|
287 |
uniprot_matched = uniprot_matched.merge(pdb_fasta, on=['pdbID', 'chain'], how='left')
|
288 |
uniprot_matched = uniprot_matched.astype(str)
|
289 |
st.write('uniprot_matched', uniprot_matched)
|
|
|
281 |
FileNotFoundError
|
282 |
|
283 |
uniprot_matched = pd.merge(uniprot_matched, pdb_info, on='uniprotID', how='left')
|
284 |
+
st.write('pdb_info', pdb_info)
|
285 |
uniprot_matched = uniprot_matched.astype(str)
|
286 |
uniprot_matched = uniprot_matched.drop_duplicates()
|
287 |
+
st.write('pdb_fasta', pdb_fasta)
|
288 |
uniprot_matched = uniprot_matched.merge(pdb_fasta, on=['pdbID', 'chain'], how='left')
|
289 |
uniprot_matched = uniprot_matched.astype(str)
|
290 |
st.write('uniprot_matched', uniprot_matched)
|