Skip to content

Commit

Permalink
Merge branch 'dev' into add_date_dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucpen authored Nov 6, 2023
2 parents afeac2a + cd90ccd commit 431f907
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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
4 changes: 2 additions & 2 deletions subworkflows/local/alignment.nf
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ 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)
ch_gtf = gtf.map { it -> [[:], it] }
STAR_ALIGN(FASTP.out.reads, star_index, ch_gtf, false, platform, false)

SAMTOOLS_INDEX( STAR_ALIGN.out.bam )

Expand Down

0 comments on commit 431f907

Please sign in to comment.