Skip to content
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

v1.0.1 #79

Merged
merged 5 commits into from
Oct 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@ pyenv372
.python-version
.Rproj.user
scripts/scripts.Rproj
scripts/.Rhistory
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile.plexedpiper
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ RUN apt-get update \

# hadolint ignore=DL3059
RUN R -e 'install.packages("devtools")' \
&& R -e 'remotes::install_github("PNNL-Comp-Mass-Spec/[email protected].1", build_vignettes = FALSE)' \
&& R -e 'remotes::install_github("PNNL-Comp-Mass-Spec/[email protected].2", build_vignettes = FALSE)' \
&& R -e 'install.packages("optparse")' \
&& R -e 'install.packages("purrr")'
7 changes: 6 additions & 1 deletion wdl/proteomics_msgfplus.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version 1.0
workflow proteomics_msgfplus {
meta {
author: "David Jimenez-Morales"
version: "v1.0.0"
version: "v1.0.1"

task_labels: {
msgf_sequences: {
Expand Down Expand Up @@ -267,6 +267,11 @@ workflow proteomics_msgfplus {
isPTM = isPTM
}
}

output {
File? results_rii = wrapper_pp.results_rii
File? results_ratio = wrapper_pp.results_ratio
}
}

task msgf_sequences {
Expand Down
Loading