Skip to content

Commit

Permalink
fix: more coding style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
matq007 committed Aug 2, 2024
1 parent df3a35b commit ff29455
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion conf/genomes.config
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ params {
star = "${params.genomes_base}/homo_sapiens/10x/refdata-gex-GRCh38-2024-A/star_2.7.10b"
}
}
}
}
2 changes: 1 addition & 1 deletion subworkflows/local/make_count_matrix.nf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ workflow MAKE_COUNT_MATRIX {
ch_versions = Channel.empty()

MTX_TO_CSV ( reads )

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

emit:
Expand Down
2 changes: 1 addition & 1 deletion subworkflows/local/starsolo.nf
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ workflow STARSOLO {
ch_versions = Channel.empty()

STARSOLO_ALIGN ( reads, index )

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

emit:
Expand Down
12 changes: 6 additions & 6 deletions workflows/primeseq.nf
Original file line number Diff line number Diff line change
Expand Up @@ -43,20 +43,20 @@ workflow PRIMESEQ {
//
// MODULE: Run STARSolo
//
ch_reads = ch_samplesheet.map {
meta, fastq -> [
[
id: meta.id,
ch_reads = ch_samplesheet.map {
meta, fastq -> [
[
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
], "CB_UMI_Simple", fastq
]
}
STARSOLO (
STARSOLO (
ch_reads,
file("$projectDir/assets/whitelist.tsv", checkIfExists: true),
ch_star_index
Expand Down

0 comments on commit ff29455

Please sign in to comment.