Skip to content
Closed
Show file tree
Hide file tree
Changes from 8 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
08a8985
Fixed Online vs. Local Mode section in User Guide
Imama-Kainat Mar 17, 2025
a2fa72b
fix the online vs local mode in user guide
Imama-Kainat Mar 17, 2025
8a9b110
Updated Windows Executable Logo to Match Documentation
Imama-Kainat Mar 18, 2025
dd68862
add verification of virtual environment
Imama-Kainat Mar 18, 2025
2295fc2
Fix the documentation
Imama-Kainat Mar 19, 2025
781d369
i have made a auto python script for my own ease for running stramlit…
Imama-Kainat Mar 19, 2025
7e61eaa
removed unnecessary imports from app.py
Imama-Kainat Mar 28, 2025
cd1bbf2
fix the user_guid.md online mode
Imama-Kainat Mar 28, 2025
c5a0605
fix the extra python environment checking in win_exe_with_pyinstaller
Imama-Kainat Mar 28, 2025
d72b090
Merge branch 'main' into fix-docs-aligned
Imama-Kainat Mar 28, 2025
2d4f431
fix the common/common.py in build_app.md
Imama-Kainat Mar 28, 2025
965bef6
removed the old logo and add the newlogo.ico and fix it
Imama-Kainat Mar 28, 2025
d4d3393
Merge branch 'fix-docs-aligned' of https://github.com/Imama-Kainat/st…
Imama-Kainat Mar 28, 2025
4452552
fix the documenation of toppworkflow of quickstart
Imama-Kainat Mar 28, 2025
95974c4
fix the file upload with current folder and code structure in toppfra…
Imama-Kainat Mar 29, 2025
ff1b149
Fix: update parameter input docs to match current file structure
Imama-Kainat Mar 29, 2025
2c0d864
fixing all
Imama-Kainat Mar 29, 2025
4d37db6
Revert "fixing all"
Imama-Kainat Mar 29, 2025
33ce177
Revert "Fix: update parameter input docs to match current file struct…
Imama-Kainat Mar 29, 2025
86846e7
fix comon/common.py file
Imama-Kainat Mar 29, 2025
64ea787
fix the paramters in toppframework.py
Imama-Kainat Mar 29, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions app.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import streamlit as st
from pathlib import Path

import json
# For some reason the windows version only works if this is imported here
import pyopenms


if "settings" not in st.session_state:
with open("settings.json", "r") as f:
st.session_state.settings = json.load(f)
Expand Down
Binary file modified assets/openms.ico
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See above

Binary file not shown.
2 changes: 1 addition & 1 deletion docs/toppframework.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def content():

The file `content/6_TOPP-Workflow.py` displays the workflow content and can, but does not have to be modified.

The `Workflow` class contains four important members, which you can use to build your own workflow:
The `Workflow` class contains five important members, which you can use to build your own workflow:

> **`self.params`:** dictionary of parameters stored in a JSON file in the workflow directory. Parameter handling is done automatically. Default values are defined in input widgets and non-default values are stored in the JSON file.

Expand Down
8 changes: 6 additions & 2 deletions docs/user_guide.md
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we should not remove this part of the documentation.

Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,16 @@ In the OpenMS web application, workspaces are designed to keep your analysis org
## Online and Local Mode Differences

There are a few key differences between operating in online and local modes:

- **File Uploads**:
- *Online Mode*: You can upload only one file at a time. This helps manage server load and optimizes performance.
- *Local Mode*: Multiple file uploads are supported, giving you flexibility when working with large datasets.

- **Workspace Access**:
- In online mode, workspaces are stored temporarily and will be cleared after seven days of inactivity.
- In local mode, workspaces are saved on your local machine, allowing for persistent storage. Workspace directory can be specified in the `settings.json`. Defaults to `..` (parent directory).
- *Online Mode*: Workspaces would be temporarily stored and cleared after seven days of inactivity.
- *Local Mode*: Workspaces are saved on your local machine, allowing for persistent storage.
- The workspace directory can be specified in `settings.json`.
- Defaults to `..` (parent directory).

## Downloading Results

Expand Down
5 changes: 5 additions & 0 deletions docs/win_exe_with_pyinstaller.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ pip install -r requirements.txt

#install pyinstaller
pip install pyinstaller

#Verify the correct Python environment is activated
echo "Python Executable: $(which python)"
#⚠ If the output does not show the virtual environment path, activate it first.

```

### streamlit files
Expand Down