Skip to content

Commit

Permalink
Rename local STAR module
Browse files Browse the repository at this point in the history
  • Loading branch information
scwatts committed May 3, 2024
1 parent 1419fb9 commit e11a387
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: star
name: star_align
channels:
- conda-forge
- bioconda
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
process STAR {
process STAR_ALIGN {
tag "${meta.id}"
label 'process_high'

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: star
name: star_align
description: An ultrafast universal RNA-seq aligner
keywords:
- rna-seq
Expand Down
10 changes: 5 additions & 5 deletions subworkflows/local/read_alignment_rna/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import Utils
include { GATK4_MARKDUPLICATES } from '../../../modules/nf-core/gatk4/markduplicates/main'
include { SAMBAMBA_MERGE } from '../../../modules/local/sambamba/merge/main'
include { SAMTOOLS_SORT } from '../../../modules/nf-core/samtools/sort/main'
include { STAR } from '../../../modules/local/star/main'
include { STAR_ALIGN } from '../../../modules/local/star/align/main'

workflow READ_ALIGNMENT_RNA {
take:
Expand Down Expand Up @@ -55,7 +55,7 @@ workflow READ_ALIGNMENT_RNA {
}

//
// MODULE: STAR
// MODULE: STAR alignment
//
// Create process input channel
// channel: [ meta_star, fastq_fwd, fastq_rev ]
Expand All @@ -75,19 +75,19 @@ workflow READ_ALIGNMENT_RNA {
}

// Run process
STAR(
STAR_ALIGN(
ch_star_inputs,
genome_star_index,
)

ch_versions = ch_versions.mix(STAR.out.versions)
ch_versions = ch_versions.mix(STAR_ALIGN.out.versions)

//
// MODULE: SAMtools sort
//
// Create process input channel
// channel: [ meta_sort, bam ]
ch_sort_inputs = STAR.out.bam
ch_sort_inputs = STAR_ALIGN.out.bam
.map { meta_star, bam ->
def meta_sort = [
*:meta_star,
Expand Down

0 comments on commit e11a387

Please sign in to comment.