Skip to content

Commit

Permalink
fix: broken stuff after module upgrades
Browse files Browse the repository at this point in the history
  • Loading branch information
matq007 committed Aug 2, 2024
1 parent ff29455 commit 2ef0d66
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
6 changes: 5 additions & 1 deletion subworkflows/local/starsolo.nf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@ workflow STARSOLO {

ch_versions = Channel.empty()

STARSOLO_ALIGN ( reads, index )
STARSOLO_ALIGN (
reads,
Channel.fromPath("$projectDir/assets/whitelist.tsv", checkIfExists: true),
index
)

ch_versions = ch_versions.mix(STARSOLO_ALIGN.out.versions.first())

Expand Down
11 changes: 4 additions & 7 deletions workflows/primeseq.nf
Original file line number Diff line number Diff line change
Expand Up @@ -48,19 +48,14 @@ workflow PRIMESEQ {
[
id: meta.id,
plate_id: meta.plate_id,
whitelist: ,
umi_len: 16,
umi_start: 13,
cb_len: 12,
cb_start: 1,
], "CB_UMI_Simple", fastq
]
}
STARSOLO (
ch_reads,
file("$projectDir/assets/whitelist.tsv", checkIfExists: true),
ch_star_index
)
STARSOLO ( ch_reads, ch_star_index )
ch_versions = ch_versions.mix(STARSOLO.out.versions.first())
ch_multiqc_files = ch_multiqc_files.mix(STARSOLO.out.for_multiqc)

Expand Down Expand Up @@ -117,7 +112,9 @@ workflow PRIMESEQ {
ch_multiqc_files.collect(),
ch_multiqc_config.toList(),
ch_multiqc_custom_config.toList(),
ch_multiqc_logo.toList()
ch_multiqc_logo.toList(),
false,
false
)

emit:
Expand Down

0 comments on commit 2ef0d66

Please sign in to comment.