Spaces:
Sleeping
Sleeping
Commit
·
abc0f78
1
Parent(s):
5f08abe
Update code/alphafold_featureVector.py
Browse files
code/alphafold_featureVector.py
CHANGED
@@ -247,13 +247,15 @@ def alphafold(input_set, mode, impute):
|
|
247 |
'Q8WZ42': 332}
|
248 |
for k, v in model_count.items():
|
249 |
model_count[k] = int(v / 2) # two types of files for each file.
|
|
|
250 |
uniprot_matched = uniprot_matched.astype(str)
|
251 |
uniprot_matched.domStart = uniprot_matched.domStart.astype(float)
|
252 |
uniprot_matched.domEnd = uniprot_matched.domEnd.astype(float)
|
253 |
uniprot_matched.domStart = uniprot_matched.domStart.astype(int)
|
254 |
uniprot_matched.domEnd = uniprot_matched.domEnd.astype(int)
|
255 |
|
256 |
-
|
|
|
257 |
|
258 |
## Main part to add annotation information, align sequences, finding distances
|
259 |
|
|
|
247 |
'Q8WZ42': 332}
|
248 |
for k, v in model_count.items():
|
249 |
model_count[k] = int(v / 2) # two types of files for each file.
|
250 |
+
st.write(model_count)
|
251 |
uniprot_matched = uniprot_matched.astype(str)
|
252 |
uniprot_matched.domStart = uniprot_matched.domStart.astype(float)
|
253 |
uniprot_matched.domEnd = uniprot_matched.domEnd.astype(float)
|
254 |
uniprot_matched.domStart = uniprot_matched.domStart.astype(int)
|
255 |
uniprot_matched.domEnd = uniprot_matched.domEnd.astype(int)
|
256 |
|
257 |
+
st.write('uniprot_matched')
|
258 |
+
st.write(uniprot_matched)
|
259 |
|
260 |
## Main part to add annotation information, align sequences, finding distances
|
261 |
|