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

Addseqtk #2

Merged
merged 3 commits into from
Jun 19, 2024
Merged
Show file tree
Hide file tree
Changes from all 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 @@ -49,6 +49,11 @@
"branch": "master",
"git_sha": "b7ebe95761cd389603f9cc0e0dc384c0f663815a",
"installed_by": ["modules"]
},
"seqtk/cutn": {
"branch": "master",
"git_sha": "7f88aae93c69586c0789322b77743ee0ef469502",
"installed_by": ["modules"]
}
}
},
Expand Down
7 changes: 7 additions & 0 deletions modules/nf-core/seqtk/cutn/environment.yml

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

49 changes: 49 additions & 0 deletions modules/nf-core/seqtk/cutn/main.nf

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

41 changes: 41 additions & 0 deletions modules/nf-core/seqtk/cutn/meta.yml

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

57 changes: 57 additions & 0 deletions modules/nf-core/seqtk/cutn/tests/main.nf.test

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

70 changes: 70 additions & 0 deletions modules/nf-core/seqtk/cutn/tests/main.nf.test.snap

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

2 changes: 2 additions & 0 deletions modules/nf-core/seqtk/cutn/tests/tags.yml

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

16 changes: 16 additions & 0 deletions workflows/pairgenomealign.nf
U13bs1125 marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@

include { ASSEMBLYSCAN } from '../modules/nf-core/assemblyscan/main'
include { PAIRALIGN_M2M } from '../subworkflows/local/pairalign_m2m/main'
include { SEQTK_CUTN as SEQTK_CUTN_TARGET } from '../modules/nf-core/seqtk/cutn/main'
include { SEQTK_CUTN as SEQTK_CUTN_QUERY } from '../modules/nf-core/seqtk/cutn/main'
include { PAIRALIGN_M2O } from '../subworkflows/local/pairalign_m2o/main'
include { MULTIQC } from '../modules/nf-core/multiqc/main'
include { paramsSummaryMap } from 'plugin/nf-validation'
Expand All @@ -30,6 +32,20 @@ workflow PAIRGENOMEALIGN {
ch_versions = Channel.empty()
ch_multiqc_files = Channel.empty()

//
// MODULE: seqtk_cutn_target
//
SEQTK_CUTN_TARGET (
ch_targetgenome
)

//
// MODULE: seqtk_cutn_query
//
SEQTK_CUTN_QUERY (
ch_samplesheet
)

//
// MODULE: assembly-scan
//
Expand Down