Skip to content

Commit

Permalink
Merge pull request #94 from zifornd/pre-release-fixes-for-v1
Browse files Browse the repository at this point in the history
pre-release fixes
  • Loading branch information
jma1991 committed Oct 9, 2023
2 parents afef807 + b5f7341 commit 9fe10b0
Show file tree
Hide file tree
Showing 7 changed files with 57 additions and 7 deletions.
4 changes: 2 additions & 2 deletions assets/multiqc_config.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
report_comment: >
This report has been generated by the <a href="https://github.com/nf-core/rnasplice/releases/tag/1.0.0" target="_blank">nf-core/rnasplice</a>
analysis pipeline. For information about how to interpret these results, please see the
<a href="https://nf-co.re/rnasplice/1.0.0/docs/output" target="_blank">documentation</a>.
report_section_order:
"nf-core-rnasplice-methods-description":
order: -1000
Expand Down
4 changes: 2 additions & 2 deletions modules.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
},
"fastqc": {
"branch": "master",
"git_sha": "911696ea0b62df80e900ef244d7867d177971f73",
"git_sha": "a33464f205fa15305bfe268546f6607b6f4d4753",
"installed_by": ["modules", "fastq_fastqc_umitools_trimgalore"]
},
"gffread": {
Expand Down Expand Up @@ -141,7 +141,7 @@
},
"fastq_fastqc_umitools_trimgalore": {
"branch": "master",
"git_sha": "a9784afdd5dcda23b84e64db75dc591065d64653",
"git_sha": "dedc0e31087f3306101c38835d051bf49789445a",
"installed_by": ["subworkflows"]
}
}
Expand Down
2 changes: 1 addition & 1 deletion modules/local/dexseq_count.nf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ process DEXSEQ_COUNT {
conda "bioconda::htseq=2.0.2"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/htseq:2.0.2--py310ha14a713_0' :
'biocontainers/htseq:2.0.2--py310ha14a713_0' }"
'biocontainers/htseq:2.0.2--py310ha14a713_0' }"

input:
tuple val(meta), path(bam), path (gff)
Expand Down
40 changes: 40 additions & 0 deletions modules/nf-core/fastqc/tests/main.nf.test

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions modules/nf-core/fastqc/tests/main.nf.test.snap

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion workflows/rnasplice.nf
Original file line number Diff line number Diff line change
Expand Up @@ -756,7 +756,7 @@ workflow RNASPLICE {
ch_multiqc_files = ch_multiqc_files.mix(FASTQ_FASTQC_UMITOOLS_TRIMGALORE.out.trim_zip.collect{it[1]}.ifEmpty([]))
ch_multiqc_files = ch_multiqc_files.mix(FASTQ_FASTQC_UMITOOLS_TRIMGALORE.out.trim_log.collect{it[1]}.ifEmpty([]))

ch_multiqc_files = ch_fail_trimming_multiqc.collectFile(name: 'fail_trimmed_samples_mqc.tsv').ifEmpty([])
ch_multiqc_files = ch_multiqc_files.mix(ch_fail_trimming_multiqc.collectFile(name: 'fail_trimmed_samples_mqc.tsv').ifEmpty([]))

}

Expand Down

0 comments on commit 9fe10b0

Please sign in to comment.