mirror of
https://github.com/MillironX/taxprofiler.git
synced 2024-11-10 22:53:08 +00:00
Fix input to profiling
This commit is contained in:
parent
9f221f84cc
commit
2ef21c6ef3
2 changed files with 1 additions and 2 deletions
|
@ -23,7 +23,6 @@ workflow PROFILING {
|
||||||
// e.g. output [DUMP: reads_plus_db] [['id':'2612', 'run_accession':'combined', 'instrument_platform':'ILLUMINA', 'single_end':1], <reads_path>/2612.merged.fastq.gz, ['tool':'malt', 'db_name':'mal95', 'db_params':'"-id 90"'], <db_path>/malt90]
|
// e.g. output [DUMP: reads_plus_db] [['id':'2612', 'run_accession':'combined', 'instrument_platform':'ILLUMINA', 'single_end':1], <reads_path>/2612.merged.fastq.gz, ['tool':'malt', 'db_name':'mal95', 'db_params':'"-id 90"'], <db_path>/malt90]
|
||||||
ch_input_for_profiling = reads
|
ch_input_for_profiling = reads
|
||||||
.combine(databases)
|
.combine(databases)
|
||||||
.dump(tag: "combined_withdbs")
|
|
||||||
.branch {
|
.branch {
|
||||||
malt: it[2]['tool'] == 'malt'
|
malt: it[2]['tool'] == 'malt'
|
||||||
kraken2: it[2]['tool'] == 'kraken2'
|
kraken2: it[2]['tool'] == 'kraken2'
|
||||||
|
|
|
@ -167,7 +167,7 @@ workflow TAXPROFILER {
|
||||||
SUBWORKFLOW: PROFILING
|
SUBWORKFLOW: PROFILING
|
||||||
*/
|
*/
|
||||||
|
|
||||||
PROFILING ( ch_reads_runmerged, ch_longreads_preprocessed, DB_CHECK.out.dbs )
|
PROFILING ( ch_reads_runmerged, DB_CHECK.out.dbs )
|
||||||
ch_versions = ch_versions.mix( PROFILING.out.versions )
|
ch_versions = ch_versions.mix( PROFILING.out.versions )
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue