Skip to content
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion modules/nf-core/cellranger/multi/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@ process CELLRANGER_MULTI {
if (has_gex) {
gex_section << '[gene-expression]'
gex_section << "reference,\$PWD/${gex_reference.name}"
if (gex_frna_probeset) gex_section << "probe-set,\$PWD/${gex_frna_probeset.name}"

// still allow frna probe-set for flex, but avoid adding when CMO or OCM barcodes are present, since those are mutually exclusive with frna
if (gex_frna_probeset && !has_cmo && !has_ocm) gex_section << "probe-set,\$PWD/${gex_frna_probeset.name}"

// GEX options forwarded from the gex_options input map
['filter-probes', 'r1-length', 'r2-length', 'chemistry', 'expect-cells', 'force-cells',
Expand Down
Loading