Skip to content

Commit

Permalink
fixed fasta prep typo
Browse files Browse the repository at this point in the history
  • Loading branch information
erinyoung committed Dec 6, 2024
1 parent 6745531 commit fe037a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions subworkflows/local/initialize.nf
Original file line number Diff line number Diff line change
Expand Up @@ -480,9 +480,9 @@ workflow INITIALIZE {
.unique()
.set { ch_reads }

if (params.sample_sheet || params.fastas || params.multifastas) {
if (params.sample_sheet || params.fastas ) {
PREP(ch_fastas)
ch_prepped_fastas = FASTA_PREP.out.fastas
ch_prepped_fastas = PREP.out.fastas
} else {
ch_prepped_fastas = Channel.empty()
}
Expand Down

0 comments on commit fe037a4

Please sign in to comment.