Skip to content

Commit

Permalink
Minor formatting updates for the latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
ajnetzley committed Jan 15, 2025
1 parent 3a32b7f commit 4109684
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 9 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,11 @@ streamlit run app/app.py
Upon opening the app, you are directed to the Login page, where you enter a name. Next, you are directed to the Folder Selection page, where you are prompted to enter the path to the location of the ichorCNA output data. This should be a folder containing a subfolder for each of the samples that was run through ichorCNA. Then, optionally, you can input a path for where the output curated solutions will be written to. If you don't enter a path, a folder at your working directory named "curated_solutions/" will be created and used.

### Step 4) Curation, Navigation, and Exporting
Next, you are directed to the Tracker Dashboard page, which contains a summary dashboard overview of all of your present samples and their curation status. Here, users can chose to begin curation by selecting a sample, or directly export the "default" solution without curating. After selecting a sample to curate, you are directed to the Curation page, where you can begin visualizing the CNA plots. Specifically, you can toggle between all potential solutions, zoom in on any chromosome, and select a temporary selected solution for comparison. After confirming your selection, you can officially "Set as Curated Solution" to complete the curation, which sends you back to the Tracker Dashboard. After curating, you can select the "export" button to export the curated solution to the output folder.
Next, you are directed to the Tracker Dashboard page, which contains a summary dashboard overview of all of your samples and their curation status. Here, users can chose to begin curation by selecting a sample, or directly export the "default" solution without curating.

After selecting a sample to curate, you are directed to the Curation page, where you can begin visualizing the CNA plots. Specifically, you can toggle between all potential solutions, zoom in on any chromosome, and select a temporary selected solution for comparison. Additionally, users have the option to select a reference curated solution (from a different sample, perhaps the same patient) to aid in curation. After confirming your selection, you can officially "Set as Curated Solution" to complete the curation, which sends you back to the Tracker Dashboard.

After curating, you can select the "export" button to export the curated solution for that sample to the output folder. Additionally, you can select the "Export Curation Summary" button to produce a .txt curation summary file, or "Export All Samples" or "Export All Curated Samples" for exporting in bulk.


## Repository Structure
Expand Down
2 changes: 1 addition & 1 deletion app/app.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""
app.py
v0.1.0, 12/9/2024
v0.2.0, 1/15/2025
Author: Alexander Netzley, [email protected]
Ha Lab, Fred Hutchinson Cancer Research Center
Expand Down
5 changes: 2 additions & 3 deletions app/pages/curation.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""
curation.py
v0.1.0, 12/9/2024
v0.2.0, 1/15/2025
Author: Alexander Netzley, [email protected]
Ha Lab, Fred Hutchinson Cancer Research Center
Expand Down Expand Up @@ -197,5 +197,4 @@ def display():
st.rerun() # Refresh the app to load the tracker dashboard page

else:
st.write("No solution selected.")

st.write("No solution selected.")
2 changes: 1 addition & 1 deletion app/pages/folder_selection.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""
login.py
v0.1.0, 12/9/2024
v0.2.0, 1/15/2025
Author: Alexander Netzley, [email protected]
Ha Lab, Fred Hutchinson Cancer Research Center
Expand Down
2 changes: 1 addition & 1 deletion app/pages/login.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""
login.py
v0.1.0, 12/9/2024
v0.2.0, 1/15/2025
Author: Alexander Netzley, [email protected]
Ha Lab, Fred Hutchinson Cancer Research Center
Expand Down
2 changes: 1 addition & 1 deletion app/pages/tracker_dashboard.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""
tracker_dashboard.py
v0.1.0, 12/9/2024
v0.2.0, 1/15/2025
Author: Alexander Netzley, [email protected]
Ha Lab, Fred Hutchinson Cancer Research Center
Expand Down
2 changes: 1 addition & 1 deletion app/src/utils.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""
utils.py
v0.1.0, 12/9/2024
v0.2.0, 1/15/2025
Author: Alexander Netzley, [email protected]
Ha Lab, Fred Hutchinson Cancer Research Center
Expand Down

0 comments on commit 4109684

Please sign in to comment.