Skip to content

Commit

Permalink
Run lastal
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-plessy committed Apr 19, 2024
1 parent 6f2ee0b commit ecb5bb4
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions workflows/pairalign.nf
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
*/

include { ASSEMBLYSCAN } from '../modules/nf-core/assemblyscan/main'
include { LAST_LASTDB } from '../modules/nf-core/last/lastdb/main'
include { LAST_TRAIN } from '../modules/nf-core/last/train/main'
include { LAST_LASTAL } from '../modules/nf-core/last/lastal/main'
include { LAST_LASTDB } from '../modules/nf-core/last/lastdb/main'
include { LAST_TRAIN } from '../modules/nf-core/last/train/main'
include { MULTIQC } from '../modules/nf-core/multiqc/main'
include { paramsSummaryMap } from 'plugin/nf-validation'
include { paramsSummaryMultiqc } from '../subworkflows/nf-core/utils_nfcore_pipeline'
Expand Down Expand Up @@ -50,7 +51,15 @@ workflow PAIRALIGN {
//
LAST_TRAIN (
ch_samplesheet,
LAST_LASTDB.out.index
LAST_LASTDB.out.index.map { row -> row[1] } // Remove metadata map
)

//
// MODULE: lastal
//
LAST_LASTAL (
ch_samplesheet.join(LAST_TRAIN.out.param_file),
LAST_LASTDB.out.index.map { row -> row[1] } // Remove metadata map
)

// Collate and save software versions
Expand Down

0 comments on commit ecb5bb4

Please sign in to comment.