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

idmapper changes #60

Merged
merged 2 commits into from
Jan 28, 2022
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: 0 additions & 1 deletion conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ params {
}
'isobaricanalyzer' {
args = ''
publish_files = ['log': '']
}
'searchenginemsgf' {
args = ''
Expand Down
1 change: 1 addition & 0 deletions modules/local/openms/idmapper/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ process IDMAPPER {
-mz_tolerance $params.mz_tolerance \\
-mz_measure $params.mz_measure \\
-mz_reference $params.mz_reference \\
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you forgot to remove the old param

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

and the docs/param description for it maybe too

-mz_reference 'precursor'
-debug 100 \\
-out ${id_file.baseName}_map.consensusXML \\
> ${id_file.baseName}_map.log
Expand Down
6 changes: 3 additions & 3 deletions modules/local/samplesheet_check.nf
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ process SAMPLESHEET_CHECK {
mode: params.publish_dir_mode,
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:'pipeline_info', meta:[:], publish_by_meta:[]) }

conda (params.enable_conda ? "conda-forge::pandas_schema bioconda::sdrf-pipelines=0.0.19" : null)
conda (params.enable_conda ? "conda-forge::pandas_schema bioconda::sdrf-pipelines=0.0.20" : null)
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
container "https://depot.galaxyproject.org/singularity/sdrf-pipelines:0.0.18--pyhdfd78af_0"
container "https://depot.galaxyproject.org/singularity/sdrf-pipelines:0.0.20--pyhdfd78af_0"
} else {
container "quay.io/biocontainers/sdrf-pipelines:0.0.18--pyhdfd78af_0"
container "quay.io/biocontainers/sdrf-pipelines:0.0.20--pyhdfd78af_0"
}

input:
Expand Down
8 changes: 4 additions & 4 deletions modules/local/sdrfparsing/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ process SDRFPARSING {
mode: params.publish_dir_mode,
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), meta:[:], publish_by_meta:[]) }

conda (params.enable_conda ? "conda-forge::pandas_schema bioconda::sdrf-pipelines=0.0.19" : null)
conda (params.enable_conda ? "conda-forge::pandas_schema bioconda::sdrf-pipelines=0.0.20" : null)
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
container "https://depot.galaxyproject.org/singularity/sdrf-pipelines:0.0.18--pyhdfd78af_0"
container "https://depot.galaxyproject.org/singularity/sdrf-pipelines:0.0.20--pyhdfd78af_0"
} else {
container "quay.io/biocontainers/sdrf-pipelines:0.0.18--pyhdfd78af_0"
container "quay.io/biocontainers/sdrf-pipelines:0.0.20--pyhdfd78af_0"
}

input:
Expand All @@ -36,6 +36,6 @@ process SDRFPARSING {

parse_sdrf $options.args -s ${sdrf} > sdrf_parsing.log

echo "0.0.19" > sdrf-pipelines.version.txt
echo "0.0.20" > sdrf-pipelines.version.txt
"""
}