-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
21 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
""" | ||
app.py | ||
v1.0.0, 11/6/2024 | ||
v0.1.0, 12/9/2024 | ||
Author: Alexander Netzley, [email protected] | ||
Ha Lab, Fred Hutchinson Cancer Research Center | ||
This module provides the wrapper function for running the IchorCurate app. | ||
This module provides the wrapper function for running the ichorCurate app. | ||
""" | ||
|
||
# Import packages | ||
|
@@ -21,7 +21,7 @@ | |
st.set_page_config(layout="wide") | ||
|
||
# Title of the app | ||
st.title('IchorCurate') | ||
st.title('ichorCurate') | ||
|
||
# Initialize session for login | ||
if "logged_in" not in st.session_state: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
""" | ||
curation.py | ||
v0.1.0, 11/6/2024 | ||
v0.1.0, 12/9/2024 | ||
Author: Alexander Netzley, [email protected] | ||
Ha Lab, Fred Hutchinson Cancer Research Center | ||
This module provides the main logic for the curation page of the IchorCurate app. | ||
This module provides the main logic for the curation page of the ichorCurate app. | ||
""" | ||
|
||
# Import packages | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
""" | ||
login.py | ||
v0.1.0, 12/2/2024 | ||
v0.1.0, 12/9/2024 | ||
Author: Alexander Netzley, [email protected] | ||
Ha Lab, Fred Hutchinson Cancer Research Center | ||
This module provides the logic for the folder selection page of the IchorCurate app. | ||
This module provides the logic for the folder selection page of the ichorCurate app. | ||
""" | ||
|
||
# Import packages | ||
|
@@ -15,7 +15,7 @@ def display(): | |
st.title("Folder Selection") | ||
|
||
# Input field for folder path | ||
folder_path = st.text_input("Enter the path to the IchorCNA data you wish to curate. This should be a path to a folder containing subdirectories named for each sample") | ||
folder_path = st.text_input("Enter the path to the ichorCNA data you wish to curate. This should be a path to a folder containing subdirectories named for each sample") | ||
|
||
if folder_path: | ||
# Validate if the folder exists | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
""" | ||
login.py | ||
v0.1.0, 11/6/2024 | ||
v0.1.0, 12/9/2024 | ||
Author: Alexander Netzley, [email protected] | ||
Ha Lab, Fred Hutchinson Cancer Research Center | ||
This module provides the logic for the entry login page of the IchorCurate app. | ||
This module provides the logic for the entry login page of the ichorCurate app. | ||
""" | ||
|
||
# Import packages | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
""" | ||
tracker_dashboard.py | ||
v0.1.0, 11/6/2024 | ||
v0.1.0, 12/9/2024 | ||
Author: Alexander Netzley, [email protected] | ||
Ha Lab, Fred Hutchinson Cancer Research Center | ||
This module provides the main logic for the tracker dashboard page of the IchorCurate app. | ||
This module provides the main logic for the tracker dashboard page of the ichorCurate app. | ||
""" | ||
|
||
# Import packages | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
""" | ||
utils.py | ||
v1.0.0, 11/6/2024 | ||
v0.1.0, 12/9/2024 | ||
Author: Alexander Netzley, [email protected] | ||
Ha Lab, Fred Hutchinson Cancer Research Center | ||
This module provides helper functions for the IchorCurate app. | ||
This module provides helper functions for the ichorCurate app. | ||
""" | ||
# Import packages | ||
import fitz # PyMuPDF | ||
|