Skip to content

Commit d849559

Browse files
committed
removed manual testing function
1 parent d3d5849 commit d849559

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

pages/1_1. Mapping_local_metadata.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@
4343
download = st.download_button("Press to download SDRF file",ParsingModule.convert_df(template_df), "intermediate_SDRF.sdrf.tsv", help="download your SDRF file")
4444

4545
# Ask the user to upload their own metadata file and to map it to the columns of the template file
46-
test = st.checkbox('Test manual')
4746
metadata_sheet = st.file_uploader(
4847
"Upload your local metadata file (.csv, .tsv or .xls)", type=["csv", "tsv", "xlsx"]
4948
)
@@ -65,10 +64,7 @@
6564
"There is a mismatch in the number of uploaded files and the number of files in the metadata sheet",
6665
icon="🚨",
6766
)
68-
if test:
69-
st.write('**Test mode**')
70-
st.session_state["template_df"] = metadata_df
71-
st.dataframe(template_df)
67+
7268

7369
meta_columns = list(metadata_df.columns)
7470
template_columns = [

0 commit comments

Comments
 (0)