Skip to content

Releases: fulcrumgenomics/nf-versions

0.4.0

Choose a tag to compare

@clintval clintval released this 06 Jul 20:55
e19b989

What's Changed

Full Changelog: 0.3.1...0.4.0

0.3.1

Choose a tag to compare

@clintval clintval released this 30 Jun 23:43
ed2e090

What's Changed

  • Stop interpreter version helpers from failing on missing packages by @clintval in #6

Full Changelog: 0.3.0...0.3.1

0.3.0

Choose a tag to compare

@clintval clintval released this 30 Jun 21:59
68a784a

What's Changed

Full Changelog: 0.2.0...0.3.0

0.2.0

Choose a tag to compare

@clintval clintval released this 11 May 23:10
6a20d1d

What's Changed

  • Deduplicate code that should just be in 1 spot by @clintval in #2
  • Update fulcrum genomics logo with light/dark theme support by @nh13 in #3

New Contributors

  • @nh13 made their first contribution in #3

Full Changelog: 0.1.0...0.2.0

0.1.0

Choose a tag to compare

@clintval clintval released this 17 Mar 21:29
73ffc85

With this in your config:

plugins { id 'nf-versions' }

Do stuff like:

include { bwaMem2Version; samtoolsVersion } from 'plugin/nf-versions'

process ALIGN {
    output:
    eval({ bwaMem2Version() }), topic: "versions"
    eval({ samtoolsVersion() }), topic: "versions"

    script:
    """
    bwa-mem2 mem ... | samtools sort ...
    """
}

And:

include { MULTIQC } from './modules/multiqc'
include { collateVersions } from 'plugin/nf-versions'

workflow {
    // ... pipeline logic ... //

    def qc = channel.empty()
    qc = qc.mix(channel.topic("for_multiqc"))
    qc = qc.mix(collateVersions(channel.topic("versions")))

    MULTIQC(qc.collect())
}