Skip to content

Commit

Permalink
Merge pull request #420 from nf-core/fix_ref_build
Browse files Browse the repository at this point in the history
Fix ref build
  • Loading branch information
rannick authored Oct 20, 2023
2 parents 91a5927 + fffb37b commit cf845e1
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed

- Removed `--fusioninspector_filter` and `--fusionreport_filter` in favor of `--tools_cutoff` (default = 1, no filters applied) [#389](https://github.com/nf-core/rnafusion/pull/389)
- Now publishing convert2bed output to convert2bed to keep the output file for mosdepth [#420](https://github.com/nf-core/rnafusion/pull/420)
- No more checks for existence of samplesheet, which made building references fail (building references uses a fake sample sheet if none is provided) [#420](https://github.com/nf-core/rnafusion/pull/420)

### Fixed

- Fix channel i/o issue in StringTie workflow and add StringTie in github CI tests [#416](https://github.com/nf-core/rnafusion/pull/416)
- Updated COSMIC database to fix 404 error while downloading fusionreport references [#420](https://github.com/nf-core/rnafusion/pull/420)

### Removed

Expand Down
13 changes: 8 additions & 5 deletions conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,14 @@ process {
]
}

withName: CONVERT2BED {
publishDir = [
path: { "${params.genomes_base}/convert2bed" },
mode: params.publish_dir_mode,
saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
]
}

withName: CUSTOM_DUMPSOFTWAREVERSIONS {
publishDir = [
path: { "${params.outdir}/pipeline_info" },
Expand Down Expand Up @@ -178,11 +186,6 @@ process {
ext.when = { !params.skip_qc && !params.fusioninspector_only && (params.starfusion || params.all)}
}

withName: REFORMAT {
ext.args = "forcetrimright=75"
ext.args2 = "forcetrimleft=75"
}

withName: SAMPLESHEET_CHECK {
publishDir = [
path: { "${params.outdir}/pipeline_info" },
Expand Down
2 changes: 1 addition & 1 deletion modules/local/fusionreport/detect/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ process FUSIONREPORT {

// Note: 2.7X indices incompatible with AWS iGenomes.
conda "bioconda::star=2.7.9a"
container "docker.io/clinicalgenomics/fusion-report:2.1.5p4"
container "docker.io/clinicalgenomics/fusion-report:2.1.5p5"


input:
Expand Down
2 changes: 1 addition & 1 deletion modules/local/fusionreport/download/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ process FUSIONREPORT_DOWNLOAD {

// Note: 2.7X indices incompatible with AWS iGenomes.
conda "bioconda::star=2.7.9a"
container "docker.io/clinicalgenomics/fusion-report:2.1.5p4"
container "docker.io/clinicalgenomics/fusion-report:2.1.5p5"

input:
val(username)
Expand Down
1 change: 0 additions & 1 deletion nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
"input": {
"type": "string",
"format": "file-path",
"exists": true,
"mimetype": "text/csv",
"pattern": "^\\S+\\.csv$",
"description": "Path to comma-separated file containing information about the samples in the experiment.",
Expand Down

0 comments on commit cf845e1

Please sign in to comment.