File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments