Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -545,6 +545,7 @@ if uploaded_files:
|
|
545 |
st.write(output_list[2]['result'].split('\n'))
|
546 |
st.write("☑ Table Extraction Done ...")
|
547 |
status.update(label="Gene and SNPs succesfully collected.")
|
|
|
548 |
L = {key: ['' if item == 'Unknown' else item for item in value] for key, value in L.items()}
|
549 |
L = {key: ['Not Available' if item == '' else item for item in value] for key, value in L.items()}
|
550 |
csv = pd.DataFrame(L)
|
|
|
545 |
st.write(output_list[2]['result'].split('\n'))
|
546 |
st.write("☑ Table Extraction Done ...")
|
547 |
status.update(label="Gene and SNPs succesfully collected.")
|
548 |
+
st.write(L)
|
549 |
L = {key: ['' if item == 'Unknown' else item for item in value] for key, value in L.items()}
|
550 |
L = {key: ['Not Available' if item == '' else item for item in value] for key, value in L.items()}
|
551 |
csv = pd.DataFrame(L)
|