Skip to content

Commit

Permalink
#185 remove protein_reverse in gui
Browse files Browse the repository at this point in the history
  • Loading branch information
jalew188 committed Aug 5, 2024
1 parent 730be5d commit d4f0301
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 27 deletions.
24 changes: 8 additions & 16 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# User defined:
peptdeep/logs
*.DS_Store
*sandbox*
*installed_models*
*.last_checked*
*mono_crash.*.blob

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
Expand Down Expand Up @@ -128,19 +136,3 @@ dmypy.json

# Pyre type checker
.pyre/

# User defined:
peptdeep/logs
*.DS_Store
*sandbox*
*installed_models*
*.last_checked*

# nbdev2
*.gitattributes
_docs*
# *_quarto.yml
# *sidebar.yml
*_proc*
# .gitconfig is now autogenerated
.gitconfig
1 change: 0 additions & 1 deletion peptdeep/_modidx.py

This file was deleted.

3 changes: 1 addition & 2 deletions peptdeep/constants/default_settings.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -265,10 +265,9 @@ library:
max_precursor_mz: 2000.0
decoy: None
decoy_choices:
- protein_reverse
- None
- pseudo_reverse
- diann
- None
max_frag_charge: 2
frag_types:
- b
Expand Down
2 changes: 0 additions & 2 deletions peptdeep/webui/rescore_ui.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import streamlit as st
import pandas as pd
import os
import time

from .ui_utils import files_in_folder_pandas
from peptdeep.settings import global_settings
Expand Down
1 change: 0 additions & 1 deletion peptdeep/webui/server.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import time
import os
import sys
import shutil
import multiprocessing as mp

Expand Down
1 change: 0 additions & 1 deletion peptdeep/webui/server_ui.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import streamlit as st
import os
import psutil
import time

from alphabase.yaml_utils import load_yaml

Expand Down
3 changes: 1 addition & 2 deletions peptdeep/webui/settings_ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,9 @@
from peptdeep.settings import (
update_settings,
add_user_defined_modifications,
global_settings,
)

from peptdeep.settings import global_settings

global_ui_settings = global_settings


Expand Down
3 changes: 1 addition & 2 deletions peptdeep/webui/transfer_ui.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
import streamlit as st
import pandas as pd
import os
import time
from datetime import datetime

from alphabase.yaml_utils import save_yaml
from alphabase.constants.modification import MOD_DF
import alphabase.psm_reader

from peptdeep.webui.server import queue_folder
from peptdeep.webui.ui_utils import (
Expand Down Expand Up @@ -147,6 +145,7 @@ def show():
"maxquant": "msms.txt",
"diann": "tsv",
"speclib_tsv": "tsv",
"msfragger_pepxml": "pepxml",
}
used_psm_types = list(psm_type_to_ext_dict.keys())

Expand Down

0 comments on commit d4f0301

Please sign in to comment.