mirror of
https://github.com/MillironX/taxprofiler.git
synced 2024-11-10 23:23:09 +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]
|
||||
ch_input_for_profiling = reads
|
||||
.combine(databases)
|
||||
.dump(tag: "combined_withdbs")
|
||||
.branch {
|
||||
malt: it[2]['tool'] == 'malt'
|
||||
kraken2: it[2]['tool'] == 'kraken2'
|
||||
|
|
|
@ -167,7 +167,7 @@ workflow TAXPROFILER {
|
|||
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 )
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue