Skip to content

Commit

Permalink
Adds FASTQE for summarising FASTQ scores as emojis
Browse files Browse the repository at this point in the history
  • Loading branch information
adamrtalbot committed Nov 1, 2024
1 parent 5e56fc3 commit 4d807e7
Show file tree
Hide file tree
Showing 7 changed files with 362 additions and 0 deletions.
5 changes: 5 additions & 0 deletions modules.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@
"git_sha": "666652151335353eef2fcd58880bcef5bc2928e1",
"installed_by": ["modules"]
},
"fastqe": {
"branch": "master",
"git_sha": "cab0b8fdc4f785810f49423d8141a0773c21eb3b",
"installed_by": ["modules"]
},
"multiqc": {
"branch": "master",
"git_sha": "cf17ca47590cc578dfb47db1c2a44ef86f89976d",
Expand Down
7 changes: 7 additions & 0 deletions modules/nf-core/fastqe/environment.yml

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

48 changes: 48 additions & 0 deletions modules/nf-core/fastqe/main.nf

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

50 changes: 50 additions & 0 deletions modules/nf-core/fastqe/meta.yml

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

100 changes: 100 additions & 0 deletions modules/nf-core/fastqe/tests/main.nf.test

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

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

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

10 changes: 10 additions & 0 deletions workflows/seqinspector.nf
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

include { SEQTK_SAMPLE } from '../modules/nf-core/seqtk/sample/main'
include { FASTQC } from '../modules/nf-core/fastqc/main'
include { FASTQE } from '../modules/nf-core/fastqe/main'

include { MULTIQC as MULTIQC_GLOBAL } from '../modules/nf-core/multiqc/main'
include { MULTIQC as MULTIQC_PER_TAG } from '../modules/nf-core/multiqc/main'
Expand Down Expand Up @@ -58,6 +59,15 @@ workflow SEQINSPECTOR {
ch_multiqc_files = ch_multiqc_files.mix(FASTQC.out.zip)
ch_versions = ch_versions.mix(FASTQC.out.versions.first())

// FASTQE
FASTQE(
ch_sample_sized.map {
meta, subsampled -> [meta, subsampled]
}
)
ch_multiqc_files = ch_multiqc_files.mix(FASTQE.out.tsv)
ch_versions = ch_versions.mix(FASTQE.out.versions.first())

//
// Collate and save software versions
//
Expand Down

0 comments on commit 4d807e7

Please sign in to comment.