Skip to content

Commit

Permalink
Merge pull request #40 from matrulda/thy_name_is_seqreports
Browse files Browse the repository at this point in the history
Print version and add seqreports as pipeline name
  • Loading branch information
johandahlberg authored Aug 20, 2020
2 parents 37dcb97 + ed422b1 commit ce9af28
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SNP&Seq summary report pipeline
# seqreports: SNP&Seq Run folder QC pipeline
This is a Nextflow pipeline for generating sequencing reports for the SNP&Seq Technology platform, NGI Uppsala, SciLifelab Genomics.

## Pre-requisites
Expand Down
12 changes: 10 additions & 2 deletions main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
nextflow.preview.dsl=2
/* ####################################################
SNP & SEQ Run folder QC pipeline
seqreports: SNP & SEQ Run folder QC pipeline
#################################################### */

Expand All @@ -23,7 +23,7 @@ def helpMessage() {

log.info """
SNP & SEQ Run folder QC pipeline.
seqreports: SNP & SEQ Run folder QC pipeline.
This workflow runs the following tools on a run folder:
* InterOp summary (http://illumina.github.io/interop/example_summary.html)
Expand Down Expand Up @@ -61,6 +61,14 @@ def helpMessage() {
"""
}

def printVersion() {

log.info "seqreports v${workflow.manifest.version}"

}

printVersion()

if (params.help || !params.run_folder){
helpMessage()
exit 0
Expand Down

0 comments on commit ce9af28

Please sign in to comment.