Skip to content

Commit

Permalink
correct path
Browse files Browse the repository at this point in the history
  • Loading branch information
elena-krismer committed Feb 23, 2023
1 parent 6513e34 commit e3840b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions alphastats/gui/pages/02_Import Data.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,8 +219,8 @@ def upload_metadatafile(software):
def load_sample_data():
_this_file = os.path.abspath(__file__)
_this_directory = os.path.dirname(_this_file)
filepath = os.path.join(_this_directory, "sample_data/proteinGroups.txt")
metadatapath = os.path.join(_this_directory, "sample_data/metadata.xlsx")
filepath = os.path.join(_this_directory, "sample_data/proteinGroups.txt").replace("pages/","")
metadatapath = os.path.join(_this_directory, "sample_data/metadata.xlsx").replace("pages/","")

loader = MaxQuantLoader(file=filepath)
ds = DataSet(
Expand Down

0 comments on commit e3840b5

Please sign in to comment.