Skip to content

Commit

Permalink
fixing error of missing params
Browse files Browse the repository at this point in the history
  • Loading branch information
JeeH-K committed May 7, 2024
1 parent 5c86414 commit d27d920
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pages/FileUploadTagger.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import numpy as np
from src.masstable import parseFLASHDeconvOutput, parseFLASHTaggerOutput
from src.common import page_setup, v_space, save_params, reset_directory
from pages.FileUpload import remove_selected_mzML_files


def initializeWorkspace(input_file_types_: list, parsed_df_types_: list) -> None:
Expand Down Expand Up @@ -153,9 +154,8 @@ def parsingWithProgressBar(infiles_deconv, infiles_anno, infiles_tag, infiles_pr
for success in successes:
success.empty()

params = page_setup()
def content():
page_setup()

# make directory to store deconv and anno mzML files & initialize data storage
input_types = ["deconv-mzMLs", "anno-mzMLs", "tags-tsv", "proteins-tsv"]
parsed_df_types = ["deconv_dfs", "anno_dfs", "tag_dfs", "protein_dfs"]
Expand Down
1 change: 0 additions & 1 deletion src/sequence.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import streamlit as st
from pyopenms import Residue, AASequence, ModificationsDB
import numpy as np


fixed_mod_cysteine = {'No modification': 0,
Expand Down

0 comments on commit d27d920

Please sign in to comment.