Skip to content

Commit

Permalink
fix channel name
Browse files Browse the repository at this point in the history
  • Loading branch information
ens-ftricomi committed Aug 15, 2024
1 parent 978feea commit c026e83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pipelines/nextflow/workflows/star_alignment.nf
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ workflow STAR_ALIGNMENT {

def genomeAndDataToAlign = FETCH_GENOME(data.flatten())
def genomeIndexAndDataToAlign = INDEX_GENOME(genomeAndDataToAlign)
def pairedFastqFiles=DOWNLOAD_PAIRED_FASTQS(runAccessionMetadataRunOutput)
def starOutput = RUN_STAR(genomeIndexAndDataToAlign)
def pairedFastqFiles=DOWNLOAD_PAIRED_FASTQS(genomeIndexAndDataToAlign)
def starOutput = RUN_STAR(pairedFastqFiles)
def indexBamOutput = INDEX_BAM (starOutput)
if (params.bam2cram){
def cramFile = CONVERT_BAM_TO_CRAM (indexBamOutput)
Expand Down

0 comments on commit c026e83

Please sign in to comment.