File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ workflow PAIRALIGN_M2M {
6565 ch_queries_with_params,
6666 ALIGNMENT_LASTDB . out. index. map { row -> row[1 ] } // Remove metadata map
6767 )
68- ch_versions = ch_versions. mix(ALIGNMENT_LASTAL_M2M . out. versions. first() )
68+ ch_versions = ch_versions. mix(ALIGNMENT_LASTAL_M2M . out. versions)
6969
7070 // Optionally plot the many-to-many alignment
7171 //
@@ -76,7 +76,7 @@ workflow PAIRALIGN_M2M {
7676 ' png' ,
7777 []
7878 )
79- ch_versions = ch_versions. mix(ALIGNMENT_DOTPLOT_M2M . out. versions. first() )
79+ ch_versions = ch_versions. mix(ALIGNMENT_DOTPLOT_M2M . out. versions)
8080 if ( params. dotplot_filter ) {
8181 ALIGNMENT_DOTPLOT_M2M_FLT (
8282 ALIGNMENT_LASTAL_M2M . out. maf. join(ch_queries_bed),
@@ -92,7 +92,7 @@ workflow PAIRALIGN_M2M {
9292 ALIGNMENT_SPLIT_O2M (
9393 ALIGNMENT_LASTAL_M2M . out. maf
9494 )
95- ch_versions = ch_versions. mix(ALIGNMENT_SPLIT_O2M . out. versions. first() )
95+ ch_versions = ch_versions. mix(ALIGNMENT_SPLIT_O2M . out. versions)
9696 if (! (params. skip_dotplot_o2m) ) {
9797 ALIGNMENT_DOTPLOT_O2M (
9898 ALIGNMENT_SPLIT_O2M . out. maf. join(ch_queries_bed),
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ workflow PAIRALIGN_M2O {
3636 ALIGNMENT_LASTDB (
3737 ch_target
3838 )
39- ch_versions = ch_versions. mix(ALIGNMENT_LASTDB . out. versions. first() )
39+ ch_versions = ch_versions. mix(ALIGNMENT_LASTDB . out. versions)
4040
4141 // Train alignment parameters if not provided
4242 //
You can’t perform that action at this time.
0 commit comments