Skip to content

Commit

Permalink
Merge pull request #677 from JoseEspinosa/bump_stringtie_version
Browse files Browse the repository at this point in the history
Bump stringtie version to 2.1.7
  • Loading branch information
drpatelh authored Jul 23, 2021
2 parents 6fa0454 + 2e1e206 commit b003444
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Note, since the pipeline is now using Nextflow DSL2, each process will be run wi
|-------------|-------------|-------------|
| `umi_tools` | 1.1.1 | 1.1.2 |
| `samtools` | 1.10 | 1.12 |
| `stringtie` | 2.1.4 | 2.1.7 |

> **NB:** Dependency has been __updated__ if both old and new version information is present.
> **NB:** Dependency has been __added__ if just the new version information is present.
Expand Down
2 changes: 1 addition & 1 deletion modules.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
"git_sha": "e937c7950af70930d1f34bb961403d9d2aa81c7d"
},
"stringtie/stringtie": {
"git_sha": "e937c7950af70930d1f34bb961403d9d2aa81c7d"
"git_sha": "217303f5c1a92effb8a97c29294ee9f2e19f697e"
},
"subread/featurecounts": {
"git_sha": "e937c7950af70930d1f34bb961403d9d2aa81c7d"
Expand Down
9 changes: 5 additions & 4 deletions modules/nf-core/modules/stringtie/stringtie/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ process STRINGTIE {
mode: params.publish_dir_mode,
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), meta:meta, publish_by_meta:['id']) }

conda (params.enable_conda ? "bioconda::stringtie=2.1.4" : null)
conda (params.enable_conda ? "bioconda::stringtie=2.1.7" : null)
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
container "https://depot.galaxyproject.org/singularity/stringtie:2.1.4--h7e0af3c_0"
container "https://depot.galaxyproject.org/singularity/stringtie:2.1.7--h978d192_0"
} else {
container "quay.io/biocontainers/stringtie:2.1.4--h7e0af3c_0"
container "quay.io/biocontainers/stringtie:2.1.7--h978d192_0"
}

input:
Expand Down Expand Up @@ -48,8 +48,9 @@ process STRINGTIE {
-A ${prefix}.gene.abundance.txt \\
-C ${prefix}.coverage.gtf \\
-b ${prefix}.ballgown \\
-p $task.cpus \\
$options.args
stringtie --version > ${software}.version.txt
echo \$(stringtie --version 2>&1) > ${software}.version.txt
"""
}

0 comments on commit b003444

Please sign in to comment.