1
0
Fork 0
mirror of https://github.com/MillironX/taxprofiler.git synced 2024-09-21 06:22:04 +00:00

Fix input to profiling

This commit is contained in:
James Fellows Yates 2022-04-12 10:14:05 +02:00
parent 9f221f84cc
commit 2ef21c6ef3
2 changed files with 1 additions and 2 deletions

View file

@ -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'

View file

@ -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 )
/*