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

Fix ref build #420

Merged
merged 5 commits into from
Oct 20, 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
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