-
Notifications
You must be signed in to change notification settings - Fork 5
FEAT SILAC & multiplexing support #149
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
self.config["multiplexing"]["target_channels"].split(",") | ||
) | ||
all_channels = sorted([int(c) for c in all_channels]) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe log all_channels
here?
alphadia/outputtransform.py
Outdated
@@ -806,29 +813,33 @@ def build_library( | |||
return mbr_spec_lib | |||
|
|||
|
|||
def build_stat_df(raw_name, run_df): | |||
def build_stat_df(raw_name, run_df, channels=[0]): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
type hints and a bit of doc? ;-)
@@ -26,6 +26,24 @@ | |||
# third party imports | |||
import torch | |||
|
|||
from alphabase.constants import modification | |||
|
|||
modification.add_new_modifications( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just out of curiosity: why are we adding these mods here?
No description provided.