Skip to content

Commit eb60259

Browse files
committed
added legend for sample groups, all selected if left blank
1 parent e1e8dc4 commit eb60259

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pages/01_Create_RDD_Count_Table.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,11 +221,13 @@ def load_demo_file(filename):
221221
"Sample groups to include",
222222
available_groups,
223223
default=["G1"] if "G1" in available_groups else None,
224+
help="Leave blank to include all groups in the analysis",
224225
)
225226
reference_groups_sel = st.multiselect(
226227
"Reference groups to include",
227228
available_groups,
228229
default=["G4"] if "G4" in available_groups else None,
230+
help="Leave blank to include all groups in the analysis",
229231
)
230232
else:
231233
st.info("👆 Please enter a GNPS Task ID above to load available groups.")
@@ -247,6 +249,7 @@ def load_demo_file(filename):
247249
"Sample groups to include",
248250
sorted(meta_df[sample_group_col].dropna().unique()),
249251
default=None,
252+
help="Leave blank to include all groups in the analysis",
250253
)
251254

252255
# -------- other parameters --------

0 commit comments

Comments
 (0)