-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Did not add schema definition since those can be generated automatically via the nf-core tool. Also did not fully incorporate FragCounter into the new "coverage" step in anticipation of merge conflicts.
- Loading branch information
1 parent
5c20423
commit ec26a90
Showing
8 changed files
with
135 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
// | ||
// DRYCLEAN | ||
// | ||
|
||
include { DRYCLEAN } from '../../../modules/local/dryclean/main.nf' | ||
|
||
workflow COV_DRYCLEAN { | ||
|
||
take: | ||
input_dryclean // channel: [mandatory] [ meta, input ] | ||
pon_dryclean | ||
centered_dryclean | ||
cbs_dryclean | ||
cnsignif_dryclean | ||
wholeGenome_dryclean | ||
blacklist_dryclean | ||
blacklist_path_dryclean | ||
germline_filter_dryclean | ||
germline_file_dryclean | ||
human_dryclean | ||
field_dryclean | ||
build_dryclean | ||
|
||
main: | ||
versions = Channel.empty() | ||
dryclean_cov = Channel.empty() | ||
dryclean_obj = Channel.empty() | ||
|
||
DRYCLEAN(input_dryclean, pon_dryclean, centered_dryclean, cbs_dryclean, | ||
cnsignif_dryclean, wholeGenome_dryclean, blacklist_dryclean, | ||
blacklist_path_dryclean, germline_filter_dryclean, germline_file_dryclean, | ||
human_dryclean, field_dryclean, build_dryclean) | ||
|
||
dryclean_cov = DRYCLEAN.out.decomposed_cov | ||
dryclean_obj = DRYCLEAN.out.dryclean_object | ||
|
||
versions = DRYCLEAN.out.versions | ||
|
||
emit: | ||
dryclean_cov // only need to emit the coverage for JaBbA | ||
|
||
versions | ||
} | ||
|
Oops, something went wrong.