Skip to content

Commit ce9af28

Browse files
Merge pull request #40 from matrulda/thy_name_is_seqreports
Print version and add seqreports as pipeline name
2 parents 37dcb97 + ed422b1 commit ce9af28

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SNP&Seq summary report pipeline
1+
# seqreports: SNP&Seq Run folder QC pipeline
22
This is a Nextflow pipeline for generating sequencing reports for the SNP&Seq Technology platform, NGI Uppsala, SciLifelab Genomics.
33

44
## Pre-requisites

main.nf

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
nextflow.preview.dsl=2
44
/* ####################################################
55
6-
SNP & SEQ Run folder QC pipeline
6+
seqreports: SNP & SEQ Run folder QC pipeline
77
88
#################################################### */
99

@@ -23,7 +23,7 @@ def helpMessage() {
2323

2424
log.info """
2525
26-
SNP & SEQ Run folder QC pipeline.
26+
seqreports: SNP & SEQ Run folder QC pipeline.
2727
2828
This workflow runs the following tools on a run folder:
2929
* InterOp summary (http://illumina.github.io/interop/example_summary.html)
@@ -61,6 +61,14 @@ def helpMessage() {
6161
"""
6262
}
6363

64+
def printVersion() {
65+
66+
log.info "seqreports v${workflow.manifest.version}"
67+
68+
}
69+
70+
printVersion()
71+
6472
if (params.help || !params.run_folder){
6573
helpMessage()
6674
exit 0

0 commit comments

Comments
 (0)