Skip to content

Commit

Permalink
bump streamlit to 1.38.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mschwoer committed Sep 9, 2024
1 parent 24e0899 commit 5bbb29e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ In case you want to use the Graphical User Interface, use following command in t
```bash
alphastats gui
```
If you get an `AxiosError: Request failed with status code 403'` when uploading files, try running `DISABLE_XSRF=1 alphastats gui`.

AlphaStats can be imported as a Python package into any Python script or notebook with the command `import alphastats`.
A brief [Jupyter notebook tutorial](nbs/getting_started.ipynb) on how to use the API is also present in the [nbs folder](nbs).
Expand Down
6 changes: 3 additions & 3 deletions alphastats/gui/pages/02_Import Data.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,14 @@ def _finalize_data_loading(
loader, metadata_columns, dataset = load_example_data()

_finalize_data_loading(loader, metadata_columns, dataset)
# st.page_link("pages/03_Data Overview.py", label="=> Go to data overview..") # TODO: needs newer streamlit
st.page_link("pages/03_Data Overview.py", label="=> Go to data overview..")
st.stop()


st.markdown("### Import Proteomics Data")
if "dataset" in st.session_state:
st.info(f"DataSet already present.")
# st.page_link("pages/03_Data Overview.py", label="=> Go to data overview..") # TODO: needs newer streamlit
st.page_link("pages/03_Data Overview.py", label="=> Go to data overview..")
st.stop()


Expand Down Expand Up @@ -167,4 +167,4 @@ def _finalize_data_loading(
st.info("DataSet has been created.")
_finalize_data_loading(loader, metadata_columns, dataset)

# st.page_link("pages/03_Data Overview.py", label="=> Go to data overview..") # TODO: needs newer streamlit
st.page_link("pages/03_Data Overview.py", label="=> Go to data overview..")
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ scikit-learn==1.2.2
scipy==1.10.1
sklearn_pandas==2.2.0
statsmodels==0.14.0
streamlit==1.33.0
streamlit==1.38.0
swifter==1.2.0
tables==3.7.0
tqdm>=4.64.0
Expand Down

0 comments on commit 5bbb29e

Please sign in to comment.