-
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.
Some parameters were removed since they are no longer present in the current jba executable. Others were modified. Did not add ASCAT since the default purity/ploidy caller is actually sequenza which is imported by default (the JaBbA docker container also has it installed).
- Loading branch information
1 parent
2bb6695
commit 5d1b1ba
Showing
4 changed files
with
262 additions
and
45 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
// | ||
// JaBbA | ||
// | ||
|
||
include { JABBA } from '../../../modules/local/jabba/main.nf' | ||
|
||
workflow COV_JUNC_JABBA { | ||
|
||
take: | ||
cov_rds_jabba | ||
junction_jabba | ||
j_supp_jabba | ||
blacklist_junctions_jabba | ||
geno_jabba | ||
indel_jabba | ||
tfield_jabba | ||
iter_jabba | ||
rescue_window_jabba | ||
rescue_all_jabba | ||
nudgebalanced_jabba | ||
edgenudge_jabba | ||
strict_jabba | ||
allin_jabba | ||
field_jabba | ||
cbs_seg_rds_jabba | ||
maxna_jabba | ||
blacklist_coverage_jabba | ||
cbs_nseg_rds_jabba | ||
het_pileups_wgs_jabba | ||
ploidy_jabba | ||
purity_jabba | ||
pp_method_jabba | ||
cnsignif_jabba | ||
slack_jabba | ||
linear_jabba | ||
tilim_jabba | ||
epgap_jabba | ||
outdir_jabba | ||
name_jabba | ||
fix_thres_jabba | ||
lp_jabba | ||
ism_jabba | ||
filter_loose_jabba | ||
gurobi_jabba | ||
nonintegral_jabba | ||
verbose_jabba | ||
help_jabba | ||
|
||
main: | ||
versions = Channel.empty() | ||
jabba_rds = Channel.empty() | ||
jabba_gg = Channel.empty() | ||
jabba_vcf = Channel.empty() | ||
jabba_raw_rds = Channel.empty() | ||
opti = Channel.empty() | ||
jabba_seg = Channel.empty() | ||
karyograph = Channel.empty() | ||
|
||
JABBA(cov_rds_jabba, junction_jabba, j_supp_jabba, | ||
blacklist_junctions_jabba, geno_jabba, indel_jabba, tfield_jabba, | ||
iter_jabba, rescue_window_jabba, rescue_all_jabba, nudgebalanced_jabba, | ||
edgenudge_jabba, strict_jabba, allin_jabba, field_jabba, cbs_seg_rds_jabba, | ||
maxna_jabba, blacklist_coverage_jabba, cbs_nseg_rds_jabba, | ||
het_pileups_wgs_jabba, ploidy_jabba, purity_jabba, pp_method_jabba, | ||
cnsignif_jabba, slack_jabba, linear_jabba, tilim_jabba, epgap_jabba, | ||
outdir_jabba, name_jabba, fix_thres_jabba, lp_jabba, ism_jabba, | ||
filter_loose_jabba, gurobi_jabba, nonintegral_jabba, verbose_jabba, | ||
help_jabba) | ||
|
||
jabba_rds = JABBA.out.jabba_rds | ||
jabba_gg = JABBA.out.jabba_gg | ||
jabba_vcf = JABBA.out.jabba_vcf | ||
jabba_raw_rds = JABBA.out.jabba_raw_rds | ||
opti = JABBA.out.opti | ||
jabba_seg = JABBA.out.jabba_seg | ||
karyograph = JABBA.out.karyograph | ||
|
||
versions = JABBA.out.versions | ||
|
||
emit: | ||
jabba_rds | ||
jabba_gg | ||
jabba_vcf | ||
jabba_raw_rds | ||
opti | ||
jabba_seg | ||
karyograph | ||
|
||
versions | ||
} | ||
|
Oops, something went wrong.