Skip to content

Commit

Permalink
Collect more software version numbers.
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-plessy committed Jul 16, 2024
1 parent 36825d7 commit a2e223a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions subworkflows/local/pairalign_m2m/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ workflow PAIRALIGN_M2M {
m2o = LAST_SPLIT_M2O.out.maf
o2m = LAST_SPLIT_O2M.out.maf
o2o = LAST_SPLIT_O2O.out.maf
versions = LAST_LASTDB.out.versions
}

/*
Expand Down
1 change: 1 addition & 0 deletions subworkflows/local/pairalign_m2o/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ workflow PAIRALIGN_M2O {
.mix(LAST_SPLIT_O2O.out.multiqc.collect{ it[1]} )
m2o = LAST_LASTAL_M2O.out.maf
o2o = LAST_SPLIT_O2O.out.maf
versions = LAST_LASTDB.out.versions
}

/*
Expand Down
7 changes: 6 additions & 1 deletion workflows/pairgenomealign.nf
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ workflow PAIRGENOMEALIGN {
ASSEMBLYSCAN (
ch_samplesheet
)
ch_versions = ch_versions.mix(ASSEMBLYSCAN.out.versions.first())

// Prefix query ids with target genome name before producing alignment files
ch_samplesheet = ch_samplesheet
Expand Down Expand Up @@ -88,6 +87,12 @@ workflow PAIRGENOMEALIGN {

// Collate and save software versions
//

ch_versions = ch_versions
.mix(SEQTK_CUTN_TARGET.out.versions)
.mix( ASSEMBLYSCAN.out.versions)
.mix( pairalign_out.versions)

softwareVersionsToYAML(ch_versions)
.collectFile(
storeDir: "${params.outdir}/pipeline_info",
Expand Down

0 comments on commit a2e223a

Please sign in to comment.