-
Notifications
You must be signed in to change notification settings - Fork 46
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
Added changes for Multiple scripts execution + Documentation #151
Conversation
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
PR Code Suggestions ✨Explore these optional code suggestions:
|
ssh new_user@remote_server | ||
``` | ||
|
||
If successful, the new user should be logged into the remote server. |
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.
As an extra step, we should make sure to include instructions to store the private key as a secret within the MSstats repo (i.e. settings -> secrets -> SSH_PRIVATE_KEY)
# Useful for future datasets where BioReplicate and Condition columns are missing | ||
|
||
# fragpipe_raw$Condition = unlist(lapply(fragpipe_raw$Run, function(x){ | ||
# paste(str_split(x, "\\_")[[1]][4:5], collapse="_") | ||
# })) | ||
|
||
# fragpipe_raw$BioReplicate = unlist(lapply(fragpipe_raw$Run, function(x){ | ||
# paste(str_split(x, "\\_")[[1]][4:7], collapse="_") | ||
# })) |
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.
These comments can be removed. There isn't a pre-defined universal format for run ID, we just got lucky that this dataset's format was in a parseable format.
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.
Done.
benchmark/calculateMetrics.R
Outdated
## significant implies positives | ||
## insignificant implies negative |
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.
You can remove these comments. In the context of statistics & proteomics, "significant" means there was a noticeable shift in protein abundance outside of 95% confidence intervals. This shift in protein abundance can be a positive shift or a negative shift (which is why these comments can be confusing).
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.
Done.
Motivation and Context
Please include relevant motivation and context of the problem along with a short summary of the solution.
Changes
Please provide a detailed bullet point list of your changes.
Note : Before merge, ensure changing branch name in benchmark.yml
Testing
Please describe any unit tests you added or modified to verify your changes.
Checklist Before Requesting a Review