Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds FASTQE for summarising FASTQ scores as emojis #66

Open
wants to merge 3 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.

14 changes: 12 additions & 2 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 All @@ -28,8 +29,8 @@ workflow SEQINSPECTOR {
main:

ch_versions = Channel.empty()
ch_multiqc_files = Channel.empty()
ch_multiqc_extra_files = Channel.empty()
ch_multiqc_files = Channel.empty()
ch_multiqc_extra_files = Channel.empty()
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why the extra spaces?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh alignment. My editor is still messed up. Can you put it back please?

adamrtalbot marked this conversation as resolved.
Show resolved Hide resolved
ch_multiqc_reports = Channel.empty()

//
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
Loading