Skip to content

Commit 1b95d70

Browse files
committed
Fix #802
1 parent 6078f2d commit 1b95d70

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
- [[#764](https://github.com/nf-core/rnaseq/issues/764)] - Test fails when using GCP due to missing tools in the basic biocontainer
1111
- [[#791](https://github.com/nf-core/rnaseq/issues/791)] - Add outputs for umitools dedup summary stats
1212
- [[#798](https://github.com/nf-core/rnaseq/issues/798)] - Decompress transcript fasta error
13+
- [[#802](https://github.com/nf-core/rnaseq/issues/802)] - `--bam_csi_index` error generated if `--skip_alignment` specified
1314
- Updated pipeline template to [nf-core/tools 2.3.2](https://github.com/nf-core/tools/releases/tag/2.3.2)
1415

1516
### Parameters

workflows/rnaseq.nf

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -167,10 +167,12 @@ workflow RNASEQ {
167167
ch_versions = ch_versions.mix(PREPARE_GENOME.out.versions)
168168

169169
// Check if contigs in genome fasta file > 512 Mbp
170-
PREPARE_GENOME
171-
.out
172-
.fai
173-
.map { WorkflowRnaseq.checkMaxContigSize(it, log) }
170+
if (!params.skip_alignment) {
171+
PREPARE_GENOME
172+
.out
173+
.fai
174+
.map { WorkflowRnaseq.checkMaxContigSize(it, log) }
175+
}
174176

175177
//
176178
// SUBWORKFLOW: Read in samplesheet, validate and stage input files

0 commit comments

Comments
 (0)