Skip to content

Commit

Permalink
Merge pull request #53 from ypriverol/dev
Browse files Browse the repository at this point in the history
conda increase to 0.0.19
  • Loading branch information
ypriverol authored Jan 7, 2022
2 parents 0c97cf9 + f49c48a commit d37fd49
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ testing*
*.pyc
.idea/
.idea/*
*.log
2 changes: 1 addition & 1 deletion modules/local/samplesheet_check.nf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ 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.18" : null)
conda (params.enable_conda ? "conda-forge::pandas_schema bioconda::sdrf-pipelines=0.0.19" : null)
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
container "https://depot.galaxyproject.org/singularity/sdrf-pipelines:0.0.18--pyhdfd78af_0"
} else {
Expand Down
4 changes: 2 additions & 2 deletions modules/local/sdrfparsing/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ 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.18" : null)
conda (params.enable_conda ? "conda-forge::pandas_schema bioconda::sdrf-pipelines=0.0.19" : null)
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
container "https://depot.galaxyproject.org/singularity/sdrf-pipelines:0.0.18--pyhdfd78af_0"
} else {
Expand All @@ -36,6 +36,6 @@ process SDRFPARSING {
parse_sdrf $options.args -s ${sdrf} > sdrf_parsing.log
echo "0.0.18" > sdrf-pipelines.version.txt
echo "0.0.19" > sdrf-pipelines.version.txt
"""
}

0 comments on commit d37fd49

Please sign in to comment.