Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: James A. Fellows Yates <[email protected]>
  • Loading branch information
TCLamnidis and jfy133 authored May 10, 2024
1 parent 8a73d3b commit 3721e1e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ params {
input = null

// Input BAM conversion
convert_inputbam = false
convert_inputbam = false

// References
genome = null
Expand Down
4 changes: 2 additions & 2 deletions workflows/eager.nf
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ workflow EAGER {
! meta.single_end
}

// Merge the R1 and other reads for single-end BAMs
// Put all the converted FASTQs back together again
CAT_FASTQ_CONVERTED_BAM( ch_single_end_reads )
ch_fastqs_from_converted_bams = CAT_FASTQ_CONVERTED_BAM.out.reads
.mix(ch_paired_end_reads)
Expand Down Expand Up @@ -190,7 +190,7 @@ workflow EAGER {
ch_multiqc_files = ch_multiqc_files.mix( MAP.out.mqc.collect{it[1]}.ifEmpty([]) )

//
// MODULE: indexing of user supplied input BAMs
// MODULE: indexing of user supplied unconverted input BAMs
//

if ( !params.convert_inputbam ){
Expand Down

0 comments on commit 3721e1e

Please sign in to comment.