Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Anders Jemt <jemten@users.noreply.github.com>
  • Loading branch information
Lucpen and jemten authored Nov 6, 2023
1 parent 91e7ea0 commit cd90ccd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion assets/multiqc_config.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
report_comment: >
This report has been generated by the <a href="https://github.com/genomic-medicine-sweden/tomte/releases/tag/0.1.0" target="_blank">genomic-medicine-sweden/tomte</a>
This report has been generated by the <a href="https://github.com/genomic-medicine-sweden/tomte/releases/tag/1.0.0" target="_blank">genomic-medicine-sweden/tomte</a>
analysis pipeline. For information about how to interpret these results, please see the
<a href="https://github.com/genomic-medicine-sweden/tomte/blob/master/docs/output.md" target="_blank">documentation</a>.
report_section_order:
Expand Down
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ manifest {
description = """Pipeline to analyse RNAseq from raredisease patients"""
mainScript = 'main.nf'
nextflowVersion = '!>=23.04.0'
version = '0.1.0'
version = '1.0.0'
doi = ''
}

Expand Down
2 changes: 1 addition & 1 deletion subworkflows/local/alignment.nf
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ workflow ALIGNMENT {
FASTP(ch_cat_fastq, [], false, false)

ch_gtf = gtf.map { it -> [[:], it] }
STAR_ALIGN(FASTP.out.reads, star_index, ch_gtf, false, 'illumina', false)
STAR_ALIGN(FASTP.out.reads, star_index, ch_gtf, false, platform, false)

SAMTOOLS_INDEX( STAR_ALIGN.out.bam )

Expand Down

0 comments on commit cd90ccd

Please sign in to comment.